Help, I cant get rid of itunes pictures.

laurie

Registered
Hello. I have a problem in that I have some pictures allocated to songs that are completely wrong. How do you remove pictures?
 
You can also use an Applescript to remove the artwork for selected song(s). I didn't write this, so kudos to whoever did:

tell application "iTunes"
set fx to «class pFix»
set «class pFix» to true
copy (a reference to (get «class pPly» of front window)) to thisPlaylist
if item 1 of selection exists then -- test if there is a selection...
set using_selection to true
copy (count selection's items) to idx
else -- its the whole playlist
set selectedTracks to (get a reference to thisPlaylist)
set using_selection to false
copy (count thisPlaylist's every «class cTrk») to idx
end if

-- later...

repeat with j from 1 to idx
if using_selection then
copy item j of selection to thisTrack
else
copy «class cTrk» j of selectedTracks to thisTrack
end if

delete every «class cArt» of thisTrack

end repeat
set «class pFix» to fx
end tell
 
Back
Top