A simple test example showing what I am experiencing. Why should the text controls be inheriting the Label styling?
<?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical"> <mx:Style> Label { fontSize: 16px; fontWeight: bold; color: red; } .label { color: green; } </mx:Style> <mx:Label text="Type Selector"/> <mx:Text text="Just a text control"/> <mx:Label text="Class Selector" styleName="label"/> <mx:Text text="Another text control"/> </mx:Application> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Create Web Applications With ColdFusion MX7 & Flex 2. Build powerful, scalable RIAs. Free Trial http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS Archive: http://www.houseoffusion.com/groups/Flex/message.cfm/messageid:4366 Subscription: http://www.houseoffusion.com/groups/Flex/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.37
