i am working in a flex application, i have an mx text control or I can use whatever control I need to do display the text value, but what I am trying to accomplish is to be able to format that text value with html ‘before’ it gets bound to the text control.
<mx:Text text="{data.combinedCriteria}" width="99%">
In the .as file that manipulates the combinedCriteria property of data, i can do whatever i want, but I haven’t found much help out there.
Have you tried htmlText instead of text?