My mouse is a little old and started annoying me with double click when I just press one click, then I coded this snippet to block clicks that happens to fast, which works:
lastClick := A_TickCount
LButton::
ElapsedTime := A_TickCount - lastClick
If ElapsedTime > 50
send {LButton}
Else
lastClick := A_TickCount
Return
However, now I am unable to drag anything with my mouse.
I'm out of ideas to handle it, I appreciate any ideas. Thanks for your time.