X

How to reverse scroll in Windows like OS X Lion

Apple introduced reverse scrolling in OS X Lion. If you're a Windows user and would like to try out reverse scrolling on your own PC, you can.

Ed Rhee
Ed Rhee, a freelance writer based in the San Francisco Bay Area, is an IT veteran turned stay-at-home-dad of two girls. He focuses on Android devices and applications while maintaining a review blog at techdadreview.com.
Ed Rhee
Touchpad
Sarah Tew/CNET

Apple reversed scrolling in OS X Lion and called the feature "natural scrolling." Not everyone liked the change, but it could be turned off. There are some people that do like the new scrolling direction and even Google has added reverse scrolling to Chrome OS. If you're a Windows user and would like to try out reverse scrolling, here's how:

Step 1: Install AutoHotkey on your Windows PC.

Step 2: Launch AutoHotkey, and when prompted to create a sample script, click the Yes button.

Create sample AutoHotkey script
Screenshot by Ed Rhee/CNET

Step 3: When the sample script appears in Notepad, paste the following code just below the two sample hotkeys:

WheelUp::
Send {WheelDown}
Return

WheelDown::
Send {WheelUp}
Return

Step 4: Save the script in Notepad (Ctrl+S).

Step 5: Right-click on the AutoHotkey icon from the taskbar and select Reload This Script.

Reload AutoHotkey script
Screenshot by Ed Rhee/CNET

That's it. Now scrolling on your Windows touch pad or mouse will be reversed. To enable the script on reboot, just copy the AutoHotkey shortcut to your Startup folder. If you end up using AutoHotkey for other scripts, just copy the shortcuts to the scripts themselves into the Startup folder. To disable reverse scrolling, edit the code out of the script or uninstall AutoHotkey entirely.

(Via How-To Geek)