[Moderator's note: Topic moved from Bug Reports.]
with same source code, I use some ^ + ! wheelDown/up remapping in several conditions.
in version 2.0.12 2.0.13 2.0.14
work normally at first and after some time, wheelDown/up doesn't work。
it is, wheelDown/up can't scroll down/up the window any more。
but with same source code, 2.0.11 works well so I use this version back.
I can't give more detail except above, couse of no more information in ahk debug/info winodw。
maybe some changes in mouse wheel after 2.0.11?
[v2.0.14 bug] wheelDown/wheelUp not work Topic is solved
Re: [v2.0.14 bug] wheelDown/wheelUp not work
found where the bug is:
after any operation above
wheel up/down not work
Code: Select all
XButton1 & WheelUp::Volume_Up
XButton1 & WheelDown::Volume_Down
xbutton2 & WheelUp::WheelLeft
xbutton2 & WheelDown::WheelRight
wheel up/down not work
Re: [v2.0.14 bug] wheelDown/wheelUp not work Topic is solved
That has never been valid/supported.
Add {Blind} if required.
Use Send, so they will be hotkeys, not remapping.The following keys are not supported by the built-in remapping method:Source: Remapping Keys (Keyboard, Mouse and Controller) | AutoHotkey v2
- The mouse wheel (WheelUp/Down/Left/Right).
Code: Select all
XButton1 & WheelUp::Send "{Volume_Up}"
XButton1 & WheelDown::Send "{Volume_Down}"
xbutton2 & WheelUp::Send "{WheelLeft}"
xbutton2 & WheelDown::Send "{WheelRight}"
Re: [v2.0.14 bug] wheelDown/wheelUp not work
Slight correction: v2.1-alpha.5 and later support remapping to/from the wheel.
Re: [v2.0.14 bug] wheelDown/wheelUp not work
great thanks, problem solved.
I'll try the new version
I'll try the new version
lexikos wrote: ↑13 May 2024, 16:46That has never been valid/supported.Use Send, so they will be hotkeys, not remapping.The following keys are not supported by the built-in remapping method:Source: Remapping Keys (Keyboard, Mouse and Controller) | AutoHotkey v2
- The mouse wheel (WheelUp/Down/Left/Right).
Add {Blind} if required.Code: Select all
XButton1 & WheelUp::Send "{Volume_Up}" XButton1 & WheelDown::Send "{Volume_Down}" xbutton2 & WheelUp::Send "{WheelLeft}" xbutton2 & WheelDown::Send "{WheelRight}"
Who is online
Users browsing this forum: DavidP, FanaticGuru and 106 guests