Created
August 22, 2013 12:05
-
-
Save timvisher/6306351 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tell application "iTunes" | |
repeat 50 times | |
repeat with us in (tracks of playlist "Listen Smart" whose shufflable is false) | |
try | |
set shufflable of us to true | |
end try | |
end repeat | |
repeat with us in (tracks of playlist "Listen Smart" whose bookmarkable is false) | |
try | |
set bookmarkable of us to true | |
end try | |
end repeat | |
end repeat | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment