是否可以通过 Applescript 访问 Spotify Mac 应用程序中当前播放歌曲的歌曲名称?我希望能够将当前播放歌曲的名称复制到我的剪贴板。
如果不能通过 Applescript 我怎么能做到这一点?
是否可以通过 Applescript 访问 Spotify Mac 应用程序中当前播放歌曲的歌曲名称?我希望能够将当前播放歌曲的名称复制到我的剪贴板。
如果不能通过 Applescript 我怎么能做到这一点?
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
块之外可以正常工作。