i want to be able to change the width and height of multiline textfield, according to textfield's dynamic data. Height is not the problem but width doesn't change. Width has to be resize automatically just like single line textfield. Is there a way to do this?
i have a xml data like this:
<![CDATA[<b>some long text</b> <br> some long text <br> some long text ]]>
in actionscript:
tx_txt.autoSize = TextFieldAutoSize.LEFT;
tx_txt.htmlText = fromXML;