在某个程序中 Tab 触发动作

在某个程序中 Tab 触发动作

这个脚本有什么问题?

以下是代码以及我尝试实现的功能

TAB::
IfWinActive, MyLfeOrganized
Send ^!{Right}
return

其中 ^! 是同时按下 shift 和 alt 键。

答案1

您可以创建一个上下文相关热键来实现这一点。

#IfWinActive, MyLfeOrganized
TAB::
    Send, ^!{Right}
return
#If

#IfWinActive此热键仅在满足条件时才有效。否则它将TAB不理会您的按键。

相关内容