5/28/2010 10:10:15 AM
Title:
Modules
Hi,
My Application like,
A ----Main Application
xx , yy , zz ----Modules
ppp, qqq, rrrr -----Modules
Components
ppp ---->pop up
So my question is how to acess A to pp---ppp, How to access child components, can anybody please help me?
Thanks
Rama
5/28/2010 9:44:19 PM
you can access any component inside module using the child property by accessing its root.
ppp.child points to the root of the module so to access the components inside you can use
ppp.child.yourComponentID
in case of your popup , it should be accessible using
//your popup
mx.managers.PopUpManager.addPopUp(componentToAddAsPOPUP, containerWherePOPUPAdded, false);
ppp.child.containerWherePOPUPAdded