Hi attaching the fla. It´s a meny with a MC and inside the MC another MC and inside that a button.
Now as I´ve always done before I used this AS to make the pop up. This is the button code.
[AS]
on (press) {
_parent.gotoAndPlay(“out”);
}
on (release) {
getURL(“javaScript:popup();”);
}
[/AS]
And of course this in the html page
[AS]
<SCRIPT LANGUAGE=“JavaScript”>
function popup() {
window.open(“popup.html”,"",“height=500,width=700,scrollbars=yes,left=0,top=0”);
}
</script>
[AS]
I thougt the javascript was “global” or I´m I missing something.
edit the "about in my on (release) code is supposed to be Javascript don´t now why it interpret it to about?