Mac 用に、キーボード ショートカットに基づいてトラックをスキップまたは戻るように Spotify に指示する AppleScript を作成しています。コードは正しいと思いますが、スクリプトを正しく動作させることができず、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