duck

AutoHotKey invert win scroll direction - OSX natural scroll

Sep 20th, 2013
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ; Inverts the windows scrollwheel (or two-finger drag) scroll direction to
  2. ; match OSX's "natural" scroll direction. Useful if switching between Win
  3. ; and OSX using Parallels or Bootcamp
  4.  
  5.  
  6. #MaxHotkeysPerInterval 200
  7. WheelUp::
  8. Send {WheelDown}
  9. Return
  10.  
  11. WheelDown::
  12. Send {WheelUp}
  13. Return
Advertisement
Add Comment
Please, Sign In to add comment