軟解滑鼠連按問題~免換微動開關 - 滑鼠

Table of Contents

不管換了多好的微動
久了還是會有連按的問題
只是時間長短而已
在網路上找到軟解
使用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



--

All Comments

Agnes avatarAgnes2017-11-06
用這個玩FPS應該會幹譙
John avatarJohn2017-11-11
這個用了拖曳、選字都會失效 不過可以暫時擋一下
等微動開關到貨的時間