Хочу сделать TextField с авторазмером по высоте в котором есть картинки.
Но как перенести текст после картинки на следующую строку.
Теги <br> и <p> не срабатывают.

Код AS3:
package {
import flash.display.Sprite;
import flash.text.TextField;
import flash.text.TextFieldAutoSize;
public class Script_1 extends Sprite {
private var txt:TextField;
public function Script_1() {
txt = new TextField();
txt.background = true;
txt.backgroundColor = 0x444444;
txt.autoSize = TextFieldAutoSize.LEFT
txt.width=200;
txt.multiline = true;
txt.wordWrap = true;
txt.selectable = false;
txt.htmlText = '<p><b>1111111</b></p><p><img src="http://www.google.ru/images/russian/style3/icons/product/chrome-48.png" /></p><br><p><font color="#FF0000">Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos hymenaeos.</font></p>';
addChild(txt);
}
}
}