home *** CD-ROM | disk | FTP | other *** search
/ Mobiclic 168 / MOBICLIC168.ISO / mac / DATA / GAM168 / GAM168_00 / fonts / ComicSansMS.swf / scripts / ComicSansMS.as < prev   
Text File  |  2014-10-17  |  463b  |  22 lines

  1. package
  2. {
  3.    import flash.display.Sprite;
  4.    import flash.text.Font;
  5.    
  6.    public class ComicSansMS extends Sprite
  7.    {
  8.       
  9.       public static const fontClass:Class = ComicSansMS_fontClass;
  10.       
  11.       public static const fontClassB:Class = ComicSansMS_fontClassB;
  12.        
  13.       
  14.       public function ComicSansMS()
  15.       {
  16.          super();
  17.          Font.registerFont(fontClass);
  18.          Font.registerFont(fontClassB);
  19.       }
  20.    }
  21. }
  22.