Hi,
unfortunately, I am not sure about URLLoader.
But you may want to give HTTPService a try, something like this [1].
You should find some examples here anywhere [2].
Maybe this helps,
Olaf
[1]
var service:HTTPService = new HTTPService();
service.url = "...";
service.method = "POST";
//var header:HTTPHeader = new HTTPHeader(...);
//service.contentType = "...";
//service.headers = new Array(header);
service.contentData = "...";
service.addEventListener("complete", onComplete);
service.addEventListener("ioError", onFault);
service.send();
[2]
https://github.com/apache/royale-asjs/tree/develop/examples/royale
--
Sent from: http://apache-royale-development.20373.n8.nabble.com/