-
1. Re: Error URLRequest
Chandan_Abhishek Apr 22, 2013 9:24 PM (in response to hungdo1988)Hi,
Server-Side ActionScript Language Reference does not have URLRequest and URLLoader class. You can use LoadVars class for the same purpose. Check the following link to know more about the LoadVars class:
-
2. Re: Error URLRequest
hungdo1988 Apr 23, 2013 1:02 AM (in response to Chandan_Abhishek)My code :
///////////////////////////////////////////////////
var url = "http://10.84.70.133:8084/?q=external_api_transcode/getProgramByChannelAndDate&channel=vtv3 &date=20130404";
var loadvar = new LoadVars();
loadvar.onData = function(src) {
if (src == undefined) {
trace("Error loading content.");
return;
}
trace(src);
}
loadvar.load(url,loadvar,"GET");
trace(loadvar.toString());
////////////////////////////////////////////////////
But it is not ok.
Can you help me?
-
3. Re: Error URLRequest
hungdo1988 Apr 24, 2013 3:26 AM (in response to hungdo1988)Who can help me?


