Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

AC_FL_RunContent breaks IE6

Status
Not open for further replies.

Kriszti

Technical User
Mar 27, 2007
11
0
0
US
I've been trying to debug my Flash CS3 app on IE6 all day. My app loads fine if

* On IE, in Internet Options, under 'Settings', I selected Check for newer versions of stored pages "Every time I visit'
-OR-
* I had to delete temporary files

Otherwise, my app would only load right the first time. No amount of refreshing, forcing reloads, or preventing caching of the page worked would make it load right the second and subsequent times unless I did one of the above. Incidentally, the part it was not doing was a call to an .xml file. Anyway, I fixed it by removing the AC_FL_RunContent Javascript, which I really don't want to do.
Any suggestions?
Thanks,

Kriszti.

I'll post a link to the page if anyone is interested.
 
I hate the AC_FL_RunContent Javascript and have always preferred the SWFOblect script, much easier to use...


As for the loading of the .xml file, just force it to reload the file from the server each time, by appending an unique number to the loading script...

d = new Date();
// always an unique number
kill = d.getTime();

xml.load("your.xml?kill="+kill);


Regards. FLASH HELP - OPENED FOR BUSINESS!
TO GET YOUR OWN FREE WEBSITE HOSTING
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top