我正在使用以下脚本,它不会产生错误,但恐怕也不起作用:
if WinActive("ahk_exe wmplayer.exe") or WinActive("ahk_exe Spotify.exe")
{
Left::Send {RCtrl}{Left}
Right::Send {RCtrl}{Right}
}
这个想法是,当 WMP(Windows Media Player)具有焦点时按下箭头键,应该触发全局快捷键(RCtrl + 箭头),这是在 PowerToys 中定义的Prev/Next Track
。全局快捷键有效,但目前还不能通过 Autohotkey 运行...
控制台输出看起来是正确的?
---- M:\Software\Standalone\Apps.ahk
001: if WinActive("ahk_exe wmplayer.exe") || WinActive("ahk_exe Spotify.exe")
006: Exit (14.50)
004: Send,{RCtrl}{Right} (0.03)
004: Return (2.41)