2016-01-16 83 views
0

我試圖返回當前正在播放的iTunes曲目的信息。AppleScript - 獲取當前iTunes曲目的完整信息

我能得到一個信息是這樣的:

tell application "iTunes" 
get name of current track 
end tell 

這將返回Thunderstruck例如。

但它是可能的,我可以得到當前曲目的詳細信息,所以它返回是這樣的:

"AC/DC, Thunderstruck, Iron Man 2" 

這可能嗎?或者我必須創建多個腳本?

感謝

回答

2

要獲得nameartistalbum

tell application "iTunes" 
    get {name, artist, album} of current track 
end tell 

結果是一個列表


得到的一切

tell application "iTunes" 
    get properties of current track 
end tell 

結果是一條記錄

相關問題