It looks like this was also a problem in 4.16.0.  Can you confirm?

-Alex

On 11/20/17, 8:58 PM, "Justin Mclean" <jus...@classsoftware.com> wrote:

>Hi,
>
>> diff -w -r 
>>apache-flex-sdk-4.16.1-src/frameworks/projects/framework/bundles/en_GB/Sh
>>aredResources.properties
>>/Users/justinmclean/flex-sdk/frameworks/projects/framework/bundles/en_GB/
>>SharedResources.properties
>> 39c39
>> < currencySymbol=�
>> ---
>>> currencySymbol=<A3>
>
>Just confirmed this is an issue and here's some example code to test it.
>To test compile with the en_GB locale.
>
><?xml version="1.0" encoding="utf-8"?>
><mx:Application xmlns:mx="http://www.adobe.com/2006/mxml";
>layout="absolute"  applicationComplete="format()">
>       <mx:Script>
>               <![CDATA[
>                       import mx.formatters.CurrencyFormatter;
>                       
>                       public function format():void{
>                               ti.text = formatter.format(ti.text).toString();
>                       }
>               ]]>
>       </mx:Script>
>       <mx:CurrencyFormatter id="formatter" />
>       <mx:TextInput id="ti" text="100" change="format()" />
></mx:Application>
>
>The currency symbol will show as a question mark in a black diamond in
>the text input field. If you need a screen shot just ask.
>
>Thanks,
>Justin

Reply via email to