Skip to content

Instantly share code, notes, and snippets.

@billglover
Last active January 9, 2023 00:01
Show Gist options
  • Save billglover/904057b8c8661919d63d to your computer and use it in GitHub Desktop.
Save billglover/904057b8c8661919d63d to your computer and use it in GitHub Desktop.
Reverse the scroll wheel script for #AutoHotKey
#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