Problems exporting text in Indian languages
I tried exporting text in Indian languages to XML format, the resulting XML had '?' characters. The following code was used
var exporter:ITextExporter = TextConverter.getExporter(TextConverter.TEXT_LAYOUT_FORMAT);
var xmlExport:XML = exporter.export(_textFlow, ConversionType.XML_TYPE) as XML;
NOTE: The text was rendered as expected. Only the exported XML contained '?' characters.
Is there anyway to export these (see below) unicode characters to an XML without loosing the actual values.
Eg: ' हम कहाँ है?'
Thanks in Advance
