home *** CD-ROM | disk | FTP | other *** search
/ Mobiclic 148 / MOBICLIC148.ISO / mac / DATA / DSS148 / DSS148_01 / fonts / Swerve.swf / scripts / Swerve.as < prev   
Text File  |  2012-10-16  |  557b  |  25 lines

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