Class-level font embedding : Font : TextField Flash / Flex / ActionScript examples


Flash / Flex / ActionScript examples » TextField » Font »

 

Class-level font embedding


 

package {
  import flash.display.*;
  import flash.text.*;
  import mx.core.FontAsset;
  
  public class HelloWorld extends Sprite {
    Verdana;

    public function HelloWorld (  ) {
      var t:TextField = new TextField(  );
      t.embedFonts = true;
      t.htmlText = "<FONT FACE='Verdana'>Hello world</FONT>";
      addChild(t);
    }
  }
}
[Embed(source="c:/windows/fonts/verdana.ttf", fontFamily="Verdana")]
class Verdana extends FontAsset {
}

        



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


Flash / Flex / ActionScript examples

 Navioo TextField
» Font