【发布时间】:2017-12-05 03:36:29
【问题描述】:
具体我想按住control键,然后按m键,放开m但按住control,然后再按m,就会触发这个功能。更一般地说,我想知道告诉 autohotkey 多次读取同一个键的语法
我该怎么做?
我可以像这样用一个 m 做到这一点
^m::
Send, The text i want to send
Return
到目前为止我已经尝试过
^m m::
Send, The text i want to send
Return
^m&m::
Send, The text i want to send
Return
^mm::
Send, The text i want to send
Return
都是违法的
【问题讨论】:
标签: automation autohotkey