Skip to content

Instantly share code, notes, and snippets.

@yogsototh
Created August 12, 2011 11:07
Show Gist options
  • Save yogsototh/1141865 to your computer and use it in GitHub Desktop.
Save yogsototh/1141865 to your computer and use it in GitHub Desktop.
Inverse Wheel movement on windows using HotKeys
; Reverse Scrolling Script by How-To Geek
;
; http://www.autohotkey.com/docs/Tutorial.htm
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
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