To stop Flash caching every URLRequested file you pull in, you need to trick flash into thinking the file is different. You can do this by changing the URL with a date/time reference, so the URL is different every time.
Try sticking the below on the end of the url to load:
"&nocache=" + new Date().getTime())
props to this chap for the idea!
http://willperone.net/Code/as3nocache.php
Tech Reference: AS3
Leave a Reply