questa è l'azione nel pulsante del mio swf:
on (release) {
getURL ("http://WWW.gabrielealbertini.com/foto1.htm\" onclick=\"NewWindow(this.href,'','600','341','no') ");
}
e questo è lo script della funzione nella pagina che contiene l'swf...
<script type=text/javascript>
var win= null;
function NewWindow(mypage,myname,w,h,scroll){
var winl = (screen.width-w)/2;
var wint = (screen.height-h)/2;
var settings ='height='+h+',';
settings +='width='+w+',';
settings +='top='+wint+',';
settings +='left='+winl+',';
settings +='scrollbars='+scroll+',';
settings +='resizable=yes';
win=window.open(mypage,myname,settings);
if(parseInt(navigator.appVersion) >= 4){win.window.focus();}
}
</script>
dove sbaglio?? mi dice page cannot be display!!