home *** CD-ROM | disk | FTP | other *** search
/ Computer Active 2010 August / CA08.iso / Multimedija / shufflr.air / ShufflrClient.swf / scripts / mx / core / EmbeddedFont.as < prev    next >
Encoding:
Text File  |  2010-06-23  |  693 b   |  32 lines

  1. package mx.core
  2. {
  3.    use namespace mx_internal;
  4.    
  5.    public class EmbeddedFont
  6.    {
  7.       mx_internal static const VERSION:String = "3.5.0.12683";
  8.       
  9.       private var _fontName:String;
  10.       
  11.       private var _fontStyle:String;
  12.       
  13.       public function EmbeddedFont(param1:String, param2:Boolean, param3:Boolean)
  14.       {
  15.          super();
  16.          _fontName = param1;
  17.          _fontStyle = EmbeddedFontRegistry.getFontStyle(param2,param3);
  18.       }
  19.       
  20.       public function get fontStyle() : String
  21.       {
  22.          return _fontStyle;
  23.       }
  24.       
  25.       public function get fontName() : String
  26.       {
  27.          return _fontName;
  28.       }
  29.    }
  30. }
  31.  
  32.