Hi,
I'm just wondering if any of you have some insight into how the mx:Label
interprets ASCII. Any thoughts on how to change the text of the ASCII
post-creation?
This works just:
<mx:Label id="TotalLbl" text="↖"/>
However, if I do any of these, it doesn't
var charctr:String = '↖'TotalLbl.text = charctr;
[Bindable] private var charctr:String = '↖'
<mx:Label id="TotalLbl" text="{charctr}"/>
same if I have:
charctr:String = '&#8598;'charctr:String = "↖"
charctr:String = "&#8598;"
Thanks,
Matthew