Application style aligns application to left : Application Style « Container « Flex
- Flex
- Container
- Application Style
Application style aligns application to left

<?xml version="1.0"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
<mx:Style>
@namespace mx "http://www.adobe.com/2006/mxml";
mx|Application {
horizontalAlign: "left";
}
</mx:Style>
<mx:Button id="myButton" styleName="myFontStyle" label="Click Here"/>
</mx:Application>
Related examples in the same category