Skip to content

Instantly share code, notes, and snippets.

@jeremiahredekop
Created April 16, 2014 15:29
Show Gist options
  • Save jeremiahredekop/10894222 to your computer and use it in GitHub Desktop.
Save jeremiahredekop/10894222 to your computer and use it in GitHub Desktop.
Natural scrolling auto hotkey script
; Reverse Scrolling Script by How-To Geek
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
#SingleInstance off
#MaxHotkeysPerInterval 1000
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