Re: [flexcoders] Unicode Normalization in flex

2009-02-18 Thread Sreejith P
This problem happens only when you have an applet which gives you file name
or any file system specific parameters.

See http://lists.apple.com/archives/java-dev/2006/Sep/msg00170.html for more
information

Thanks,
Sreejith

On Wed, Feb 18, 2009 at 9:02 PM, Alan K  wrote:

>I don't know anything about the technologies you were referring to, but
> I created a Flex app on OSX and I had 15 different languages displayed.
>  German being one of them.  I had no problems.
>
> I just set the app to use Arial MS Unicode.
>
> Alan
>
> >Because of this issue my i was not able to display the German
> >characters properly on my flex application.S
>
>
>   
>



-- 
Thanks and Regards

Sreejith P
CS 03~07


Re: [flexcoders] Unicode Normalization in flex

2009-02-18 Thread Alan K
I don¹t know anything about the technologies you were referring to, but I
created a Flex app on OSX and I had 15 different languages displayed.
German being one of them.  I had no problems.

I just set the app to use Arial MS Unicode.

Alan

>Because of this issue my i was not able to display the German
>characters properly on my flex application.S





[flexcoders] Unicode Normalization in flex

2009-02-17 Thread Sreejith P
Hi there,

I am facing difficulty in MAC OS X because of the decomposed Unicode
strings (FCD) outputted by FileDialog class in the applet .So in MAC
OS X German character 'Ä' will be represented with two characters A +
the umlaut where as in Windows it is storing as only one character ie 'Ä'.

Because of this issue my i was not able to display the German
characters properly on my flex application.So to solve it i need to
normalize the string to NFC/NFD composition.There is a utility class
in JAVA 1.6 to do that(java.text.Normalizer).But i don't have the
luxury to use java 1.6.So i was searching Normalizer class in flex so
that i can normalize string in flex instead of doing in Java.

Please share your thoughts.

Thanks!
Sreejith