Hey Scott,
It would be nice to have a fast forwarding and fast reversing on the winamp plug-in. That's it. Short and sweet. LOL.
Fast Forwarding and Fast Rewinding request
If you go into the options/preferences section of Winamp, look for Global Hotkeys. For example, in my Winamp installation, Ctrl + Alt + Right, is used to fast forward. I created a Script Device called WinAmpFF and used the following script:
Dim objShell
Set objShell = CreateObject("WScript.Shell")
objShell.SendKeys "^%{RIGHT}"
Set objShell = Nothing
I then created a property change button to change the WinAmpFF script device's state property to running. I then configured the "enable button press repeating" for that button.
I did the same thing to add a rewind button by creating another script that used "Ctrl + Alt + Left" which is the global hotkeys setting for my Winamp installation.
Hope this helps..
Dim objShell
Set objShell = CreateObject("WScript.Shell")
objShell.SendKeys "^%{RIGHT}"
Set objShell = Nothing
I then created a property change button to change the WinAmpFF script device's state property to running. I then configured the "enable button press repeating" for that button.
I did the same thing to add a rewind button by creating another script that used "Ctrl + Alt + Left" which is the global hotkeys setting for my Winamp installation.
Hope this helps..