I have an XML attribute that loads text into Flash and is done so by pulling in an XML attribute value. The problem is that this is a German based xml, and the special characters (ö,ü) in the string are choking the Flash/XML processor. for example this would be an xml-node attribute <menu pageID = "produkte-zubehör" gotoURL="/Produkte/Zubehör"> Code (markup): btw:I don't know for sure if this is a xml or flash error
Actually there shouldn't be any special characters in XML as they're supposed to be encoded once they reach the output. http://xml.silmaril.ie/authors/specials/ At least that's how I understand it.
tx, for your reply. I already tried encoding ö with ö and ö I do think is has something to do with flash. i bypass it by using in AS addr = addr.split("Zubehr").join("Zubehör"); Code (markup): not as clean as i wanted it to be but ..........
Not sure exactly what your problem is, but for flash to support special characters from xml, the xml must be saved as UTF-8 encoding, and if you want to display those characters in a textfield in flash, you need to embed those characters in the textfield first. Hope this helps.