Ciao ragazzi ho questo codice in un fotogramma:
MovieClip.prototype.apriPopupCentrata = 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);");
};
ho questo codice su un pulsante:
on (release) {
apriPopupCentrata('schede/salame.html', 'FLASH', 356, 400, 'status=no, toolbar=no, scrollbars=yes');
}
Tutto bene se si parla di IE e SAFARI ma con firefox non esce la scrollbar di destra, come mai?
Grazie A tutti per l'aiuto