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


Click here to return to the 'Remove album artwork in iTunes 7 via script' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Remove album artwork in iTunes 7 via script
Authored by: hypert on Oct 02, '06 06:25:13PM
If you'd just like to delete the artwork of the currently selected track(s), try this simpler script:

tell application "iTunes"
	activate
	set selectedTracks to the selection
	set trackCount to the (count of selectedTracks)
	repeat with index from 1 to trackCount
		delete artwork 1 of item index of selection
	end repeat	
end tell


[ Reply to This | # ]