Left Mouse Button Fix (2)

There is another solution to the problem described in the previous post, i.e. a mouse click registers as a double-click if though you only click once, using AutoHotKey which is an all-purpose utility that runs scripts to achieve whatever objectives they may be. The following script will disable double click if it is detected within 100ms.

LButton::
If (A_TimeSincePriorHotkey < 100) ;hyperclick
Return
sendinput {LButton down}
KeyWait, LButton
sendinput {LButton up}
Return

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.