Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Keyboard only hotkey for Alt+Mouse-Wheel?

Explorer ,
Feb 01, 2023 Feb 01, 2023

Hi there,

I'm using a XP Pen graphics tablet and it's got two scroll wheels.

Unfortunately, the driver just accepts keyboard combinations as individually configured actions. So I'm stuck with a dumb zoom to the middle of the screen (or I have to use the precious two buttons on the pen itself, these can be configured to do Alt+Mouse-Wheel).

It'd be way better to configure this wheel for zooming to the pointer.

 

So my question is: Is there a keyboard only replacement for Alt+Mouse-Wheel?

 

Thanks and enjoy your day!

TOPICS
Draw and design , Feature request , Type
695
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Adobe Employee , Feb 01, 2023 Feb 01, 2023

Hello @korbinian.g,

 

Thanks for reaching out. You may try using a third-party application to achieve this.

You may try AutoHotkey with this script, for instance: Using Keyboard Numpad as a Mouse.
It uses the Numeric Pad to emulate a mouse. When on, NumPad+ and Numpad- emulates the mouse wheel.

Feel free to reach out if you have more questions or need assistance. We'd be happy to help.

 

Thanks,

Anubhav

Translate
Adobe
Adobe Employee ,
Feb 01, 2023 Feb 01, 2023

Hello @korbinian.g,

 

Thanks for reaching out. You may try using a third-party application to achieve this.

You may try AutoHotkey with this script, for instance: Using Keyboard Numpad as a Mouse.
It uses the Numeric Pad to emulate a mouse. When on, NumPad+ and Numpad- emulates the mouse wheel.

Feel free to reach out if you have more questions or need assistance. We'd be happy to help.

 

Thanks,

Anubhav

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Feb 02, 2023 Feb 02, 2023
LATEST

Thanks for the suggestion. This worked, although I considered the example script an overkill and simplified it down to

#Requires AutoHotkey v2.0

NumpadSub::
{
    Send "{Alt down}"
    Send "{WheelDown}"
    Send "{Alt up}"
}
NumpadAdd::
{
    Send "{Alt down}"
    Send "{WheelUp}"
    Send "{Alt up}"
}
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines