Re: Suspend script execution.

2007-05-25 Thread Eric Chatonet
Hi Joe, Just modal your stack and use the dialogData property. For instance: set the dialogData to -- preparing the dialog modal stack "MyAnsdwerDialog" -- use the dialogData in MyAnsdwerDialog preopenStack to set the dialog as you wish: prompt, labels, etc. -- execution will stop here until

Re: Suspend script execution.

2007-05-25 Thread Mark Smith
Joe, the 'modal' command is what you want, I think. on mouseUp modal stack "someDialog" doSomething with the dialogData put "someMessage" end mouseUp Assuming you have a substack "someDialog", executing the above in a btn script should open the dialog, wait for it to be closed, and then

Suspend script execution.

2007-05-25 Thread LunchnMeets
Hi Everyone, I’m trying to create my own ask and answer dialog boxes. In order to do that I must be able to suspend a script awaiting my custom dialog box input. Then I want to continue the same script. I tried using the wait command, but that won ’t allow any input while waiting. All suggestion