具有2个按键绑定的自动热键可停止/重置脚本

时间:2018-11-17 08:55:23

标签: autohotkey

#NoEnv
SendMode Input
~x::
if (GetKeyState("x", "T")) {
Send {RButton down}
sleep 100
Send {lshift down}
Sleep 100
Send {Ctrl down}
sleep 100
Send, {lshift up}
sleep 100
} else {
Sleep, 100
Send, {RButton up}
Send, {Ctrl up}
}
return

使用“ x”启用脚本后,如何制作它, 如果我自己按RButton,则脚本将被禁用,而不必再次按“ x”键绑定将其禁用 基本上,我想添加另一个热键来停止脚本,因此,如果我再次按“ x”,它将从头开始,并且我也不必执行“ else”部分

0 个答案:

没有答案