Stupid question

i’ve seen this on this board 100+ times but for some reason the answer is slipping my mind and i don’t see it in the tuts section

i have a dynamic text box with text loaded from an external .txt file and i want to put html tags into it

here is the code i have


loadText = new loadVars();
loadText.load("assets/about.txt");
loadText.onLoad = function() {
		scroller.text = this.about;
};

what line do i add to it so that it will display the html as html and not show the lil brackets < >

i have the box checked in flash that says render as html

thanks for your help

loadText = new loadVars();
loadText.load("assets/about.txt");
loadText.onLoad = function() {
                scroller.html = true;
		scroller.htmlText = this.about;
};

thanks beta! =)