Skip to content

Instantly share code, notes, and snippets.

@waltman
Created May 5, 2013 01:46
Show Gist options
  • Save waltman/5519381 to your computer and use it in GitHub Desktop.
Save waltman/5519381 to your computer and use it in GitHub Desktop.
This rewinds the current track in iTunes 30 seconds. I usually use it to go back a little bit when I'm listening to podcasts.
on run {input, parameters}
tell application "iTunes"
set player position to (player position - 30)
end tell
return input
end run
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment