I want to unselect the current selection in iTunes using Applescript. Is that possible?
This is what I do
Currently I do this buy sending a key combo to iTunes. The problem is that when I have several tracks selected the info window iTunes opens are for all selected tracks.
tell application "iTunes"
set sel to (get selection)
# ... do something with sel ...
reveal (get item 1 of sel)
end tell