Ver Mensaje Individual
  #3 (permalink)  
Antiguo 11/01/2011, 08:48
Avatar de juaniquillo
juaniquillo
Colaborador
 
Fecha de Ingreso: noviembre-2005
Ubicación: San Juan, Puerto Rico
Mensajes: 5.745
Antigüedad: 18 años, 5 meses
Puntos: 281
Respuesta: flash en dreamweaver

necesitas cambiar la dirección del archivo swf y el tamaño del mismo. Dependiendo de la versión de DW tendrás un código diferente. Si usas CS5 DW usa objectSWF para insertar el flash:

Código HTML:
Ver original
  1. <object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="500" height="500">
  2.   <param name="movie" value="flash/animacion.swf" />
  3.   <param name="quality" value="high" />
  4.   <param name="wmode" value="opaque" />
  5.   <param name="swfversion" value="9.0.45.0" />
  6.   <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
  7.   <param name="expressinstall" value="scripts/expressInstall.swf" />
  8.   <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
  9.   <!--[if !IE]>-->
  10.   <object type="application/x-shockwave-flash" data="flash/animacion.swf" width="500" height="500">
  11.     <!--<![endif]-->
  12.     <param name="quality" value="high" />
  13.     <param name="wmode" value="opaque" />
  14.     <param name="swfversion" value="9.0.45.0" />
  15.     <param name="expressinstall" value="scripts/expressInstall.swf" />
  16.     <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
  17.     <div>
  18.       <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
  19.       <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
  20.     </div>
  21.     <!--[if !IE]>-->
  22.   </object>
  23.   <!--<![endif]-->
  24. <script type="text/javascript">
  25. swfobject.registerObject("FlashID");

Sólo necesitas cambiar el nombre (animacion.swf en este caso) y el tamaño (si es diferente) dependiendo de lo que necesites.
__________________
Por fin.. tengo algo parecido a un blog
Y por lo visto ya estoy escribiendo...