Does Flex 3 support threading? If so, are there any examples or links I could look at?
|
Somewhere, in Adobe, Flash Player does support multithreading... http://www.bytearray.org/?p=3007. It's just not publicly available yet. Other than that, see Multithreading or green threading in actionscript? There are also a few articles on the internet about using Pixel Bender's multithreading for data processing. |
|||
|
|
|
Actionscript is single-threaded, if you spend lots of time doing heavy computation, the UI cannot be updated while you’re doing that computation so your application appears stuck or effects don’t run smoothly. Similarly, there is no yielding or blocking in Actionscript either. If the next line of code is supposed to run, you cannot prevent the next line of code from running. That means that when you call Alert.show(), the next line of code following that runs right away. In many other runtimes, the Alert window has to be closed before the next line of code continues. Threading may be a feature of Actionscript some day, but until then, you have to live with the fact that there is no such thing right now. |
|||
|
|
|
ActionScript 3 is single-threaded. What you can do is cut the work in slices small enough that the responsiveness is not too affected. For example:
|
||||
|
|