Re: [Flashcoders] How to prevent cache of flash .swf file in web page?

2006-04-18 Thread MetaArt
You can add this too: META HTTP-EQUIV=Cache-Control CONTENT=no-cache / but an unerring feature (if you can use server-side script) is: $swf=yourmovie.swf; $lastmod=date(YmdHis,filemtime($swf)); $swf.=?.$lastmod; and then: param name=movie value=? echo $swf; ? Enrico Tomaselli + web

Re: [Flashcoders] How to prevent cache of flash .swf file in web page?

2006-04-15 Thread Troy Rollins
On Apr 13, 2006, at 2:02 PM, Arthur Debert wrote: AFAICT most browsers won't cache an url with a query string. if this gets nasty write a script (server side or javascript on the client) that appends a random query string at the end. Including - META HTTP-EQUIV=PRAGMA CONTENT=NO-CACHE In

Re: [Flashcoders] How to prevent cache of flash .swf file in web page?

2006-04-13 Thread Arthur Debert
just embed the swf with a query string appened to it at the end. if your swf is called myfile: source=myfile.swf?randbits=012345 and also for the VALUE= tag... AFAICT most browsers won't cache an url with a query string. if this gets nasty write a script (server side or javascript on the client)