Hello,
I have to use the right alt key plus a character for a command. My left alt/ctrl/shift are used so I cant use Send("!r") without the ALT key getting stuck in the down position. Where it messes up is:
Send("{RALT DOWN}")
Sleep(100)
Send("r")
Sleep(100)
Send("{RALT UP}")
It seems others a...