ciao a tutti ...
allora ...ho creato una popup da flash con il seguente codicenel primo frame:
-----------------------------------------------------------------
MovieClip.prototype.apriPopupCentrata = 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 il seguente sul bottone:
---------------------------------------------------------------
on (release) {
apriPopupCentrata('test.swf', 'FLASH', 400, 300, 'status=yes, toolbar=yes');
}
----------------------------------------------------------------
la pagina richiamata non è un html ma direttamente un swf...
il problema è che nella barra del titolo mi visualizza il percorso del file e non il titolo ...
qualcuno sa dirmi perchè??

Rispondi quotando
