Do You Have Random Left Mouse Button Double Click Issues?

Iron Woode

Elite Member
Super Moderator
Oct 10, 1999
30,889
12,392
136
This has been annoying me for some time and so I went on a hunt to fix this. I stumbled upon a solution that so far has worked like a charm.

I found this website here: http://www.experienceit.pl/download

direct download file link here: http://www.experienceit.pl/files/FixMouseLMB.exe

It works on XP, Vista and probably Win 7. I haven't tested it on 7 yet. I haven't seen any negative side effects yet either.

I thought I would share this discovery.

:awe:
 

BrightCandle

Diamond Member
Mar 15, 2007
4,762
0
76
Bare in mind this double click issue is due to a failure in your mouse. The switch has failed. Its very common on Logitech mice.
 

thewhat

Member
May 9, 2010
186
6
76
You can also use an AutoHotKey script for this.

This is one possible version:
Code:
*LButton::
If (A_PriorHotkey=A_ThisHotkey && A_TimeSincePriorHotkey < 100) ;hyperclick
Return
sendinput {Blind}{LButton down}
KeyWait, LButton
sendinput {Blind}{LButton up}
Return

*MButton::
If (A_PriorHotkey=A_ThisHotkey && A_TimeSincePriorHotkey < 100) ;hyperclick
Return
sendinput {Blind}{MButton down}
KeyWait, MButton
sendinput {Blind}{MButton up}
Return

*RButton::
If (A_PriorHotkey=A_ThisHotkey && A_TimeSincePriorHotkey < 100) ;hyperclick
Return
sendinput {Blind}{RButton down}
KeyWait, RButton
sendinput {Blind}{RButton up}
Return
 

country2

Senior member
May 1, 2001
598
4
81
Thanks my mouse which is at least 7 years old lately has been having issues with left click and new one wont be in till middle of next week. Dl'ed and installed and works great on W8 64.
 

Iron Woode

Elite Member
Super Moderator
Oct 10, 1999
30,889
12,392
136
Bare in mind this double click issue is due to a failure in your mouse. The switch has failed. Its very common on Logitech mice.

I know, but if I can get more years out of it, then I am happy.

Thanks my mouse which is at least 7 years old lately has been having issues with left click and new one wont be in till middle of next week. Dl'ed and installed and works great on W8 64.
:thumbsup: