I’m using this line of AS code to load in some text in a .txt file on my server:
myData.load("articles.txt");
The problem is when I update the text in the .txt file, upload it to my server, and view my Flash movie, it doesn’t load in the latest version of the .txt file that I just uploaded to the server, but an older version. It takes some time to be able to see the new .txt file through the Flash movie.
Is this:
-Because I need to change my Flash AS code somewhere to always load the latest version from the server (rather than look in the browser’s cache)?
-Because the server takes some time to realise the file has been updated?!
-Anything else?!