是否可以通过Applescript访问Spotify Mac应用程序中当前播放的歌曲的歌曲名称?我希望能够将当前正在播放的歌曲的名称复制到剪贴板。
如果无法通过Applescript进行操作,我还能怎么做?
答案 0 :(得分:0)
tell application "Spotify"
set nowplaying to the current track's name
end tell
set the clipboard to nowplaying
尽管set the clipboard
是一个 Standard Additions 命令,但通常情况下,一个命令应该能够将以上内容合并为一行:
tell app "Spotify" to set the clipboard to the current track's name
但是这似乎不适用于我的系统。但是,将剪贴板命令放在 Spotify tell
块之外会很好。