XML response in Flash
I have a f开发者_如何学编程lash file that displays the server respone on screen. The respone is in XML format.
When I use this code: statusText.text = xmlResponse;
I get result on screen like
%3%20xml
etc.
What 's wrong with that? I tried the methods toString()
and text()
but nothing worked
It looks like your string may be "URL encoded". Try the unescape() function.
精彩评论