[flexcoders] Sort function does not work with turkish characters

2010-02-01 Thread as sass
Hi everybody, I'm also a newbie actionscript developer,  and i'm in trouble with sort function. I want to sort the array collection , it is successful with english characters, but when there is a turkish word beginning with  'İ', 'Ş',  it does not sort, putting these words at the end of the

RE: [flexcoders] Sort function does not work with turkish characters

2010-02-01 Thread Gregor Kiddie
IIRC, the default Sort uses the ASCII values of the characters, so the Turkish characters appear later in the alphabet than I and S. You may need to use a custom compare function which includes functionality for the Turkish alphabet. Gk. Hi everybody, I'm also a newbie

RE: [flexcoders] Sort function does not work with turkish characters

2010-02-01 Thread Gordon Smith
collation routines, as Gregor said. Gordon Smith Adobe Flex SDK Team From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Gregor Kiddie Sent: Monday, February 01, 2010 7:19 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Sort function does not work