04/04/2002, 17:41
|
| | | Fecha de Ingreso: noviembre-2001 Ubicación: Bastante buena...
Mensajes: 816
Antigüedad: 23 años, 2 meses Puntos: 3 | |
Re: abrir ventana html en flash con javascript en el botón de flash:
Código:
get url......
javascript:popUp1('pagina.htm')
y en el html que contiene el flash:
Código:
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
function popUp1(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=564,height=305,left = 391,top = 266.5');");
}
// End --></script>
ojalá te sirva |