Hi,

the server idea as a php script (you can do the same thing with cgi, asp, coldfousion...)

Replace loadvariables('info.txt', ...) by loadvariables('info.php', ...)
with info.php script
<?
header('Cache-control: no-cache');
header('Pragma: no-cache');
header('Expires: Jan 01 2000 00:00 GMT');
$fp = fopen('info.txt', 'r');
fpassthru($fp);
?>
In case you want to do the same for the swf file, you should add a
header('Content-type: application/x-shockwave-flash');

Musicman