Does String.fromCharCode work? http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/String.html#fromCharCode()
On Mon, Aug 15, 2016 at 10:53 AM, Matthew Weir < [email protected]> wrote: > 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
