Pb with special characters and accents

2013-08-28 Thread manitas manitas
Hi, I'm using the apache flex 4.10 sdk to develop an Adobe Air desktop app for Windows. I have a problem with special characters and accents. In fact all my mxml file starts with the following line : but when I try to get the text of a spark TextInput and trace it in the output console or send

Re: Pb with special characters and accents

2013-08-28 Thread manitas manitas
rding character sets. > > On 8/28/13 1:56 PM, "manitas manitas" wrote: > > >Hi, > > > >I'm using the apache flex 4.10 sdk to develop an Adobe Air desktop app for > >Windows. > > > >I have a problem with special characters and accents.

Re: Pb with special characters and accents

2013-08-29 Thread manitas manitas
adobe air app ? 2013/8/29 Alex Harui > I think that is two different issues. There is a standard for POST data > and you probably have to encode non-ascii characters. See encode() method. > > On 8/28/13 3:04 PM, "manitas manitas" wrote: > > >Thanks for your

Re: Pb with special characters and accents

2013-08-29 Thread manitas manitas
Thanks for your help. The fact is that If you look at the snippet in my previous email I don't think it's a transfer problem. The charset problem happens before the transfer so I think that even if I put the data inside a XML the resulting string won't be correct. By the way I only transfer small

Re: Pb with special characters and accents

2013-08-29 Thread manitas manitas
the escape and unescape > functions > (build into flash player, so they are (or at least seem) to be performant) > > -Original Message- > From: manitas manitas [mailto:manitas0...@gmail.com] > Sent: 29 August 2013 11:38 > To: users > Subject: Re: Pb with special

Re: Pb with special characters and accents

2013-08-29 Thread manitas manitas
I the only one to face those kind of problems ? Thanks in advance for your help. 2013/8/29 manitas manitas > Thank you so much Mark, it works with the escape function. > > This workaround works but doesn't help me to understand the whole thing, > does it means URLVariables use

Re: Pb with special characters and accents

2013-08-29 Thread manitas manitas
f flash player used for debugging/development. > > Maybe write your own logger? That’s what I currently do in a large project > and dependant on the target (fp/air/mobile) do different things with the > output. EG on Air create a rolling log file > > -Original Message- > From: man

Re: Pb with special characters and accents

2013-08-29 Thread manitas manitas
atin1. Which means the way the characters are > stored as binary data with differ. > > I don't think you will get a bug fixed or similar trace is just a low level > function of flash player used for debugging/development. > > Maybe write your own logger? That's what I currently do

Re: Pb with special characters and accents

2013-08-29 Thread manitas manitas
e64 > > On the receiving side (server or client) do the opposite: > - decode a bas64 text into a ByteArray > - extract your data using ByteArray.readUTF() > > Doing it that way you avoid any encoding, escaping, or other issues in the > underlying communication mechanism