Good Day,
I’ve encountered problems with the cache of the UrlLoader in Actionscript 3. I make a UrlRequest to a php site to get a timestamp.
When I call initiate the class (which contains the function) a second time, the result is the same. I have to close the application and restart it to get a new request.
I have tried "loader = new loader." and also using headers.
The option of creating a unique URL for every request like here , does not work for me since it would sabotage my php action..
loader = new URLLoader();
var request:URLRequest = new URLRequest("http://www.mySite.com/getTime.php?action=getTime");
loader.load(request);