如何设置AutoHotkey,以便当我依次按分号和Esc ;esc
时,它会执行其他操作?
:?*:;Esc::
msgbox, hello world
;; do something
;; Send, {BACKSPACE} ;; remove the ; at last
return
答案 0 :(得分:1)
我不是AHK的超级专家,但我认为您可能无法使用热字符串,而是使用常规热键。另外,我认为您需要将注释标记更改为其他非分号的内容。这是我的尝试:
#CommentFlag //
~;::
KeyWait , Esc , DT2
If !ErrorLevel
{
Send , {backspace}
msgbox
}
Return