But now I now I want to make it so i can Start a program in the middle of messageboxes.
That's a little trickier, and I'd like to know the answer to that as well. In my user experience the msgbox always has to be cleared before the script continues; could be wrong.
However, if you set the prompt on a timer
before you put up the msgbox it will work; won't clear the msgbox though.
Example:
Code: vbscript
- Sub Object_OnScriptEnter
- object.SetTimer 1, 5000
- msgbox "Hi, I'm gonna start the command prompt for you"
- End Sub
- Sub Object_OnTimer1
- Object.KillTimer 1 '--Kill the timer first thing!
- msgbox "Does whatever"
- End Sub
The help window says the action has been cancelled
I'm getting that too.

I'm not sure what's wrong with it.