[flexcoders] Communication of data between parent and child movie.

2007-05-16 Thread ivansebastiansurya
Hi everyone, Currently I have to write a Flex application that holds other swf application within it (I will have a skeleton swf movie with menu on the left hand side and when a menu item is clicked, the corresponding sub application is loaded on the right hand side, onto an Image control).

Re: [flexcoders] Communication of data between parent and child movie.

2007-05-16 Thread Bjorn Schultheiss
Using the inbuilt event dispatching system is your best bet. That way you can have your parent(s) and child(s) loosely coupled. There are particular design patterns that also deal with this issue. Personally i like the combination of DataBinding, ModelLocator (Singleton) and Commands, ala

RE: [flexcoders] Communication of data between parent and child movie.

2007-05-16 Thread Tracy Spratt
] On Behalf Of Bjorn Schultheiss Sent: Wednesday, May 16, 2007 7:29 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Communication of data between parent and child movie. Using the inbuilt event dispatching system is your best bet. That way you can have your parent(s) and child(s