Mega Code Archive

 
Categories / Flex / Style
 

Flex Style with namespace

<?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|Button {      fontSize: 15;      color: #9933FF;     }     </mx:Style>     <mx:Button id="myButton" label="Click Here"/> </mx:Application>