ciao...
tanto tempo fa ho trovato sul forum questo codice che,
inserito in un frme del filmato flash permette all'html di aprire una pop up:
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(f);");
};
e sul bottone:
on(release){
centra('url.jpg','id',525,525,'resizable=yes');
}
ora ho bisogno che la pop-up abbia lo sfono nero, mentre di dafault è bianco...
non so dove agire...