up vote 2 down vote favorite
share [g+] share [fb]

Can I use AutoHotKey to bind CapsLock+n to down arrow? If so, how do I do it?

I have managed to bind just caps lock to down arrow without problems, but I want to bind the combination of caps lock and the n-key to down arrow, so that I can bind various combinations of caps lock and some key to some action. I cannot simply rebind caps lock to alt/shift/ctrl and then bind for example ctrl+n, since that would create conflicts with other existing short cut commands.

Thanks /Erik

link|improve this question
feedback

1 Answer

up vote 3 down vote accepted

Like this?

CapsLock & n::send {down}
link|improve this answer
Excellent! Thanks! – Erik Öjebo Mar 7 '10 at 19:57
You're more than welcome :) – John T Mar 7 '10 at 19:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.