I want to have a shortcut, RAlt+a, that simply sends the right angle quote, «. It is #174 in this table http://www.theasciicode.com.ar/ascii-codes-table/ascii-codes-174.html and can be inputted by using Alt+174 when the numlock is on.
I have tried things like
RAlt & a::
Send, {U+0174}
return
and
RAlt & a::
Send, {Asc 0174}
return
but can't get it to work. If there isn't some real easy way, my next plan of action is to determine if Numlock is on, than just input the four keys I need, then turn numlock to it's original state. However, this seems overly complicated.
Thanks in advance.