I have one mxml file that process xml, and display the graphics on panel. I need to display first mxml in another mxml file, in some area(HBox, VBox, Panel, dont care). How i can do this?
+1
A:
The question sounds too simple so I am wondering if I missed something? Why not make the first mxml a child inside the HBox/VBox?
<AnotherMXML>
<VBox>
<FirstMXMLComponent/>
</VBox>
</AnotherMXML>
mb
2010-10-18 14:48:19
I tried, but i had this kind of error:ArgumentError: Error #2025: The supplied DisplayObject must be a child of the caller.
infate
2010-10-19 09:56:58
Post some code?
mb
2010-10-20 11:40:39
Thanks for answer. I already solved my problem.
infate
2010-10-21 10:22:43