Re: [flexcoders] Equiv of DoEvents, to allow painting?

2006-07-26 Thread Tom Chiverton
On Tuesday 25 July 2006 11:33, Daniel Tuppeny wrote: I know 40k points isn't particularly useful, but our app has to degrade nicely if someone doesn't filter the data, and stopping IE form painting is not very nice. Why not just not let the use choose no filtering ? -- Tom Chiverton

RE: [flexcoders] Equiv of DoEvents, to allow painting?

2006-07-26 Thread Daniel Tuppeny
[mailto:[EMAIL PROTECTED] On Behalf Of Tom Chiverton Sent: 26 July 2006 09:30 To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Equiv of DoEvents, to allow painting? On Tuesday 25 July 2006 11:33, Daniel Tuppeny wrote: I know 40k points isn't particularly useful, but our app has to degrade

Re: [flexcoders] Equiv of DoEvents, to allow painting?

2006-07-26 Thread Ralf Bokelberg
To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Equiv of DoEvents, to allow painting? On Tuesday 25 July 2006 11:33, Daniel Tuppeny wrote: I know 40k points isn't particularly useful, but our app has to degrade nicely if someone doesn't filter the data, and stopping IE form painting

RE: [flexcoders] Equiv of DoEvents, to allow painting?

2006-07-26 Thread Daniel Tuppeny
@yahoogroups.com Subject: Re: [flexcoders] Equiv of DoEvents, to allow painting? Hi Daniel, you could use a Timer for that. updateDisplayList sets up the timer and returns. The timer's eventhandler does the drawing. Cheers, Ralf. On 7/26/06, Daniel Tuppeny [EMAIL PROTECTED] wrote: I don't understand