Skip to content

Instantly share code, notes, and snippets.

@nmeans
Created April 28, 2010 16:03
Show Gist options
  • Save nmeans/382318 to your computer and use it in GitHub Desktop.
Save nmeans/382318 to your computer and use it in GitHub Desktop.
if appIsRunning("Pandora") then
tell application "Pandora"
activate
tell application "System Events" to key code 124
end tell
else if appIsRunning("iTunes") then
tell application "iTunes" to next track
end if
on appIsRunning(appName)
tell application "System Events" to (name of processes) contains appName
end appIsRunning
if appIsRunning("Pandora") then
tell application "Pandora"
activate
tell application "System Events" to keystroke " "
end tell
else if appIsRunning("iTunes") then
tell application "iTunes" to playpause
end if
on appIsRunning(appName)
tell application "System Events" to (name of processes) contains appName
end appIsRunning
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment