Mega Code Archive

 
Categories / Flex / Style
 

CSS like Styles

<?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">     <mx:Style>                  .myLabel         {             fontSize: 16;             fontFamily: Arial;             fontWeight: bold;             color: #FFCC00;         }              </mx:Style>          <mx:Label text="Styled Label" styleName="myLabel" />      </mx:Application>