Ciao,

Ho sempre ed unicamente fatto popup aperti tramite tasto, con questa funzione:

-Primo Frame:

Movieclip.prototype.centra = 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="+l ar+",height="+alt+",screenX=' + x + ',left=' + x + ',screenY=' + y + ',top=' + y + ',"+feat+"');void(0);");};

-Bottone:

on (release) {
centra('http://www.pippoesempio.com', 'titolo', 200, 200, 'status=no');
}

-------

ma questa volta devo farlo aprire da solo senza pressione di alcun tasto. Ho provato il precedente esempio sostituendo " on (release) " con " onClipEvent(load) " ma niente.


Qualcuno sa che funzione devo inserire ??

thanks