
29/05/2004, 14:35
|
| | Fecha de Ingreso: marzo-2004 Ubicación: Chile
Mensajes: 96
Antigüedad: 21 años Puntos: 0 | |
Trata con esto :
En tu html defines el script, entre <head> y </head> :
<SCRIPT language=JavaScript>
<!--
function abrirventana1() {
openpopup = window.open("pagina.html","pagina","width=600,heig ht=300,leftmargin=0,marginheight=0,marginwidth=0,r ightmargin=0,topmargin=0,screenX=0,screenY=0,resiz able=no,scrollbars=no,status=0,titlebar=no,toolbar =no,menubar=no,location=no");
openpopup.opener.name = "pagina";
}
//-->
</SCRIPT>
Luego, desde flash, al boton que abre la pop up le pones :
on (release) {
getURL("javascript:abrirventana1");
} |