Load font from ttf file and use it in style
<?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:Application>