Yeah hi,
I have this Flash thingy that's submitting to another thingy, but the submission is such:
22233%22+isCorrect%3D%221%22+%2F%3E%3C%2Fquestion%3E%3Cquestion+id%3D%
Obviously I need it to be non-shitty.
I apologize for the extremely dumbed-down language but I'm starving. :P
I think you could try to use a post and just send the data unencoded.
Flash will send unicode as UTF-8 via POST.
maybe this is what you are asking?
I was just using getURL and sending via POST.
When I send it to a test PHP file, it would display in my email program as proper XML code -- <> etc etc
When I sent it to the ASPX file, however, it was received as %this and %that.
None of the getURL, loadVars, etc commands seem to have any sort of UTF settings...
Uh.. any reason you are not using the send() or sendAndLoad() method of the XML object rather that a getURL with a string?
XML from flash works nicely with ASPX
// stolen straight from Flash help var my_xml:XML = new XML("Ernie13045"); my_xml.contentType = "text/xml"; my_xml.send("http://www.flash-mx.com/mm/highscore.cfm", "_blank");
sounds like it might be a asp issue where you need to subvert the intercepting script from converting the values to unencoded format.