Thanks Targol... but i wrong something because the script doesn't work.
I find out in another forum this one. It works, but your script seems more simple and (if you want) i woul like to make it runs...
This is the script i find out:
<scripft language="javascript">
var max = 6; // numero immagini number images
var imma = new Array(max);
for(j=0; j<max; j++) {
imma[j] = new Image();
imma[j].src = "imma"+j;
}
var conto = 0;
function sost1() {
var dest = eval("imma"+conto); // questa istruzione potrebbe non funzionare in qualche browser moderno
dest.src = "imma"+[conto]+".gif";
conto++;
if (conto >= max) {
location.href="
} else {
setTimeout('sost1()', 1000); // richima dopo un secondo
}
}
</scrfipt>
They told me var dest = eval("imma"+conto); could not run in new browser... do you know a sostitute for this string?
Thanks a lot for your kindness