HTML characters in dynamic text box

In searching the forums I found dozens of threads about loading text dynamically. LOL! That is not the problem here. What I’m trying to figure out is a formatting issue.

I know that I can send this html to a dynamic text box and it works correctly:
< a href=“http://www.djlex.com” target="_blank">Click< /a>

But, why does it not work to replace the quotation marks with & quot; ?
< a href=& quot;http://www.djlex.com& quot; target=& quot;_blank& quot;>Click< /a>

(BTW, the extra spaces are intentional so the html does not render as html in this post)

Can anyone enlighten me on this?

Thanks in advance,
Lex

1 you can use &lt; and &gt; for < and > on the forums :wink:
and two, for quotes use either single quotes or escape the quotes with a backslash

<a href=“http://www.djlex.com” target="_blank">Click</a>

The characters also have to work in HTML. That link is being sent to an HTML location as well as my Flash file.

I’ll have to experiment with those slashes to see if it works.

Senocular,

That did the trick! Thank you so much for your help!