can it be used to fix a faulty clicking mouse?
First of all, thank you for publishing your tool. In Windows OS I used an Autohotkey script to use a mouse with wornout switches. It's really effective on the mouse, so I can keep using the mouse.
LButton::
If (A_TimeSincePriorHotkey < 100) ;hyperclick
Return
sendinput {LButton down}
KeyWait, LButton
sendinput {LButton up}
Return
What it does is simply to block the mouse click till it receives button event that is longer than 100ms by filtering button-down and button-up events.
Is it possible with this tool?
Edited by Atilla Karaca