Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
那是为了游戏。我想当我快速按下一个键 2 次时,A例如,模拟CTRL+ A。我希望能够以毫秒为单位设置按键间隔的时间。
请问我该怎么做?
a::DoubleTap("^a",250) DoubleTap(key,TimeVar=300) { If (A_ThisHotkey==A_PriorHotkey && A_TimeSincePriorHotkey < TimeVar) Send %key% else Send {%A_ThisHotkey%} return }