Howdy,

In the db i have column called 'urls' with values like: http://www.page.html

I'm calling the db record set values into a text box in a flash MX movie and displaying the records as so:

display.htmlText += "<font color=\"#0000FF\" size=\"13\"><a href='http://www.the_record_value_here.html'><u>"+this["myAddress"+i]+"</u></a></font><br>";

How can it be done so that the url in the database is used in place of the 'http://www.the_record_value_here.html' in the script above?