Graphics Flex



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

    
    private function listFonts():void {
    var fontArray:Array = Font.enumerateFonts(false);
       for(var i:int = 0; i < fontArray.length; i++) {
          var thisFont:Font = fontArray[i];
          if (thisFont.fontType == "embedded") {
              trace("name: " + thisFont.fontName +"; typeface: " + thisFont.fontStyle + "; type: " + thisFont.fontType);
          }
       }
    }