I have a textfield created with AS3 as thus: (theDesc is a parameter passed through a function)

var productDescTxt:TextField = new TextField();
productDescTxt.htmlText = theDesc;  
productDescTxt.multiline = true;
productDescTxt.wordWrap = true;
productDescTxt.embedFonts = true;
productDescTxt.setTextFormat(productInfoTF);
productDescTxt.x = 10;
productDescTxt.y = productNameTxt.y+productNameTxt.textHeight+15;
productDescTxt.width = 325;
holder.productsTab.addChild(productDescTxt);

theDesc is html content with character encodings:

ex:

<p><strong>6.1 oz cotton at an affordable price</strong></p>

the problem is the textField is displaying every character. <p><strong> etc.

Is there any extra encoding need done on my end?

link|improve this question

75% accept rate
What does theDesc look like where your setting it? – locrizak May 20 '11 at 13:06
It's being passed as a String exactly like my example. – rson May 20 '11 at 13:13
like this &lt;p&gt;&lt;strong&gt;6.1 oz cotton at an affordable price&lt;/strong&gt;&lt;/p&gt;? – locrizak May 20 '11 at 13:16
yes. character for character like my example. – rson May 20 '11 at 13:21
So why don't you do the html_decode in a server side language or type it directly into xml or string? – locrizak May 20 '11 at 15:20
feedback

2 Answers

Looks like you get it from some server, don't you? You need to change &lt; with <, &gt; with > manually. E.g. in PHP (if server part of your app is written on PHP) there's html_decode() function which will replace all for you. I don't know of similar function in AS3.

But, I can advise you small trick:

var tempField:TextField = new TextField();
tempField.htmlText = theDesc;  
var productDescTxt:TextField = new TextField();
//...
productDescTx.htmlText = tempField.text;  
holder.productsTab.addChild(productDescTxt);

that will do html_decode() for you! hope that helps!

link|improve this answer
feedback

view source of this page and find this line:

<weare the something>

this answer box does almost the same as flash textField htmlText function.
more about htmlText posibilieties in flash: TextField – available html tags

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.