Created
July 18, 2019 03:49
-
-
Save briandfoy/e2c32b88962a1784de7a34527465136f to your computer and use it in GitHub Desktop.
Zero out iTunes album rating
This file contains hidden or 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" | |
if selection is not {} then | |
set mySelection to selection | |
repeat with aTrack in mySelection | |
set album rating of aTrack to 0 | |
end repeat | |
end if | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment