On 21/12/01 4:43 pm, Ted <[EMAIL PROTECTED]> wrote: >> on mouseUp > show graphic "test" at 68,180 > move graphic "test" to 210,180 in four seconds > wait while the mouseClick --discard additional clicks to objects >> end mouseUp
There are a number of different ways to solve this, off the top of my head try: local lDoingScript on mouseUp if lDoingScript then exit mouseUp put true into lDoingScript show graphic "test" at 68,180 move graphic "test" to 210,180 in four seconds with messages put false into lDoingScript end mouseUp Kind regards, Kevin Kevin Miller <[EMAIL PROTECTED]> <http://www.runrev.com/> Runtime Revolution Limited - Power to the Developer! Tel: +44 (0) 870 747 1165. Fax: +44 (0)1639 830 707. _______________________________________________ improve-revolution mailing list [EMAIL PROTECTED] http://lists.runrev.com/mailman/listinfo/improve-revolution
