Re: preventing mouse clicks

2008-07-22 Thread Scott Rossi
> Is there a simple command I could > insert into Button X's script so that > mouseclicks on other buttons, objects > or the menubar are ignored until > Button X's script has completed > (ie, until the images are downloaded)? One simple way to do this is to display a card size opaque graphic whose

Re: preventing mouse clicks

2008-07-22 Thread Scott Morrow
Hello Nicolas, One thing to watch out for is that when you re-enable the group, all the controls within become enabled. So if there was a disabled control in the group before the group was disabled, it will become enabled when the group is re enabled. Scott Morrow Elementary Software

Re: preventing mouse clicks

2008-07-22 Thread Nicolas Cueto
> If all your controls are part of a group, you can > disable them in one go by disabling the group Fortunately, they were, and that's what I ended up doing. Thanks. -- Nicolas Cueto ___ use-revolution mailing list use-revolution@lists.runrev.com Pleas

Re: preventing mouse clicks

2008-07-22 Thread Jan Schenkel
--- Nicolas Cueto <[EMAIL PROTECTED]> wrote: > > You can disable all (other) objects, until the > download has finished. > > Thanks, Mark. I did that. But somewhat tedious > typing it all out. > > Guess there's no easier way (other than perhaps > better design?). > > -- > Nicolas Cueto > If al

Re: preventing mouse clicks

2008-07-22 Thread Nicolas Cueto
> You can disable all (other) objects, until the download has finished. Thanks, Mark. I did that. But somewhat tedious typing it all out. Guess there's no easier way (other than perhaps better design?). -- Nicolas Cueto ___ use-revolution mailing list

Re: preventing mouse clicks

2008-07-22 Thread Terry Judd
Check out the flushEvents function... "Use the flushEvents function to prevent unwanted messages from being sent during a handler's execution." Terry... On 23/7/08 10:02 AM, "Nicolas Cueto" <[EMAIL PROTECTED]> wrote: > Hello, > > When the user clicks on Button X, > its mouseUp script begins t

Re: preventing mouse clicks

2008-07-22 Thread Mark Schonewille
Hi Nicholas, You can disable all (other) objects, until the download has finished. You could also insert a check in all other scripts, to see whether something is currently downloaded. The urlStatus provides you with information about currently running downloads. -- Best regards, Mark Sc

preventing mouse clicks

2008-07-22 Thread Nicolas Cueto
Hello, When the user clicks on Button X, its mouseUp script begins to download a series of images. Is there a simple command I could insert into Button X's script so that mouseclicks on other buttons, objects or the menubar are ignored until Button X's script has completed (ie, until the images a