Ok. I guess it's not fixed after all... :(
Looking at this further, there are some issues to consider: 1) Each image is taking over 2 sec to load (there are 10 in total in the XML). This means the user might not see anything for over 20 sec! 2) The XML file IS being loaded each time with the cache busting code (looking at the http traffic). This means it is no longer a IE cache issue. 3) The XML file can take up to 10 sec to come back: GET /public/medias/xml/slides2.xml?r=1247444617011 HTTP/1.1 Accept: */* Accept-Language: en-AU Referer: http://www.amcsti.fr/public/medias/swf/anim_titre.swf?r=1247444617011 Type: xml Request: 497 bytes Response: 1028 bytes Total: 1525 bytes Response Time: 9.707 seconds It should be noted that this is not a SWFObject issue, as the Flash file is embeded into the page on each call (right click where the swf should be and you get the Flash right click menu). If you change the code from SWFObject to the standard object/embed and the issue still happens, then we know it is Flash related... If I put a cache busting random number on both the swf AND the XML, it works: http://www.misterhee.com/tests/amcsti2.html So you can fall back to this solution if you like... @Sam (fixed html issue - no diff but thanks for the pickup on the rushed code :) I would also hazard a guess that there is not proper checking code in the swf for loading / init of the XML and assets, and that this thread should be pushed to a general Flash forum. Aran On Mon, Jul 13, 2009 at 10:06 AM, Getify Solutions, Inc. <[email protected]>wrote: > Refresh problem for me in IE7 on WinXP SP3. > > --Kyle > > > > > > *From:* Aran Rhee <[email protected]> > *Sent:* Sunday, July 12, 2009 6:46 PM > *To:* [email protected] > *Subject:* Re: IE loading params problem > > Can anyone else reproduce? Both my machines now run IE8, so I can't easily > test right now. > > > Aran > > > > > On Sun, Jul 12, 2009 at 6:05 PM, mikash <[email protected]> wrote: > >> >> hi , and thank you Aran but it doesn't work for me after refresh in >> IE6 7 on windows Vista. >> ? >> >> >> On Jul 9, 2:26 pm, Aran Rhee <[email protected]> wrote: >> > Yes, I can see in your test page that the swf does not show content on >> > refresh in IE >> > >> > So try this test page:http://www.misterhee.com/tests/amcsti.html >> > >> > This works for me in IE on refresh as it requests fresh XMl each time. >> > >> > Cheers, >> > Aran >> > >> > >> > >> > On Thu, Jul 9, 2009 at 9:32 PM, mikash <[email protected]> wrote: >> > >> > > Yes i'm sorry i must try another solution without swobject so you can >> > > see the bug at this urlhttp://www.amcsti.fr/test_swf.html >> > >> > > On Jul 9, 1:21 am, Aran Rhee <[email protected]> wrote: >> > > > @mikash - The link you points to does not use SWFObject or the code >> block >> > > > you posted. It is a bit hard for anyone to help if we cannot see the >> > > problem >> > > > properly... >> > >> > > > Genrerally IE can be bad in loading XML etc from cache that a swf >> has >> > > loaded >> > > > if the swf was delivered from a different location from the >> container >> > > HTML >> > > > page. >> > >> > > > Try adding some cache busting at the end of the XML like you have in >> your >> > > > code snippet to your actual page. >> > >> > > > Aran >> > >> > > > On Thu, Jul 9, 2009 at 1:37 AM, mikash <[email protected]> wrote: >> > >> > > > > Yes it's same domain, the first time i load the page with no cache >> in >> > > > > IE the swf load, and after ... no loading, no swf >> > >> > > > > On 8 juil, 16:12, "X.Smalbil" <[email protected]> wrote: >> > > > > > sameDomain ? >> > >> > > > > > On Wed, Jul 8, 2009 at 3:54 PM, mikash <[email protected]> >> wrote: >> > >> > > > > > > hi all i've some strange issue in my new project, only in IE >> > > > > > > the first time i load a page with my swf it's ok but when i go >> on >> > > > > > > another page who have the same swf there i cant see the swf, >> the >> > > swf >> > > > > > > seem to be loaded but not the content . I'm using swfobject >> 2.2 >> > > > > > > please have a look, and tell me if you ca reproduce the bug. >> > > > > > >http://www.amcsti.fr/clubs_et_groupes/club_des_associations >> > >> > > > > > > here is my code to embed the swf >> > >> > > > > > > <script type="text/javascript"> >> > > > > > > var url = ' >> > > > > > >http://www.amcsti.fr/public/medias/xml/slides2.xml?q='+ >> > > > > > > Math.round(Math.random() * 99999); >> > > > > > > var flashvars = {}; >> > > > > > > flashvars.tweentime = "2"; >> > > > > > > flashvars.delaytime = "4000"; >> > > > > > > flashvars.slidesfile = url; >> > > > > > > var params = {}; >> > > > > > > params.wmode = "transparent"; >> > > > > > > var attributes = {}; >> > > > > > > attributes.id = "anim_titre" >> > > > > > > attributes.name = "anim_titre" >> > > > > > > swfobject.embedSWF(" >> > > > > > >http://www.amcsti.fr/public/medias/swf/ >> > > > > > > anim_titre.swf", "anim_titre", "410", "53", "9.0.0", false, >> > > flashvars, >> > > > > > > params, attributes); >> > > > > > > </script> >> > >> > > > > > > Please help me ! i cant understand why, thank you >> > >> > > > > > -- >> > > > > > Universal Video Funk >> > > > > > t-foon / 053 851 3517 m-foon / 06 1753 1650 >> > > > > > e-mail / [email protected] >> >> >> --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "SWFObject" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/swfobject?hl=en -~----------~----~----~----~------~----~------~--~---
