3
votes
3answers
997 views
How do I prevent Flash’s URLRequest from escaping the url?
I load some XML from a servlet from my Flex application like this:
_loader = new URLLoader();
_loader.load(new URLRequest(_servletURL+"?do=load&id="+_id));
As you can imagine _s …
3
votes
How do I prevent Flash’s URLRequest from escaping the url?
My friend Luis figured it out:
You should use encodeURI does the UTF8URL encoding
http://livedocs.ad …
