views:

108

answers:

1

Is it correct that the reveal applescript command is broken with iTunes 9?

Works:

tell application "iTunes"
 play (track "Los")
end tell

Doesn't work:

tell application "iTunes"
 reveal (track "Los")
end tell

But the following does work:

tell application "iTunes"
 reveal (playlist "Music Videos")
end tell

Can anyone reproduce this behavior? Any workarounds?

A: 

check ou this tut from Doug's applescripts for itunes

mcgrailm