不管換了多好的微動
久了還是會有連按的問題
只是時間長短而已
在網路上找到軟解
使用Autohotkey這個軟體
目前使用上還不錯
推薦給大家
https://mega.nz/#!9GIETTqJ!eOSW7wZKgXv2hecvKS-Yr3v_DddiHZoQbwyNSUMlbfw
zip內有兩個檔案
.ahk是需要安裝autohotkey才可使用
.exe是不用安裝任何軟體就可用了
看大家需求使用
或是有在用autohotkey的可直接複製下面來使用
============================
;debounce keys
;https://autohotkey.com/board/topic/82509-software-fix-for-double-clicking-mouse/page-2
*LButton::
If (A_PriorHotkey=A_ThisHotkey && A_TimeSincePriorHotkey < 100) ;hyperclick
Return
sendinput {Blind}{LButton down}
KeyWait, LButton
sendinput {Blind}{LButton up}
Return
*RButton::
If (A_PriorHotkey=A_ThisHotkey && A_TimeSincePriorHotkey < 100) ;hyperclick
Return
sendinput {Blind}{RButton down}
KeyWait, RButton
sendinput {Blind}{RButton up}
Return
*MButton::
If (A_PriorHotkey=A_ThisHotkey && A_TimeSincePriorHotkey < 100) ;hyperclick
Return
sendinput {Blind}{MButton down}
KeyWait, MButton
sendinput {Blind}{MButton up}
Return