| View previous topic :: View next topic |
| Author |
Message |
helpme
Joined: 22 Apr 2007 Posts: 33
|
Posted: Tue Jul 17, 2007 5:51 am Post subject: Left-right scrolling |
|
|
Dear AutoHotkey experts,
Can AutoHotkey perform left-right scrolling using short-cut keys?
For example, some horizontal lines in a web-page is very long, so the reader needs to scroll to the right to read till the end. |
|
| Back to top |
|
 |
SKAN
Joined: 26 Dec 2005 Posts: 8688
|
Posted: Tue Jul 17, 2007 6:32 am Post subject: |
|
|
| helpme wrote: | | For example, some horizontal lines in a web-page is very long, so the reader needs to scroll to the right to read till the end. |
You may middle-click and move the mouse to the desired direction...
Anyways, the following enables horizontal scrolling when Alt key is down:
| Code: | !WheelDown::SendInput {Right 5}
!WheelUp::SendInput {Left 5} |
 |
|
| Back to top |
|
 |
|