Asked
— Edited

I am trying to get two commands to run at the same time ( without success ).
For example:Code:
Left(1,2000)
ControlCommand("Auto Position", AutoPositionFrame, "Stretch Left", 10,1,1)
The program runs the first line, once that is completed then the next line runs. Is there a way to have them run simultaneously?
So let's now look at your code...
The first command is specified Left to run for 2,000 ms (which is two seconds). You're asking the command to run for two seconds. This means you can't expect the next command to execute until the first command has completed, which will take 2 seconds.
Perhaps what you can do is this...
Code:
That added some clarity, it's the order of the commands as well. This is giving me what I am looking for;
Code: