Mega Code Archive

 
Categories / Flex / Graphics
 

Font face and font family

<?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">     <mx:Style>         @font-face {             src: url("a.ttf");             fontFamily: gothicCentury;         }         @font-face {             src: url("a.ttf");             fontFamily: gothicCentury;             fontWeight: bold;         }         global {             fontFamily: gothicCentury;         }     </mx:Style>     <mx:TextArea text="Example Text" />     <mx:Button label="Example" /> </mx:Application>