Hi!
I've got a problem displaying special characters in Flash. I create a XML document with PHP. I call this PHP-script from Flash MX.
This works fine except when the XML contains special characters such as é, ç, ñ et cetera. These characters simple seem to be ignored so they're not being displayed
Sample XML-code:
<?xml version="1.0" encoding="ISO-8859-1"?>
<item>
<title>Titel of the item</title>
<text>
<subtext>subtext 1</subtext>
<subtext>subtext 2</subtext>
</text>
</item>
I've tried lot's of stuff, using htmlentities() to encode special characters to the special html-presentation (eg. ë = & euml ; or & # 130; ) This doesn't do the trick
I've also tried another encoding of my XML-document. I use the ISO-8859-1 charset, I've also tried the utf-8 charset without success..
I've also tried escaping the characters in Flash.
Currentely the only thing that works is replacing all special characters with their "normal" one, é -> e, ñ -> n et cetera.
Anybody got a clue?
Thnx in advance,
SnaacK