Last active
October 13, 2024 05:04
-
-
Save liuyigh/f20ba8686938dc6e49a7ae4e22f24ea7 to your computer and use it in GitHub Desktop.
AutoHotKey v2 natural (reverse) mouse scrolling for Windows
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Requires AutoHotkey v2.0 | |
#UseHook 1 ; Enable MouseHook to capture scrolling anywhere in Windows | |
WheelUp:: { | |
SendInput "{WheelDown}" | |
Return | |
} | |
WheelDown::{ | |
SendInput "{WheelUp}" | |
Return | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment