I want to remap "<" key in Autohotkey. But "<" symbol is a modifier symbol. Therefore Autohotkey doesn't remap it like a normal key:

CapsLock & <::Send {`&}

How to escape a modifier symbol in order to remap that key?

link|improve this question

71% accept rate
feedback

1 Answer

By default in AutoHotkey it is the grave accent/backtick character `

You can set it to be any other character in your script, if you prefer. Full details here: http://www.autohotkey.com/docs/commands/_EscapeChar.htm

Edit:

Actually, I think you have something else going on here. < is not a modifier -- at least not in this context. I just tried this and it worked fine for me:

CAPSLOCK & <::Msgbox,it works!
link|improve this answer
Thanks for help. This is very weird. – Mert Nuhoglu Jul 10 '10 at 9:44
feedback

Your Answer

 
or
required, but never shown

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