For some reason, I can not get Flash to use my HTML tags. Instead, it puts its own in. For example in the following code:
mytxt.htmltext = “one”;
trace(mytxt.htmltext);
which then outputs:
<P ALIGN=“LEFT”><FONT FACE=“Arial” SIZE=“8” COLOR="#000000">one</font></p>
Which is not what I want. Because if I put
mytxt.htmltext = “<font color=‘Red’>One</font>”;
trace(mytxt.htmltext);
which would output:
<P ALIGN=“LEFT”><FONT FACE=“Arial” SIZE=“8” COLOR="#000000">"<font color=‘Red’>One</font></font></p>
this is not what I want. How do I get flash to keep its own HTML tags out???