※ 引述《Chemise ()》之铭言:
: 想做到按一下 Left 后AHK自动按住 left
: 按Right 取消按住的left 改按住right
: 按A 取消之前按住的按键改按住A
: 按B 取消之前按住的按键改按住B
: 设一个停止键X 按下后取消之前按住的按键
: 我写到按住后就不知道怎写了,不知道怎取消之前按住的按键
: 请问大神这整个架构该怎么写比较好?
: 感谢
$a::
SendInput, {d up}
SendInput, {a down}
return
$d::
SendInput, {a up}
SendInput, {d down}
return
x::
SendInput, {a up}{d up}
return
用 {x up} 的语法能取消按下的按键
https://www.autohotkey.com/docs/commands/Send.htm#Repeating_or_Holding_Down_a_
Key