仅当特定窗口处于活动状态时转换热键

仅当特定窗口处于活动状态时转换热键

我想使用ifWinActive为了 实现这一点:
当我按下Shift+Enter并且 MLO.exe 处于活动状态时,脚本应该将其转换为Alt+ N

#IfWinActive, ahk_exe mlo.exe
shift & enter::Alt & n
Else
shift & enter

执行此操作的正确 AHK 语法是什么?

答案1

请参阅文档热键Shift. 使用、Ctrl和等修饰键时,必须使用、和Alt符号。+^!

#IfWinActive, ahk_exe mlo.exe
    +Enter::!n
#If ; This closes the IfWinActive condition, only needed if more code is after

相关内容