Page 1 of 1
Fast Forwarding and Fast Rewinding request
Posted: Thu Mar 20, 2008 1:49 pm
by James D
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.
Posted: Sat Mar 29, 2008 8:48 am
by jonkjon
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..