I am trying to remap a function key like F4 to do an ALT then press H + M + C. Tried reading the docs but was not successful in getting my answer.
I actually thought this may work but it's not.
F4::!hmc
I am trying to remap a function key like F4 to do an ALT then press H + M + C. Tried reading the docs but was not successful in getting my answer.
I actually thought this may work but it's not.
F4::!hmc
That was probably working, but AutoHotkey runs too fast for most applications to pick up on the macros. It looks like you want to manipulate Word or some sort of ribbon menu. Try this:
SetKeyDelay, 50 ; Increase this to increase the delay
F4::!mhc
You could also try switch our your ! for {Alt} and see if you get any improvements there. Let me know if this works for you.