Graphics Flex



    xmlns:mx="library://ns.adobe.com/flex/mx"
    xmlns:s="library://ns.adobe.com/flex/spark"
    creationComplete="listFonts()">
    
        
    

    
        @font-face { 
           src:url("a.ttf"); 
           fontFamily: myFont; 
           embedAsCFF:true; 
        } 
        
        @font-face { 
           src:url("a.ttf"); 
           fontFamily: myFont;
           fontWeight: bold; 
           embedAsCFF: true; 
        }
        
        @font-face {
           src:url("a.ttf"); 
           fontFamily: myFont; 
           fontStyle: italic;
           embedAsCFF: true; 
        } 
        .myPlainStyle { 
           fontSize: 20; 
           fontFamily:myFont; 
        } 
        
        .myBoldStyle { 
        
           fontSize: 20; 
           fontFamily: myFont;
           fontWeight: bold; 
        } 
        .myItalicStyle { 
           fontSize: 20; 
           fontFamily:myFont; 
           fontStyle: italic; 
        }
    

     
        private function listFonts():void { 
        var fontArray:Array = Font.enumerateFonts(true); 
            ta1.text += "Fonts: \n"; 
            for(var i:int = 0; i < fontArray.length; i++) { 
                var thisFont:Font = fontArray[i]; 
                ta1.text += "FONT " + i + ":: name: " + thisFont.fontName + "; typeface: " + 
                thisFont.fontStyle + "; type: " + thisFont.fontType; 
                if (thisFont.fontType == "embeddedCFF"||thisFont.fontType == "embedded") { 
                    ta1.text += "*"; 
                } 
            ta1.text += "\n"; 
            } 
        }