AutoHotKey鼠标绑定

时间:2018-05-25 17:46:30

标签: autohotkey

我希望在单击 X 时激活热键。然后它应该:

  • 点击LMB
  • 暂停5个滴答
  • 点击RMB

然后完成。但由于某种原因,它不适合我。我已经尝试过并查看了其他主题。如果有人能提供帮助就会很棒。

1 个答案:

答案 0 :(得分:0)

5 ticks 是什么意思?如果要将超时设置为5毫秒或秒,则应使用睡眠参数,如下所示:

Sleep 5 ; milliseconds
Sleep 5000 ; 5 seconds (5000 ms)
Sleep % var ; if you need to use a variable instead of number


还有一个名为 A_TickCount

的变量
tick := A_TickCount
while(tick + 5 < A_TickCount) ; 5 ticks
    continue
; I guess this code will execute in 0.1 ms, so try to turn the tick up


在你的情况下:

click
sleep 5000 ; change this if necessary
click right


对我来说很好 详细了解Clickhttps://autohotkey.com/docs/commands/Click.htm