Links in a text box

how you do go about puting links in a text box and have rollovers ?

set the text box to dynamic text, and click on the HTML enabled checkbox. Wordwrap too, if you need it.

set a variable equal to a string of text, using HTML encoding of the most basic sort

ie, something like this

myVariable=“http://www.kirupa.com”;

Now the problem with this is that you need to set each change in color separately, there are no style sheets for links of this sort. So, if you want it a different color from the rest of the text, around each <a href> tag you would need to set a <font> tag to take care of the color, style, or size differences.

It’s a real pain in the butt. :slight_smile: