03-24-2017, 08:00 PM
Hello,
I have an issue where my mouse sometimes double clicks instead of single clicks.
I want to disable this double click. Again, this happens very fast so it is easily distinguishable from a normal double click.
Can anyone help me with this macro, as I'm not sure how to start.
I found a similar issue online, but the script is for AHK.
This is the AHK script:
Also please don't suggest that I get my mouse replaced. It's a pretty expensive mouse, warranty is gone and I am not willing to invest that much money when the mouse works almost perfectly.
Thanks for the help!
Antoine
I have an issue where my mouse sometimes double clicks instead of single clicks.
I want to disable this double click. Again, this happens very fast so it is easily distinguishable from a normal double click.
Can anyone help me with this macro, as I'm not sure how to start.
I found a similar issue online, but the script is for AHK.
This is the AHK script:
LButton::
If (A_TimeSincePriorHotkey < 100) ;hyperclick
Return
sendinput {LButton down}
KeyWait, LButton
sendinput {LButton up}
Return
Also please don't suggest that I get my mouse replaced. It's a pretty expensive mouse, warranty is gone and I am not willing to invest that much money when the mouse works almost perfectly.
Thanks for the help!
Antoine