package{
import flash.display.Sprite;
import flash.text.*;
public class Main extends Sprite{
public function Main(){
var t:TextField = new TextField( );
t.htmlText = '' +
+ ' + 'LETTERSPACING="0" KERNING="0">This field contains HTML!'
+ '
';
addChild(t);
}
}
}