HTML in loading dynamic text

I have seen html loaded in other dynamic text loaders, but I need the look your tutorial has. How would I go about adjusting you tuorial DTL to accepting an HTML formated text file?

what tutorial are you talking about specifically?

Here’s the tutorial I’m talking about.
http://www.kirupa.com/developer/mx/dynamic_scroller.htm


dynamicText_InstanceName.html = true;

Hate to be a pain, but I’m pretty good with flash contruction, I lack heavily on action script. Below is the full action script, where, and how would I insert that line of code?
Thanks for the help, it’s very much appreciated,
Skwerlz

::

loadText = new loadVars();

loadText.load(“shows.txt”);
//creating the loadVarsText function
loadText.onLoad = function() {
scroller.text = this.anewseventstext;

};


loadText = new loadVars();

loadText.load("shows.txt");
//creating the loadVarsText function
loadText.onLoad = function() {
scroller.text = this.anewseventstext;
scroller.html = true;
};

Doesn’t seem to work, am I missing something in the flash setup of the text file maybey? I have it rendering text as html, but still nothing.

 
loadVarsText = new loadVars();
loadVarsText.load("shows.txt");
// creating the loadVarsText function
loadVarsText.onLoad = function() {
	scroller.text = this.anewseventstext;
	scroller.html = true;
	scroller.htmlText = this.anewseventstext;
};
 

This is the code I use… try this… just put it in a frame on the timeline.

Thanksa bunch, You guys rock!