RE: [Flashcoders] swf and xml caching?

2009-10-30 Thread David Hunter
thanks Carl, what issues does it fix for IE, and would it also prevent the images being cached? > Date: Thu, 29 Oct 2009 10:22:58 -0700 > Subject: Re: [Flashcoders] swf and xml caching? > From: carlwelchdes...@gmail.com > To: flashcoders@chattyfig.figleaf.com > > Matt's c

Re: [Flashcoders] swf and xml caching?

2009-10-29 Thread Carl Welch
Date: Thu, 29 Oct 2009 07:44:39 -0400 > > Subject: Re: [Flashcoders] swf and xml caching? > > To: flashcoders@chattyfig.figleaf.com > > > > The problem is xml caching, which can be fixed with the "cachebuster" > > trick. Where you have the path for the XML

RE: [Flashcoders] swf and xml caching?

2009-10-29 Thread David Hunter
brilliant thanks for that, i'll give it a go. david > From: mattsp...@gmail.com > Date: Thu, 29 Oct 2009 07:44:39 -0400 > Subject: Re: [Flashcoders] swf and xml caching? > To: flashcoders@chattyfig.figleaf.com > > The problem is xml caching, which can be fixed with th

Re: [Flashcoders] swf and xml caching?

2009-10-29 Thread Matt S.
The problem is xml caching, which can be fixed with the "cachebuster" trick. Where you have the path for the XML, use: 'http://www.sitename.com/info.xml?cachebuster='+new Date().getTime(); Because it will generate a unique date and time every single time, it will force a fresh load of the xml fil