Ok my code has the following which works:
^m::Send M text{enter}
Return
^s::Send S text{enter}
Return
^t::Send T text{enter}
Return
Now I want to be able to add something like the following (this way it doesn't work):
^m & ^t:: Send M and T text{enter}
Return
^m & ^s:: Send M and S text{enter}
Return
^t & ^s:: Send T and S text{enter}
Return
I want AHK to take all three sequences like Ctrl+S does one thing and Ctrl+M does another but Ctrl+S+M does a different third action.
There is a similar post to this here: AutoHotKey key SEQUENCE, not just single-key hotkey
CTRL + LETTER
hotkeys, since they almost always block some shortcut in many programs. E.g.^s
is the standard save shortcut in editors;^t
is the new tab shortcut in browsers, and so on. – MCL