Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Threads in Flash and Flex

Are threads possible in Flash, Actionscript and Flex just like in C# and Java?

like image 780
yoitsfrancis Avatar asked Mar 24 '09 01:03

yoitsfrancis


3 Answers

I'm working on a project that will use Pixel Bender to do computations on a separate thread. I will hopefully have something to blog soon. In the mean time please go vote for this feature request: https://bugs.adobe.com/jira/browse/ASC-3222

like image 111
James Ward Avatar answered Sep 20 '22 19:09

James Ward


Not at the present. You can use pseudo-threads if you want to. http://blogs.adobe.com/aharui/2008/01/threads_in_actionscript_3.html

like image 2
Aupajo Avatar answered Nov 16 '22 00:11

Aupajo


Alas, there's no multithreading in Actionscript. However, you can fake it with pseudothreads (see link for more details), although this has its own problems.

like image 1
John Feminella Avatar answered Nov 16 '22 00:11

John Feminella