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?