Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'One solution for an iTunes 7.3 customized sort field issue' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
One solution for an iTunes 7.3 customized sort field issue
Authored by: Tom_H on Jul 16, '07 04:18:19AM
I had to do something similar recently when iTunes forgot a bunch of tags. Wish I'd seen some of these comments back then - my solution was a bit of GUI scripting with applescript.

tell application "System Events"
    tell process "iTunes"
        set frontmost to true
            keystroke "i" using {command down}
            repeat 10000 times
                keystroke "n" using {command down}
            end repeat
    end tell
end tell


[ Reply to This | # ]