I'm trying to figure out what key press duplicates the fast forward / rewind for the Apple Remote. Specifically I'm trying to get it working in Steermouse. Any ideas? Thanks.
Shhhh... let him think we're experts.They're all under the "Controls" menu of iTunes, if that's any help.![]()
Ah... can you trigger an Applescript with that software?It'd have to be something else to work when out of the Front Row interface / iTunes. The Apple Remote Play/Pause button works anywhere and I'm trying to get the same effect with the Logitech Mediaplay + Steermouse. Tried Command-Return/Space, no joy.
Or have you considered taping an Apple remote to the mouse?
I think, if you can execute an Applescript file, something like this should do the trick:Steermouse can run a file, so I suppose it is capable of that. The response will be an issue though if it has to execute an Applescript. I'm praying for a keyboard shortcut.
tell application "System Events"
try
if “Front Row” is frontmost application then
key code 49
else
tell application “iTunes”
playpause
end tell
end if
end try
end tell
As I thought... takes a good few seconds to play/pause (script required a bit of tweaking). If anyone has a suggestions for a universal play/pause shortcut, I'd appreciate it. Many thanks
Just curious: you saved it as an application (not a script), right?As I thought... takes a good few seconds to play/pause (script required a bit of tweaking). If anyone has a suggestions for a universal play/pause shortcut, I'd appreciate it. Many thanks
I have Quicksilver set up to make ctrl-cmd-space play/pause iTunes no matter what app is active.
Just curious: you saved it as an application (not a script), right?
And sorry about the tweaking - I noticed the same when I actually compiled it as opposed to just cutting-and-pasting it from the web.
I hopped to the Mac saying "YAY!" (simple things make me leap in joy)
Unfortunately it doesn't seem to work.
I'm curious to know why it doesn't work. I'm assuming that it works on the keyboard but you can't get it to work with the Logitech Mouse?
Doesn't work on the keyboard.