Scrolling Dynamically Loaded Text. How to make hyperlinks?

This tutorial shows how to dynamic load a .txt file into a text field with a scroller. What I would like to know is how to make hyperlinks in the text. Is that posible and how?

You first need to html enable your textbox. If you follow the “Scrolling Dynamically Loaded Text” tutorial on this site you will simple need to change the supplied code to look like this…

loadText = new loadVars();
loadText.load("kirupa.txt");
//creating the loadVarsText function
loadText.onLoad = function() {
          scroller.html = true
		scroller.htmlText = this.kirupatext;
};

Then simple to this to create a link…

<A HREF="page.html">This is my link</A>

Tah Dah, simple enough right :slight_smile: