I want to remap the {Capslock} key to send {Ctrl + Alt + Shift}, but I want to also send any keys that I pressed after it.
For example, if I press {Capslock + t} then I want AHK to send {Ctrl + Alt + Shift + t}
likewise, if I press {Capslock + j} then I want to send {Ctrl + Alt + Shift + j}
The following doesn't work because it sends it before I press any trailing keys. (i'm doing this so I can map shortcuts to Ctrl + Alt + Shift + ? and use the Capslock key to execute them.
Capslock::send {^~+}

!not~. – Bavi_H Jul 30 '10 at 4:08