FlashType versus Flash Player's standard vector-renderer : Font : TextField Flash / Flex / ActionScript examples


Flash / Flex / ActionScript examples » TextField » Font »

 

FlashType versus Flash Player's standard vector-renderer


 
package {
  import flash.display.*;
  import flash.text.*;

  public class FlashTypeDemo extends Sprite {
    [Embed(source="c:/windows/fonts/verdana.ttf",fontFamily="Verdana")]
    private var verdana:Class;

    public function FlashTypeDemo (  ) {
      var t:TextField = new TextField(  );
      t.width = 200;
      t.embedFonts = true;
      t.htmlText = "<FONT FACE='Verdana' SIZE='10'>" "abcdefghijklmnopqrstuvwxyz</FONT>";
      t.antiAliasType = AntiAliasType.ADVANCED;
      addChild(t);

      var t2:TextField = new TextField(  );
      t2.width = 200;
      t2.embedFonts = true;
      t2.htmlText = "<FONT FACE='Verdana' SIZE='10'>" "abcdefghijklmnopqrstuvwxyz</FONT>";
      t2.antiAliasType = AntiAliasType.NORMAL;
      addChild(t2);
      t2.x = 180;
    }
  }
}

        



Leave a Comment / Note


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


Flash / Flex / ActionScript examples

 Navioo TextField
» Font