AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Changing Keys (Newbie)

 
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Ask for Help
View previous topic :: View next topic  
Author Message
DavidNewbie
Guest





PostPosted: Sun Feb 27, 2005 12:46 am    Post subject: Changing Keys (Newbie) Reply with quote

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.

PostPosted: Sun Feb 27, 2005 2:52 am    Post subject: Reply with quote

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 Smile
_________________
Simple ideas lie within reach, only of complex minds
Back to top
View user's profile Send private message
jonny



Joined: 13 Nov 2004
Posts: 3004
Location: Minnesota

PostPosted: Sun Feb 27, 2005 4:26 am    Post subject: Reply with quote

No change to the existing code is necessary; simply add this line at the top of your script:

Code:
#UseHook


More details on the remapping page.
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Ask for Help All times are GMT
Page 1 of 1

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group