tell application "iTunes" set firstTrack to item 1 of selection -- get all tracks of the album selected set theInfoList to the {track count, artist, album} of firstTrack set potentialTracks to (every track of library playlist 1 whose track count is item 1 of theInfoList and artist is item 2 of theInfoList and album is item 3 of theInfoList) if (count of artworks of firstTrack) < 1 then set goDialog to (display dialog ("No Album artwork copied to the clipboard! Do want to delete the art work of " & (count of potentialTracks) & " tracks found anyway?") buttons {"OK", "Cancel"} with icon 0) else -- copy artwork to clipboard set theArt to data of artwork 1 of firstTrack set the clipboard to theArt set goDialog to (display dialog ("Do want to delete the art work of " & (count of potentialTracks) & " tracks found?") buttons {"OK", "Cancel"} with icon 1 default button 1) if button returned of goDialog = "OK" then -- remove artwork repeat with x in potentialTracks delete artwork 1 of x end repeat end if end if end tell