PDA

View Full Version : getURL within dynamic text?


raskolnikov
04-18-2006, 11:51 AM
i have a dynamic text box named "textVar"

in my first frame action, I have textVar="<a href="page,html">link</a>"

but it displays it the entire string! how to make it work by just display the text link and when clicked spawn page.html

I have check the render as html in my dynamic text box.
I do not want to loadVariable from a text file. i have done this and it works.

Raskol

oldnewbie
04-18-2006, 02:00 PM
textVar.htmlText = "<a href='page.html'>link</a>";

raskolnikov
04-19-2006, 03:41 AM
yep! that hit the spot. works like a charm : )

raskol

oldnewbie
04-19-2006, 03:52 AM
;)