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

Remove album artwork in iTunes 7 via script Apps
With this script, you can easily remove artwork from all tracks with the same artist and album as the selected track. Album artwork is copied to the clipboard for an easy restore after using the Get Artwork... feature. Just put this script into ~/Library/iTunes/Scripts/.

[robg adds: I haven't tested this one.]
    •    
  • Currently 1.00 / 5
  • 1
  • 2
  • 3
  • 4
  • 5
  (1 vote cast)
 
[10,135 views]  

Remove album artwork in iTunes 7 via script | 2 comments | Create New Account
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 | # ]
Remove album artwork in iTunes 7 via script
Authored by: omo on Oct 03, '06 04:56:32AM
I made a version that removes the artwork of the currently selected tracks as well - with the warning dialog and the copy-to-clipboard-for-restore-feature. Here it is:


set thetarget to button returned of (display dialog "Do you really want to delete the artwork from the selected tracks?" buttons {"OK", "Cancel"} with icon 1)

if thetarget = "OK" then
	try
		tell application "iTunes"
			set thelist to selection
			set firstTrack to item 1 of selection
			-- copy artwork to clipboard
			set theArt to data of artwork 1 of firstTrack
			set the clipboard to theArt
			-- get all tracks of the album selected
			repeat with x in thelist
				delete artwork 1 of x
			end repeat
		end tell
	end try
end if



[ Reply to This | # ]