Last active
January 9, 2023 00:01
-
-
Save billglover/904057b8c8661919d63d to your computer and use it in GitHub Desktop.
Reverse the scroll wheel script for #AutoHotKey
This file contains hidden or 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
#SingleInstance, force | |
#NoEnv | |
SendMode Input | |
SetWorkingDir %A_ScriptDir% | |
#MaxHotkeysPerInterval 350 | |
WheelUp:: | |
Send {WheelDown} | |
Return | |
WheelDown:: | |
Send {WheelUp} | |
Return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment