我想阅读击键并做相应的事情。当我读取最后按下的键时,默认任务是发送最后一个键:
HotKeySet("{a}", "Terminate")
HotKeySet("{b}", "Terminate")
HotKeySet("{c}", "Terminate")
Func Terminate()
Switch @HotKeyPressed
Case "{a}"
send("{a}")
;other tasks
Case "{b}"
send("{b}")
;other tasks
Case "{c}"
send("{c}")
;other tasks
EndSwitch
EndFunc
While 1
Wend
但isPressed()
无法检测到*其他一些字符;我也想检测这些。我怎样才能做到这一点?