Skip to content

Instantly share code, notes, and snippets.

@jeremiahredekop
Created April 16, 2014 15:29
Show Gist options
  • Select an option

  • Save jeremiahredekop/10894222 to your computer and use it in GitHub Desktop.

Select an option

Save jeremiahredekop/10894222 to your computer and use it in GitHub Desktop.

Revisions

  1. jeremiahredekop created this gist Apr 16, 2014.
    15 changes: 15 additions & 0 deletions NaturalScrolling.ahk
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,15 @@
    ; 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