I have a huge code execution with many loops and pre-rendering processes and I was wondering if there is a way to tell the flash player to take a little pause on the code side and do a render.

Basically I have my execusion that takes a while, and on each step I make a call to a screen and then modify the scale of a loading bar. Now the problem is that the user only sees the progress at the end, I know this is due to the fact that flash does code execution and then render, i tried to make calls to stage.invalidate to force a render but it wouldnt work until the whole execusion if finished either. Is there a way to force flash to render between two lines of code?

link|improve this question

75% accept rate
stage.invalidate only flags the stage for lack of better words invalid. The update will only happen on the next enterframe event. – The_asMan May 17 '11 at 23:10
feedback

3 Answers

up vote 0 down vote accepted

I encountered a similar problem in which my AS code would be running for a long time and the UI was getting unresponsive. So I implemented my logic as a Green Thread.

Check out this link for an as3 implementation and examples.

link|improve this answer
feedback

UIComponent has a rendering "framework" built into it. All display objects extend from it.
This will allow you to optimize your code, by using the invalidate methods.

link|improve this answer
feedback

You will want to familiarize yourself with pseudo-threads.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.