Windows – Shorter jumps with Page Up/Down

keyboardwindows 7

Is there a way/third party app that can make Page Up/Down jump just a few lines? This could be activated by holding down Ctrl or some other key.

I always think Page Up/Down scrolls to much, and holding down the arrow keys takes to long.

I'm using Windows 7.

Thanks!

Best Answer

I solved my problem by installing the free, excellent and well documented AutoHotKey.

By pressing Ctrl+Alt and Page Up/Down, the cursor moves 15 lines up/down. Script provided below.

^!PgUp::Send {Up 15}
^!PgDn::Send {Down 15}