我正在为我的 Mac 创建一个 AppleScript,它会告诉 Spotify 根据键盘快捷键跳过或返回曲目。我相信我的代码是正确的,但无法让脚本正常工作,并认为这可能是由于 if-then 语句的定位。
关于我可以做些什么来完成这项工作的任何提示?
tell application "Spotify"
activate
if keystroke "e" using {command down, option down, control down} then
tell application "Spotify"
next track
end if
end tell
if keystroke "r" using {command down, option down, control down} then
tell application "Spotify"
previous track
end if
end tell