| View previous topic :: View next topic |
| Author |
Message |
chicaman
Joined: 17 Aug 2006 Posts: 1
|
Posted: Thu Aug 17, 2006 2:23 am Post subject: Mouse Key Mapping |
|
|
Apparently, i have a mouse which has FOWARD and BACKWARD key. I wanted to change the BACKWARD and FOWARD key on mouse for other features such as Mapping the FOWARD key for '3'
The '3' above 'w' and 'e'. So how to do that?? I cant find a way to make it... Please help me... |
|
| Back to top |
|
 |
Hotfoot
Joined: 14 Sep 2005 Posts: 21
|
Posted: Thu Aug 17, 2006 6:01 am Post subject: |
|
|
Your 'backward' and 'forward' keys are called XButton1 and XButton2 in AHK. So you should be able to map it as such:
XButton2::3
or add multiple commands
XButton2::
send,3
sleep, 100
soundbeep, 80, 5
return |
|
| Back to top |
|
 |
|