
Flex applications are developed in two languages one is the ActionScript and the other is MXML. This language is known to use non-visual aspects of an application like that of data sources.
Just like HTML, this language is also used to define user interfaces.
The MXML tags that are used for creating visual components are data grids, accordions, tab navigators, trees and menus.
All MXML files are simple XML flies and hence when you are trying to develop an application you can have wide choices.
Below is an example from where you can find the Application and the child applications.
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
<mx:HBox id="titleBar" width="100%" height="63">
<mx:HBox width="56" height="25">
<mx:Button width="14" height="14" label=""/>
</mx:HBox>
</mx:HBox>
</mx:Application>
Just like HTML, this language is also used to define user interfaces.
The MXML tags that are used for creating visual components are data grids, accordions, tab navigators, trees and menus.
All MXML files are simple XML flies and hence when you are trying to develop an application you can have wide choices.
Below is an example from where you can find the Application and the child applications.
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
<mx:HBox id="titleBar" width="100%" height="63">
<mx:HBox width="56" height="25">
<mx:Button width="14" height="14" label=""/>
</mx:HBox>
</mx:HBox>
</mx:Application>




