Mega Code Archive

 
Categories / Flex / Components
 

Set font style for TextArea and Button

<?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">     <mx:Style>         global {             fontFamily: gothicCentury;         }     </mx:Style>     <mx:Script>                      [Embed(source="a.ttf", fontName="gothicCentury")]             private var _centuryGothic:Class;            </mx:Script>     <mx:TextArea text="Example Text" />     <mx:Button label="Example" /> </mx:Application>