Hello, I'm stuck with this: Here's an example of my current code While True Send("{LCTRL}") Sleep(1000) WEnd Now basically what I am trying to do is make it follow a sequence of commands, e.g... First it hits ctrl, then it hits .... H(example) then it hits G(example) So here's what I thought would work While True Send("{LCTRL}") Sleep(1000) Send("{H}") Sleep(1000) Send("{G}") Sleep1000 WEnd Could anyone help me with this?