Проблема возникала из-за того, что фокус клавиатуры попадал прямо на ссылку. Добавление одной строчки когда все решало.

Код:
var txt:TextField = this.createTextField ("txt", 2, 10, 10, 100, 100);
txt.html = true;
s = new TextField.StyleSheet ();
s.parseCSS ('a {color:#FF0000}');
txt.styleSheet = s;
txt.htmlText = "pretext <a href='asfunction:my'>link</a>\n\n";
function my () {
Selection.setSelection (0, 0);
txt.htmlText = 'new text <a href="asfunction:my1">test</a>';
}
function my1 () {
txt.htmlText = 'new text 333<a href="">test</a>';
}