Salve a tutti, ho uppato il mio sito circa 2 mesi fa, però, improvvisamente, da un pò di tempo gli script che ho inserito nella Home Page del Sito, che servivano a far aprire la vera Home Page a tutto schermo non funzionano più. Vorrei sapere se c\'è un errore nel suddetto script che qui allego:
<script>
url = \"http://angelinoant.altervista.org/web/index.html\";
var speedX = 7;
var speedY = 5;
var background = \"http://angelinoant.altervista.org/web/images/bglines.gif\";
var txtColor = \"ff0000\";
if (document.all){
var wide = window.screen.availWidth;
var high = window.screen.availHeight;
}
function andBoom(){
if (document.all){
var Boomer = window.open(\"\",\"BoomWindow\",\"fullscreen\");
Boomer.document.write(\'<HTML><BODY background=\'+background+\' SCROLL=NO><FONT FACE=ARIAL COLOR=\'+txtColor+\'>Attendere, caricamento della pagina in corso...</FONT></BODY></HTML>\');
Boomer.focus();
for (H=1; H<high; H+= speedY){
Boomer.resizeTo(1,H);
}
for (W=1; W<wide; W+= speedX){
Boomer.resizeTo(W,H);
}
Boomer.location = url;
}
else {
window.open(url,\"BoomWindow\",\"_blanck\");
}
}
</script>
Premetto che la funzione andBoom() viene attivata tramite Action Script alla fine della presentazione in Formato Flash. Un grazie anticipato per l\'aiuto.