It would be up to you to write such a script, but yes ActiveWinamp supports hot keys to invoke scripts.
Not currently. ActiveWinamp is an interface to Winamp, not to the ID3 information in Mp3s. With in_mp3.dll removed, Winamp doesn’t even know anything about Mp3s. Theres no reason that ActiveWinamp should have independant support for ID3 saving, it goes against component based development.
Awaiting Answer.
* I found in the winamp forum the nice script (you right , its easier than a plugin) for deleting a file while playing with a global shortcut. However , i would like the file to be moved to the recycler bin instead. What line of the script needs a change ?
script I used : —playlist_Physically remove and skip.vbs— oldpos = playlist.position Skip if oldpos <> playlist.position Then set fso = CreateObject(”Scripting.FileSystemObject”) fso.DeleteFile playlist(oldpos).filename playlist.deleteindex oldpos end if quit
Thanks for the great tool.
I found an example on the winamp forums, the code below seems to work.
Array trackArray = (Array)winamp.MediaLibrary.RunQueryArray(”type=0”);
foreach (object obj in trackArray) { MediaItem item = obj as MediaItem; string album= item.Album; //... read stuff from item into my table }