Using Cascading Style Sheets to apply style to Button : Button Style « Components « Flex
- Flex
- Components
- Button Style
Using Cascading Style Sheets to apply style to Button

<?xml version="1.0"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
<mx:Style>
.myFontStyle {
fontSize: 15;
color: #9933FF;
}
</mx:Style>
<mx:Button id="myButton" styleName="myFontStyle" label="Click Here"/>
</mx:Application>
Related examples in the same category