Reputation: 2045
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?
Upvotes: 0
Views: 223
Reputation: 6583
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>
Upvotes: 1