Sorry if this has already been posted in the forums, I don't mind it being delted.
I am wondering what is the best way to run sub events in sequence. Such that the second one starts after the first completes. I'm using sub events because they need to contain seperate conditions. This would be similar to using two if statements one after eachother in scripted code.
For example:
<img src="http://i.imgur.com/1pUaBsG.png" border="0" />
What I would want to happen is for the program to check the first sub events conditions (which there are none) then wait 1 second then change the text to "ONE" then immediately after run the second sub event checking its conditions (none here either) and then immediately change the text to "TWO"
Instead what happens is it changes it to "TWO", then waits 1 second and changes it to "ONE"
So it seems seperate sub events don't execute in sequence, which is good for most situations, but how do i do that?
Here is my proposed solution, and I think its the correct one that will allow seperate conditions to run in order.
<img src="http://i.imgur.com/21YPb2R.png1" border="0" />
If anyone thinks there is a better way please let me know.