Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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);
share|improve this question

1 Answer

up vote 1 down vote accepted

Adding a random parameter to your request will not sabotage your php in any way:

loader = new URLLoader();
var request:URLRequest = 
    new URLRequest(
   "http://www.mySite.com/getTime.php?action=getTime&bogus="+(Math.random() * 10000));
loader.load(request);

Your php code will GET the action parameter, and will ignore the bogus parameter without any effect on your code.

You can also use a time based random number to avoid being too unlucky and get the same value twice.

share|improve this answer
Perfect! I was unaware of the fact that I had to add a "&". It works, and I'm super grateful! – Jake Jan 21 at 22:23
@Jake you are welcome :) – Majid L Jan 21 at 22:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.