Salve,
sto utilizzando il prototype di flash-mx.it per aprire i popup centrati da flash:

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);");
};

e lo richiamo cosi

on(release){
centra('test.html','mia',700,300,'status=yes, scrollbar=yes');


volevo impostare lo scrollbar, ma non mi compare
come mai, non è corretto come ho fatto

ciao