Мммммм.

Код:
var txt:TextField = this.createTextField("txt", 2, 10, 10, 200, 200);
s = new TextField.StyleSheet();
s.parseCSS('a:link {color:#FF0000}');
with (txt) {
background = true;
backgroundColor = 0xCCCCCC;
multiline = true;
selectable = true;
autoSize = false;
wordWrap = true;
textColor = 0x000000;
html = true;
styleSheet = s;
htmlText = "pretext <a href='asfunction:my'>link</a>\n\n";
}
function my() {
var f = new TextFormat();
f.url = '';
f.color = 0;
txt.styleSheet = null;
txt.setNewTextFormat(f);
txt.htmlText = '<p>new text</p>';
}
Жесть полная. С убийством стилей. Но работает.