Re: [Flashcoders] Localization issue with XML

2007-03-22 Thread Birgit Ferran
Steven, I had a similar problem when loading external xml files. The java servlet I was using to create and save the files on the server was saving them with UTF-8 encoding but when I imported them into Flash, some of the special characters did not show properly. I removed the encoding

Re: [Flashcoders] Localization issue with XML

2007-03-22 Thread Hans Wichman
Hi, i just finished an app with the same characters in it. It contains no header and is a unicode file. The file was generated from a database to ascii (which is stupid but whatever) so I used a commandline vbscript for the conversion from my buildfile. If you like I can send you the xml file and

Re: [Flashcoders] Localization issue with XML

2007-03-21 Thread Ivan Dembicki
Hello Steven, SSB XML header is SSB ?xml version=1.0 encoding=UTF-8 ? - this string is ignored by AS XML parser. is your really file saved as UTF-8? -- Ivan Dembicki __ [EMAIL PROTECTED] | http://www.artlebedev.ru |

Re: [Flashcoders] Localization issue with XML

2007-03-21 Thread Søren Christensen
if it isnt a coded textfield you need to define each special character using the 'embed' button in the inspector (while the tf is selected) in the 'include these charecters' field Cheers, B) Søren On Mar 21, 2007, at 12:44 PM, Måns Asplund wrote: Hi Steven! I had the same problem

RE: [Flashcoders] Localization issue with XML

2007-03-21 Thread Steven Sacks | BLITZ
: [Flashcoders] Localization issue with XML if it isnt a coded textfield you need to define each special character using the 'embed' button in the inspector (while the tf is selected) in the 'include these charecters' field Cheers, B) Søren -Original Message- From: [EMAIL

Re: [Flashcoders] Localization issue with XML

2007-03-21 Thread Måns Asplund
Hello Steven I´ve done it like this: Dynamic textfield named info_txt set to embed (in this case) ü and ö. Load and parse XML: / function loadXML(loaded) { if (loaded) { xmlNode = this.firstChild; information

RE: [Flashcoders] Localization issue with XML

2007-03-20 Thread Merrill, Jason
However, when I display it from the XML, they show up as regular o and u characters. // Does not work item![CDATA[wofür benötigen]]/item Any ideas? Have you tried decoding the entities? I use this trick to decode entities in XML when I have problems reading in special characters: private

Re: [Flashcoders] Localization issue with XML

2007-03-20 Thread eka
Hello :) if you can change you DOM to create a localization pattern in your application.. you can use my Eden localization model based on my OpenSource framework (VEGAS : http://vegas.riaforge.org/) and the EDEN format ( http://code.google.com/p/edenrr/) You can install my framework and use the

RE: [Flashcoders] Localization issue with XML - SOLVED!

2007-03-20 Thread Steven Sacks | BLITZ
And I solved it heh so thanks anyway! Solution was to use the numeric codes. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Steven Sacks | BLITZ Sent: Tuesday, March 20, 2007 11:32 AM To: flashcoders@chattyfig.figleaf.com Subject:

RE: [Flashcoders] Localization issue with XML

2007-03-20 Thread Nimrod Huberman
Im not sure it’s the right direction but you can try: system.useCodepage=true; Nimrod -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Steven Sacks | BLITZ Sent: Tuesday, March 20, 2007 8:32 PM To: flashcoders@chattyfig.figleaf.com Subject: [Flashcoders]