Dynamic text w/ in a movieclip

using flash cs4

I’m trying to load dynamic text from within a movie clip…

my actionscript, from within the movieclip, is:

var content_req:URLRequest = new URLRequest (“What.txt”);
var content_ldr:URLLoader = new URLLoader (content_req);
content_ldr.addEventListener(Event.COMPLETE, onComplete);

function onComplete(event:Event):void
{
content_txt.htmlText=event.target.data;
}


im pretty sure i need to edit the “content_txt.htmlText=event.target.data;” line since im within a movie clip, and not on the main time line, but the several variations ive tried out aren’t working…

also, “What.txt” is the proper name of the text file, and is stored in the same folder as my flash file.
anyone got some helpz for me?

thanks