Ho un filmato inserito in una pagina html che si apre in una pop-up. A sua volta, dal filmato, c'è la possibilità di aprire un'altra pop-up.
Con Firefox tutto ok, con IE invece una volta fatta aprire questa pop-up (che non rispetta i marginheight marginwidth impostati a 0) il filmato principale scompare letteralmente, il footer (normale html) va in cima alla pagina. Che succede?
Per la popup dal filmato ho usato il solito codice
codice:
Movieclip.prototype.finestra= function(nome,titolo,lar,alt,feat){
getURL("javascript:var x = Math.round((screen.width/2)-(" + lar + "/2));var y=((screen.height/2)-(" + alt + "/2));window.open('" + nome + "','" + titolo + "','width=" + lar + ",height=" + alt + ",screenX=' + x + ',left=' + x + ',screenY=' + y + ',top=' + y + '," + feat + "');void(0);");
}
codice:
on (release) {
finestra('pagina.html','TITOLO',XXX,XXX,'status=yes');
}