Skip to content

Instantly share code, notes, and snippets.

@cheeaun
Created August 4, 2009 03:18
Show Gist options
  • Save cheeaun/160999 to your computer and use it in GitHub Desktop.
Save cheeaun/160999 to your computer and use it in GitHub Desktop.
AutoHotkey: Shift + Wheel for horizontal scrolling
; Shift + Wheel for horizontal scrolling
+WheelDown::WheelRight
+WheelUp::WheelLeft
@chankm
Copy link

chankm commented Oct 3, 2024

Hi all,

In case some people are still not able to fix, this seems to work for me.
I am currently using Windows 10, AutoHotkey_2.0.18

#Requires AutoHotkey v2

LShift & WheelDown:: {
    Send("{WheelRight}")
}

LShift & WheelUp:: {
    Send("{WheelLeft}")
}

@raphp-ait
Copy link

Hi all,

In case some people are still not able to fix, this seems to work for me. I am currently using Windows 10, AutoHotkey_2.0.18

#Requires AutoHotkey v2

LShift & WheelDown:: {
    Send("{WheelRight}")
}

LShift & WheelUp:: {
    Send("{WheelLeft}")
}

works like a charm. Thank you

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment