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


Click here to return to the 'Use an AppleScript to update all Album Artists in iTunes' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Use an AppleScript to update all Album Artists in iTunes
Authored by: tkrombac on Oct 06, '07 10:31:38AM
OK, I found out how to change this. If you only want to update a subselection of your library, change the following line of code (line 4):

set myLibrary to library playlist

to this

set myLibrary to playlist "UpdateArtist"

Now you can create a playlist "UpdateArtist" and drop the songs you want to update into it. Beware however, I did not implement an error message in case the playlist does not exist (tried, but I'm too much of a beginner here), so you might get a nasty Applescript error...

The script works very nicely for me.

[ Reply to This | # ]