| View previous topic :: View next topic |
| Author |
Message |
DavidNewbie Guest
|
Posted: Sun Feb 27, 2005 12:46 am Post subject: Changing Keys (Newbie) |
|
|
The UP and the RIGHT key from my fathers laptop (Win 95) are not working anymore
My idea was to change the
F11-key to the UP-function
F12-key to the DOWN-function
and
the DOWN key to the RIGHT-function
So
F11::Send, {UP}
F12::Send, {DOWN}
DOWN::Send, {RIGHT}
The problem is that when I hit the F12-key, the cursor goes RIGHT instead of DOWN
How can I fix this?
tnx |
|
| Back to top |
|
 |
Dippy46
Joined: 06 Jul 2004 Posts: 171 Location: Manchester, England.
|
Posted: Sun Feb 27, 2005 2:52 am Post subject: |
|
|
well I think the code contains the answer
you told it to send down but then told it to send right when it sees down
which it did. Just use a different Function key to get the right  _________________ Simple ideas lie within reach, only of complex minds |
|
| Back to top |
|
 |
jonny
Joined: 13 Nov 2004 Posts: 3004 Location: Minnesota
|
Posted: Sun Feb 27, 2005 4:26 am Post subject: |
|
|
No change to the existing code is necessary; simply add this line at the top of your script:
More details on the remapping page. |
|
| Back to top |
|
 |
|