Missing Fonts and Glyphs
package{ import flash.display.Sprite; import flash.text.*; public class Main extends Sprite{ public function Main(){ var t:TextField = new TextField( ); t.embedFonts = true; t.htmlText = "<FONT FACE='Verdana'>Hello <b>world</b></FONT>"; addChild(t); } } }