Skip to content

Instantly share code, notes, and snippets.

@olivierlefloch
Created March 17, 2016 04:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save olivierlefloch/f1ec4f8326a4d0014db5 to your computer and use it in GitHub Desktop.
Save olivierlefloch/f1ec4f8326a4d0014db5 to your computer and use it in GitHub Desktop.
AppleScript to disable all tracks in iTunes playlist "Foobar"
tell application "iTunes"
repeat with the_track in every track of playlist ("Foobar")
tell the_track
set enabled to false
end tell
end repeat
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment