Here is the working code:
on run {input, parameters}
idle
return input
end run
on idle
set x to isAppLoaded("VLC")
if x then tell application "VLC" to play --valid parameters: play, next, previous
end
if set x to isAppLoaded("iTunes")
if x then tell application "iTunes" to playpause --valid parameters: playpause, next, previous
end if
end idle
on isAppLoaded(app_name)
tell application "System Events"
set app_list to every application process whose name is app_name
if the (count of app_list) > 0
then set x to true
else set x to false
end if
end tell
return x
end isAppLoaded
Save the 3 script (play-pause, next, previous) as application, and assign it to the mouse buttons with USB Overdrive.
Have fun!
miqlas



Sign In
Create Account









