TextField Flash ActionScript

package {
  import flash.display.*;
  import flash.text.*;
  public class Main extends Sprite {
    FontEmbedder;
    public function Main() {
      var t:TextField = new TextField(  );
      t.embedFonts = true;
      t.htmlText = "Hello world";
      addChild(t);
    }
  }
}
  class FontEmbedder {
    [Embed(source="c:/windows/fonts/verdana.ttf",
           fontFamily="Verdana")]
    private var verdana:Class;
    [Embed(source="c:/windows/fonts/verdanab.ttf",
           fontFamily="Verdana",
           fontWeight="bold")]
    private var verdanabold:Class;
  }