How to make links in dynamically loaded text?

Can anyone help me create links in a dynamically loaded text box? I have a dynamic text box with this code (Flash MX/1.0):

loadText = new loadVars();
loadText.load(“news_txt.txt”);
//creating the loadVarsText function
loadText.onLoad = function() {
scroller.text = this.newstext;
};

I followed this tutorial (http://www.kirupa.com/developer/mx/dynamic_scroller.htm) but I need to be able to make links within this text. Ideally, I’d like to be able to add other HTML code to the text (bold, underline, etc.) but just being able to make hyperlinks from the .txt file would be great.

Thank you greatly for any help you can offer.