Ver Mensaje Individual
  #3 (permalink)  
Antiguo 20/06/2008, 16:52
x4v1er
 
Fecha de Ingreso: mayo-2008
Mensajes: 5
Antigüedad: 15 años, 11 meses
Puntos: 0
redimensionar web flash en cualquier resolucion de pantalla

pues este codigo html es el que uso par llamar los swf, pero no me funciona

Código HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<!-- saved from url=(0014)about:internet -->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Preload</title>
<script type="text/javascript" src="source/swfobject.js"></script>
<style type="text/css">
	
	/* hide from ie on mac \*/
	html {
		height: 100%;
		overflow: hidden;
	}
	
	#flashcontent {
		height: 100%;
	}
	/* end hide */

	body {
		height: 100%;
		margin: 0px;
		padding: 0px;
		background-color: #ffffff;
	}

</style>
</head>
<body>

	<div id="flashcontent">
		<strong>Nececitas actualizar tu Flash Player</strong>
		Es necesario tener el plugin de Flash 8 o superior para poder ver la pagina :) <code></code> 
		Descarga el plugin :D <a href="http://www.macromedia.com/go/getflashplayer">Descargar!</a>
	</div>
	
	<script type="text/javascript">
		// <![CDATA[
		
		var so = new SWFObject("icono_ballena.swf", "index", "100%", "100%", "8", "#52B50F");
		so.addVariable("icono_ballena", "flash ok");
		so.addParam("scale", "noscale");
		so.write("flashcontent");
		
		// ]]>
	</script>
	
</body>
</html> 
espero me puedan ayudar