Ah se può esserti utile in riferimento a questo 3d quello che ti serve è la proto di crescenzo:
codice:
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="+lar+",height="+alt+",screenX=' + x + ',left=' + x + ',screenY=' + y + ',top=' + y + ',"+feat+"');void(0);");
};
Poi richiami con
codice:
on (release) {
centra('alpha_button2.html', 'IlLocale', 800, 600, 'status=yes');
}