hotkeyset新发现
Dim $i=1,$j=2,$l=3HotKeySet($i, "captureEsc")
HotKeySet($j, "captureEsc1")
HotKeySet($l, "captureEsc2")
While 1
Sleep(100)
WEnd
Func captureEsc()
HotKeySet($i)
Send("7")
HotKeySet($i, "captureEsc")
EndFunc
Func captureEsc1()
HotKeySet($j)
Send("4")
HotKeySet($j, "captureEsc1")
EndFunc
Func captureEsc2()
HotKeySet($l)
Send("1")
HotKeySet($l, "captureEsc2")
EndFunc
为什么按1和2的时候都好好的,当按到3的时候就又变到1了呢??
页:
[1]