osx - AppleScript - Get complete information of current iTunes track -
i'm trying return information of current itunes track, playing on computer.
i can single informations this:
tell application "itunes" name of current track end tell
this returns thunderstruck
example.
but possible can more information of current track returns this:
"ac/dc, thunderstruck, iron man 2"
is possible? or have create multiple scripts?
thanks
to name
, artist
, album
tell application "itunes" {name, artist, album} of current track end tell
the result list
to everything
tell application "itunes" properties of current track end tell
the result record
Comments
Post a Comment