0
votes

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

1 Answers

1
votes

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>