I had this same issue last month. Here's the advice I got (Thanks to
Mark Llobrera) on this board. It was right on target for me. Hope it
helps you too.
You may want to check this posting: http://www.blog.lessrain.com/?p=276. As I
understand it, if the server is returning no-cache headers for the data you're
trying to load it may fail in IE. I say may because I've only run into this
problem when loading XML data over SSL in IE, not a plain .txt file. Something
tells me your problem may be related, however.
Good luck
Johnny Zen wrote:
capturephp = new LoadVars();
nr = nr + 0;
ticker = null;
setInterval (refresh_loadvars_timer,5000);
//////////////rotate timer//////////////
var crt_comp = 0;
function rotate_timer() {
i = current_comp;
comp_name = eval("comp_name"+i);
comp_date = eval("date_from_php"+i);
reg_players = eval("reg_players"+i);
comp_status = eval("comp_status"+i);
//rotate fields
current_comp = (current_comp + 1) % nr;
};
////////////////////////////////////////
////////////refresh loadvars////////////
function refresh_loadvars_timer() {
rotate_timer();
capturephp.load("https://secure.*****.co.uk/*******/infoflash.php");
test.text = ("output" + capturephp);
registered_comp.text = comp_name;
date_time_starting.text = comp_date;
players_registered.text = reg_players;
current_status.text = status;
};
////////////////////////////////////////
_______________________________________________
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
--
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Bob Leisle
Headsprout Software & Engineering
http://www.headsprout.com
Where kids learn to read!
_______________________________________________
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com