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