現在の曲の長さを取得するスクリプトを作成しようとしていますが、これを行うと、長さが「欠損値」として返されます。助言がありますか?
tell application "iTunes"
if player state is playing or player state is paused then
set theDuration to (get duration of the current track)
display dialog theDuration
end if
end tell