up vote 2 down vote favorite
share [g+] share [fb]

Some programs (e.g. ms html help viewer) have zoom-in features that only seem to work when you mouse wheel scroll.

Is there a way to emulate mouse wheel scroll using the keyboard?

link|improve this question

63% accept rate
feedback

2 Answers

up vote 2 down vote accepted

It's possible with AutoHotkey.

Try 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.

link|improve this answer
feedback

(Assuming Windows): Check out AutoHotKey, it can remap the Mouse Wheel.

From the docs:

Mouse Wheel Hotkeys [Windows NT/2000/XP or later]

Hotkeys that fire upon turning the mouse wheel are supported via the key names WheelDown and WheelUp. WheelLeft and WheelRight are also supported in v1.0.48+, but have no effect on operating systems older than Windows Vista.

link|improve this answer
1  
this is the other way around: capturing when the real wheel is used on the mouse. – Snark Mar 14 '10 at 21:16
Good point, it was mostly just to show AHK is 'mouse wheel aware'. :) – techie007 Mar 14 '10 at 21:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.