Fai così:
codice:
var theLink:String = "per la ricerca cliccare su Gooogle";
var container:MovieClip = this.createEmptyMovieClip("container", this.getNextHighestDepth());
var link:TextField = container.createTextField("link", 1, 5, 10, 310, 20);
//
var my_fmt:TextFormat = new TextFormat();
my_fmt.font = "verdana";
my_fmt.color = 0x888800;
//
link.html = true;
link.htmlText = theLink;
link.setTextFormat(my_fmt);
Vedrai che così funziona!.