[flexcoders] Force UI update during intense AS work

2008-08-08 Thread verma.java
Hello All, I am Ashish. I am working in Adobe Flex AIR from last six months only. I have a problem that anyone will have been faced in flex/air of updaing UI during the intense AS work before. Actually I am reading the OS File System and making a XML file that would work as data provider for

RE: [flexcoders] Force UI update during intense AS work

2008-08-08 Thread Gregor Kiddie
are not the intended recipient please contact [EMAIL PROTECTED] From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of verma.java Sent: 08 August 2008 06:40 To: flexcoders@yahoogroups.com Subject: [flexcoders] Force UI update during intense AS work

Re: [flexcoders] Force UI update during intense AS work

2008-08-08 Thread George
You cannot do anything if you do not ask Flex to update. If you want to 'display something' before you finally update data provider, give an early collection of data provider (smaller and fast) to ask DataGrid could update. George verma.java wrote: Hello All, I am Ashish. I am working in

RE: [flexcoders] Force UI update during intense AS work

2008-08-08 Thread Gregor Kiddie
Subject: Re: [flexcoders] Force UI update during intense AS work Hi Kiddie, Thanks for your quick reply. you are right and I also know this is the only solution. but problem is that how to separate the workup into chunks. Actually I am reading tree nodes recursively and unable to divide

[flexcoders] Force UI update during intense AS work: doLater, maybe?

2005-05-04 Thread Tracy Spratt
Title: Force UI update during intense AS work: doLater, maybe? One part of our app does VERY intense work, building a tree, an inverted tree (thousands of nodes), and several arrays. Even though I have a progress bar, and update it and its label throughout the various function calls, those

RE: [flexcoders] Force UI update during intense AS work: doLater, maybe?

2005-05-04 Thread Gordon Smith
: [flexcoders] Force UI update during intense AS work: doLater, maybe? One part of our app does VERY intense work, building a tree, an inverted tree (thousands of nodes), and several arrays. Even though I have a progress bar, and update it and its label throughout the various

RE: [flexcoders] Force UI update during intense AS work: doLater, maybe?

2005-05-04 Thread Tracy Spratt
Smith Sent: Wednesday, May 04, 2005 9:02 PM To: 'flexcoders@yahoogroups.com' Subject: RE: [flexcoders] Force UI update during intense AS work: doLater, maybe? The Flash player won't update the screen while one of your methods is executing. You'll have to break your work up into chunks which can

RE: [flexcoders] Force UI update during intense AS work: doLater, maybe?

2005-05-04 Thread Matt Chotin
] On Behalf Of Tracy Spratt Sent: Wednesday, May 04, 2005 6:56 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Force UI update during intense AS work: doLater, maybe? Thanks, yes, I do get the idea. I would have though that putting the doLater on my recursive call would have done

Re: [flexcoders] Force UI update during intense AS work: doLater, maybe?

2005-05-04 Thread JesterXL
ave to float around... but at least you can see how you can spread out your functions who don't pass unit testing time trials/profiling. - Original Message - From: Tracy Spratt To: flexcoders@yahoogroups.com Sent: Wednesday, May 04, 2005 9:56 PM Subject: RE: [flexcoders] Force UI upda