0

是否可以通过 Applescript 访问 Spotify Mac 应用程序中当前播放歌曲的歌曲名称?我希望能够将当前播放歌曲的名称复制到我的剪贴板。

如果不能通过 Applescript 我怎么能做到这一点?

4

1 回答 1

0
tell application "Spotify"
    set nowplaying to the current track's name
end tell

set the clipboard to nowplaying

即使set the clipboard标准添加命令,通常也应该能够将以上内容组合成一行:

tell app "Spotify" to set the clipboard to the current track's name

但这似乎不适用于我的系统。但是,将剪贴板命令放在Spotify tell块之外可以正常工作。

于 2019-04-23T19:29:17.893 回答