Recently, [EMAIL PROTECTED] wrote: > Is there supposed to be a handler checkContinue or can i just call > checkContinue > from my other button to "trigger" the "wait with" to continue?
Just check the value of a variable that is set by whatever controls/handlers cause your checking to be completed: wait until gCheckContinue with messages And in a button (simplified): on mouseUp global gCheckContinue -- do my spellcheck stuff put true into gCheckContinue end mouseUp Make sense? Regards, Scott Rossi Creative Director Tactile Media, Multimedia & Design ----- E: [EMAIL PROTECTED] W: http://www.tactilemedia.com _______________________________________________ use-revolution mailing list [email protected] Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution
