Hello World, in Verdana : Font : TextField Flash / Flex / ActionScript examples


Flash / Flex / ActionScript examples » TextField » Font »

 

Hello World, in Verdana


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

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

    public function Main (  ) {
      var t:TextField = new TextField(  );
      t.embedFonts = true;

      t.htmlText = "<FONT FACE='Verdana'>Hello world</FONT>";
      addChild(t);
    }
  }
}

        



Leave a Comment / Note


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


Flash / Flex / ActionScript examples

 Navioo TextField
» Font