 |
AutoHotkey Community Let's help each other out
|
| View previous topic :: View next topic |
| Author |
Message |
Stones Guest
|
Posted: Wed May 21, 2008 6:48 pm Post subject: Help with a hotkey |
|
|
| How can I make it so everytime I scroll up, it would press a letter key one time such as for example if I scroll up constantly it's the same as repeateadly pressing w,w,w,w,w,w,w,w,w etc.... |
|
| Back to top |
|
 |
Extreminador
Joined: 05 May 2008 Posts: 22
|
Posted: Wed May 21, 2008 7:07 pm Post subject: |
|
|
| Code: |
;Execute the label WheelUp_Button when you mouse Wheel Up
Hotkey, WheelUp, WheelUp_Button, On
return
WheelUp_Button:
;This simulate a keystroke send. In this case the w key
Send, w
return
|
|
|
| Back to top |
|
 |
|
|
You can post new topics in this forum You can reply to topics in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group
|