[Flashcoders] Clearing Cache

2010-01-14 Thread Lehr, Theodore
Is there a way to clear the browsers cache via Flash? I have a movie that is very dynamic in the data it shows - I want to make sure the users are not getting an old view Thanks! ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

Re: [Flashcoders] Clearing Cache

2010-01-14 Thread Zeh Fernando
Not directly, and that is not something you should be looking into doing anyway. If you want to make sure you're loading dynamic data, just add a variable with a random value as querystrings to the URLs you're loading and that'll do the trick. Zeh On Thu, Jan 14, 2010 at 12:20 PM, Lehr, Theodore

Re: [Flashcoders] Clearing Cache

2010-01-14 Thread Eric E. Dolecki
You can't clear from Flash or Javascript, but you can prevent the cache from happening. http://www.google.com/search?client=safarirls=enq=flash+prevent+cachingie=UTF-8oe=UTF-8 On Thu, Jan 14, 2010 at 12:20 PM, Lehr, Theodore ted_l...@federal.dell.comwrote: Is there a way to clear the browsers

Re: [Flashcoders] Clearing Cache

2010-01-14 Thread Gregory Boland
how dynamic are we talking here? a little more details please On Thu, Jan 14, 2010 at 12:20 PM, Lehr, Theodore ted_l...@federal.dell.comwrote: Is there a way to clear the browsers cache via Flash? I have a movie that is very dynamic in the data it shows - I want to make sure the users are not

Re: [Flashcoders] Clearing Cache

2010-01-14 Thread Glen Pike
Use the cache killer method when loading in dynamic data - if you are using a URL to load the data, append a ?tm= + new Date().getTime() to it or similar. Lehr, Theodore wrote: Is there a way to clear the browsers cache via Flash? I have a movie that is very dynamic in the data it shows - I

Re: [Flashcoders] Clearing Cache

2010-01-14 Thread Gregory Boland
yea i'm with Glen, do what he said On Thu, Jan 14, 2010 at 12:34 PM, Glen Pike g...@engineeredarts.co.ukwrote: Use the cache killer method when loading in dynamic data - if you are using a URL to load the data, append a ?tm= + new Date().getTime() to it or similar. Lehr, Theodore wrote:

Re: [Flashcoders] Clearing Cache

2010-01-14 Thread Juan Anzaldo
To: Flash Coders List flashcoders@chattyfig.figleaf.com Sent: Thu, January 14, 2010 10:20:41 AM Subject: [Flashcoders] Clearing Cache Is there a way to clear the browsers cache via Flash? I have a movie that is very dynamic in the data it shows - I want to make sure the users are not getting

RE: [Flashcoders] Clearing Cache

2010-01-14 Thread Lehr, Theodore
...@engineeredarts.co.uk] Sent: Thursday, January 14, 2010 12:34 PM To: Flash Coders List Subject: Re: [Flashcoders] Clearing Cache Use the cache killer method when loading in dynamic data - if you are using a URL to load the data, append a ?tm= + new Date().getTime() to it or similar. Lehr, Theodore wrote