Re: [Flashcoders] stop caching

2010-12-10 Thread Paul Andrews
? From: flashcoders-boun...@chattyfig.figleaf.com [flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Juan Pablo Califano [califa010.flashcod...@gmail.com] Sent: Thursday, December 09, 2010 9:03 PM To: Flash Coders List Subject: Re: [Flashcoders] stop caching If you are loading the swf

RE: [Flashcoders] stop caching

2010-12-10 Thread Lehr, Theodore
: Flash Coders List Subject: Re: [Flashcoders] stop caching If you are loading the swf directly from the file system (that is, localy) appending parameters to the querystring won't work because they'll be considered part of the file name. So those parameters will not be interpreted as

Re: [Flashcoders] stop caching

2010-12-09 Thread Juan Pablo Califano
If you are loading the swf directly from the file system (that is, localy) appending parameters to the querystring won't work because they'll be considered part of the file name. So those parameters will not be interpreted as such. In a http environment (i.e. a server, local or remote), on the othe

Re: [Flashcoders] stop caching

2010-12-09 Thread Nathan Mynarcik
gt; nat...@mynarcik.com] > Sent: Thursday, December 09, 2010 2:01 PM > To: Flash Coders List > Subject: Re: [Flashcoders] stop caching > > You could add a new Date variable at the end of your swf like: > > var d:Date = new Date() > > var nc:String = "?n

RE: [Flashcoders] stop caching

2010-12-09 Thread Lehr, Theodore
hattyfig.figleaf.com [flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Nathan Mynarcik [nat...@mynarcik.com] Sent: Thursday, December 09, 2010 2:01 PM To: Flash Coders List Subject: Re: [Flashcoders] stop caching You could add a new Date variable at the end of your swf like: var d:Date = new D

Re: [Flashcoders] stop caching

2010-12-09 Thread Nathan Mynarcik
You could add a new Date variable at the end of your swf like: var d:Date = new Date() var nc:String = "?nocache=" + d.getTime(); startLoad("moive.swf"+nc); Nathan Mynarcik nat...@mynarcik.com www.mynarcik.com