Skip to content

Instantly share code, notes, and snippets.

@danielpunkass
Created April 1, 2014 18:41
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danielpunkass/9920314 to your computer and use it in GitHub Desktop.
Save danielpunkass/9920314 to your computer and use it in GitHub Desktop.
Skip forward by N seconds in iTunes
on SkipSeconds(secondsToSkip)
tell application "iTunes"
set newPosition to player position + secondsToSkip
set player position to newPosition
end tell
end SkipSeconds
SkipSeconds(30.0)
@danielpunkass
Copy link
Author

Use FastScripts to give this script an iTunes-specific, or global keyboard shortcut:

http://www.red-sweater.com/fastscripts/

@bumper314
Copy link

Love me some FastScripts!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment