2

I tried it like here https://windowsreport.com/reverse-scroll-direction-windows-10

However, hp folio 13 doesn't have HID key and FlipFlopWheel there. Touchpad key is in ACPI. So I added there in Device Parameters FlipFlopWheel DWORD key, set it to 1 and restarted and to 0 also. No luck with both ways. Is there another way to set this simple option?

Hrvoje T
  • 1,959

1 Answers1

5

Your link has a second and better solution by using AutoHotkey, and it even supplies the script to use:

WheelUp::
Send {WheelDown}
Return
WheelDown::
Send {WheelUp}
Return

Or with some improvements:

#NoEnv
SendMode Input
#HotkeyInterval 4000
#MaxHotkeysPerInterval 300

WheelUp::WheelDown
WheelDown::WheelUp

This solution has a much better chance of working than monkeying with the registry and counting on the driver to take notice.

The link contains very explicit directions on setting this up. Further information can be found on the AutoHotkey website, with many tutorials.

harrymc
  • 498,455