Skip to content

Instantly share code, notes, and snippets.

@briandfoy
Created July 18, 2019 03:49
Show Gist options
  • Save briandfoy/e2c32b88962a1784de7a34527465136f to your computer and use it in GitHub Desktop.
Save briandfoy/e2c32b88962a1784de7a34527465136f to your computer and use it in GitHub Desktop.
Zero out iTunes album rating
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