Skip to content

Instantly share code, notes, and snippets.

@Redth
Created January 28, 2014 14:44
Show Gist options
  • Select an option

  • Save Redth/8668891 to your computer and use it in GitHub Desktop.

Select an option

Save Redth/8668891 to your computer and use it in GitHub Desktop.
on remote_stop()
end remote_stop
on remote_play()
tell application id "com.altusapps.gtunesapp"
playpause
end tell
end remote_play
on remote_previous_item()
tell application id "com.altusapps.gtunesapp"
previous
end tell
end remote_previous_item
on remote_next_item()
tell application id "com.altusapps.gtunesapp"
next
end tell
end remote_next_item
on remote_begin_seek_backward()
end remote_begin_seek_backward
on remote_begin_seek_forward()
end remote_begin_seek_forward
on remote_end_seek()
end remote_end_seek
on remote_pause()
tell application id "com.altusapps.gtunesapp"
playpause
end tell
end remote_pause
on remote_volume_up()
end remote_volume_up
on remote_volume_down()
end remote_volume_down
on remote_mute()
end remote_mute
on remote_shuffle()
end remote_shuffle
on remote_restart_item()
end remote_restart_item
on remote_other()
end remote_other
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment