script nel primo frame del root:
MovieClip.prototype.apriPopup = function (nome, titolo, lar, alt, x, y, feat)
{
getURL("javascript:window.open('" + nome + "','" + titolo + "','width=" + lar + ",height=" + alt + ",screenX=" + x + ",left=" + x + ",screenY=" + y + ",top=" + y + "," + feat + "');void(0);");
};
script nel bottone:
on (release) {
apriPopup("SITO/immaginenoflash/logo.jpg",'FLASH', 20, 20, 20, 20, 'status=yes, toolbar=no');
}
alla fine quello che serve è che vengano riconoscute le dimensioni della jpg e il valore vada al posto di 20, 20,! è questo che non so fare!