nkukhar
nkukhar

Reputation: 2045

how to display one mxml in another

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

Answers (1)

mbdev
mbdev

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

Related Questions