【已解决】如何让 HotKeySet 不吃掉按键?
本帖最后由 ac5474012 于 2013-3-29 15:15 编辑因为我希望按了insert键就等于按了insert键后马上按空格键。但是它貌似会循环。HotKeySet("{insert}", "kong")
While 1
Sleep(100)
WEnd
Func kong()
Sleep(100)
Send("{insert}")
Sleep(100)
Send("{SPACE}")
EndFunc杂草☠(458926486)15:13:00
HotKeySet("{Esc}", "captureEsc")
Func captureEsc()
HotKeySet("{Esc}")
Send("{Esc}")
HotKeySet("{Esc}", "captureEsc")
EndFunc
页:
[1]