If setting the htmlText property on an mx TextArea the text property stays ‘null’ until the TextArea is manually edited. Is there a way of updating the text property as soon as the htmlText property is set?
e.g.
textArea.htmlText = str;
trace(textArea.text)
result = null
Many thanks,
Adam
By calling
validateNow()on thetextAreaafter setting thehtmlTextproperty you can force the text property to be updated instantly.e.g.