Ver Mensaje Individual
  #5 (permalink)  
Antiguo 16/07/2004, 02:13
aeb_asturias
 
Fecha de Ingreso: marzo-2004
Mensajes: 550
Antigüedad: 21 años
Puntos: 7
Gracias foxleonado por volver a responder. Aqui te mando el codigo que es muy simple ya que solo contiene el boton flash creado con el dreamweaver y la funcion que ejecuto cuando se pulsa el boton:



<html>
<head>
<title>Prueba</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body bgcolor="#FFFFFF" text="#000000">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=4,0,2,0" width="100" height="22">
<param name=movie value="button1.swf">
<param name=quality value=high>
<param name="BGCOLOR" value="">
<embed src="button1.swf" quality=high pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="100" height="22" bgcolor="">
</embed>
</object>

<script>
function ejecutarFuncion(){
alert('Hola')

}
</script>

</body>
</html>


Como podrás observar no se ve por ningún lado el texto correspondiente a javascript:EjecutarFuncion() que he puesto yo desde el editor del dreamweaver en el menu del botón que ponía 'vinculo' pero que luego en el código no aparece por ningun lado.

Un saludo.