• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Do You Have Random Left Mouse Button Double Click Issues?

Iron Woode

Elite Member
Super Moderator
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:
 
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.
 
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
 
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.
 
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:
 
Back
Top