使用AppleScript在iTunes DJ中获取下十首歌曲

时间:2010-04-09 16:21:53

标签: applescript itunes

我正在使用AppleScript创建一个应用程序,我想显示iTunes将从iTunes DJ播放的下十首(包括当前)歌曲列表。我无法在互联网,谷歌的任何地方找到它,无论我在这里问什么。谁能帮我?感谢

1 个答案:

答案 0 :(得分:1)

以下AppleScript将返回iTunes DJ播放列表中歌曲的名称:

tell application "iTunes"
    get name of every track of playlist "iTunes DJ"
end tell

歌曲名称以播放顺序返回,并且还包括最近播放的歌曲(可以在iTunes DJ设置中配置)。