I've mapped the following keys:
ALT + Z to be equivalent to ALT + F4
ALT + X to be equivalent to ALT + F + C
With the following code:
!z::
Send, !{F4}
!x::
Send, !fc
However, when this code is running and I press ALT + Z , the actual keys that are being sent are:
ALT + F4
and then ALT + F + C
instead of just ALT + F4
What am I doing wrong? How do get the mapping to be correct for ALT+Z?