Добрый день всем.
Сделал отображение текста, но как сделать текст подчеркнутым, найти не смог. Помогите, пожалуйста, кто решил подобную задачу!

Код AS3:
var fd:FontDescription = new FontDescription();
fd.fontLookup = flash.text.engine.FontLookup.DEVICE;
fd.fontName = "Tahoma, Arial, Verdana";
fd.fontWeight = flash.text.engine.FontWeight.BOLD;
fd.fontPosture = flash.text.engine.FontPosture.ITALIC;
var ef1:ElementFormat = new ElementFormat(fd);
var str:String = "Любой отображаемый текст";
var tb:TextBlock = new TextBlock();
var te1:TextElement = new TextElement(str, ef1);
tb.content = te1;
var ypos:Number = 30;
var line1:TextLine = tb.createTextLine(null, 300);
while (line1)
{
line1.y = ypos + line1.height;
ypos += line1.height + 2;
line1.x = 0;
addChild(line1);
line1 = tb.createTextLine(line1, 300);
}