Ver Mensaje Individual
  #2 (permalink)  
Antiguo 04/04/2002, 17:41
Avatar de hucasys
hucasys
 
Fecha de Ingreso: noviembre-2001
Ubicación: Bastante buena...
Mensajes: 816
Antigüedad: 22 años, 5 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