views:

247

answers:

4

i want to know if i can use threading model like posix or any else in flex, i am a beginer of flex and i want to know if i can use threads in it for multitasking, tahnks

+1  A: 

check out this post maybe it helps http://questionat.com/questions/1154-multithreading-in-flex

kamran
this means it cant be implemented? flex does not has such model?
kashif
A: 

No, your Flash/Flex code will only run on a single thread, but you can achieve a lot through the asynchronous/event model.

Karthik
A: 

Flex and ActionScript are single-threaded, so there's no threading model you can use.

ettore