0

I can do plain two-key combinations, eg F & G::

but how to do so with modifier keys, say
holding alt-win-F (3 keys pressed) then G (now 4 keys pressed)?

Both !#F & G:: and !#F & !#G fail.

Ksthawma
  • 1,257
  • 1
  • 16
  • 28
  • 1
    Here is similar question: http://stackoverflow.com/questions/2096253/autohotkey-key-sequence-not-just-single-key-hotkey – vasili111 Dec 23 '14 at 18:24

1 Answers1

1

There is actually a physical limitation with some keyboards. Anyway, try something like :

!#F::
Input key, I L1
IfEqual key,g
MsgBox Success!
Return

See the following for more information: http://www.autohotkey.com/board/topic/5408-multiple-letter-hotkeys/

Joe DF
  • 5,438
  • 6
  • 41
  • 63