ฉันจะแก้ไขตัวเลื่อนที่ผิดพลาดของเมาส์โดยใช้ AHK ได้อย่างไร เมื่อฉันเลื่อนลงหรือขึ้นบางครั้งมันก็กลับทิศทางตรงกันข้าม ฉันแน่ใจว่ามีวิธีจัดการกับเรื่องนี้ใน AHK แต่ฉันไม่สามารถหาวิธีได้
ฉันจะแก้ไขตัวเลื่อนที่ผิดพลาดของเมาส์โดยใช้ AHK ได้อย่างไร เมื่อฉันเลื่อนลงหรือขึ้นบางครั้งมันก็กลับทิศทางตรงกันข้าม ฉันแน่ใจว่ามีวิธีจัดการกับเรื่องนี้ใน AHK แต่ฉันไม่สามารถหาวิธีได้
คำตอบ:
WheelUp::
WheelDown::
SendInput, {%A_ThisHotkey%} ; remove this line if you don´t want the first tick to be registered
; Impede scrolling in the opposite direction after the second tick:
If (A_PriorHotKey = A_ThisHotKey and A_TimeSincePriorHotkey < DllCall("GetDoubleClickTime"))
SendInput, {%A_ThisHotkey%} ; or
; SendInput, {%A_ThisHotkey% 2} ; if you want to scroll faster
return
แก้ไข:
ลองด้วย:
WheelUp::
If (A_PriorHotKey = WheelDown and A_TimeSincePriorHotkey < 500) ; 500 ms, you can in- or decrease this time.
SendInput, {WheelUp 2}
else
SendInput, {WheelUp}
return
WheelDown::
If (A_PriorHotKey = WheelUp and A_TimeSincePriorHotkey < 500)
SendInput, {WheelDown 2}
else
SendInput, {WheelDown}
return