Hi,

> diff -w -r 
> apache-flex-sdk-4.16.1-src/frameworks/projects/framework/bundles/en_GB/SharedResources.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