Advertisement
duck

AutoHotKey invert win scroll direction - OSX natural scroll

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