I'm using the following script to run a bunch of commands when pressing Ctrl-Alt-I and then following with a key of p, k or u. How can I change this to wait like 2 seconds for the next key, or otherwise just send Ctrl-Alt-I and stop waiting on the next key
^!i::
Input key, I L1
IfEqual key,p
Run, "C:\Temp"
IfEqual key,k
Run, "C:\Temp\1"
IfEqual key,u
Run, "C:\Temp\2"
Return