【发布时间】:2019-10-05 04:02:33
【问题描述】:
我的鼠标有点老了,当我按一下时双击开始让我烦恼,然后我编写了这个 sn-p 来阻止快速发生的点击,这很有效:
lastClick := A_TickCount
LButton::
ElapsedTime := A_TickCount - lastClick
If ElapsedTime > 50
send {LButton}
Else
lastClick := A_TickCount
Return
但是,现在我无法用鼠标拖动任何东西。
我没有处理它的想法,我很感激任何想法。感谢您的宝贵时间。
【问题讨论】:
标签: mouseevent autohotkey