0
votes

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

1
Is that for excel unmerge? โ€“ this
Yes, pretty awesome once I figure this out. โ€“ Crismogram
Most office products have built in macros of custom hotkeys. โ€“ this

1 Answers

0
votes

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.