qualcuno sa come si fa ad aprire un pop up da flash? ho provato ma quando lancio la pagina mi si impalla il pc
metto nel primo frame
Movieclip.prototype.centra = function (nome,titolo,lar,alt,feat){
var w = System.capabilities.screenResolutionX/2;
var h = System.capabilities.screenResolutionY/2;
var x = Math.round(w-(lar/2));
var y = Math.round(h-(alt/2));
getURL("javascript:window.open('"+ nome + "','" + titolo + "','width=" + lar + ",height=" + alt + ",screenX=" + x + ",left=" + x + ",screenY=" + y + ",top=" + y + "," + feat + "');void(0);");
}
sul bottone
on(release){
centra('test.html','mia',700,300,'status=yes');
}
e la mia pagina l'ho chiamata test.html ed è nella stessa cartella del filmato
dove erro?