Como lo hago para que mi pelicula principal .swf que esté en la pagina HTML siempre quede centrada al tamaño de la ventana del explorador del usuario?
Un saludo y muchas gracias a todos
Siscu
| |||
Aki hay un ejemplo: <html> <head> <title>EXYME</title> </head> <body> <div align="center"> <-------abres el tag div <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="100%" height="100%"> <param name="movie" value="swf/plantilla.swf"> <param name="quality" value="high"> <param name="base" value="swf/"><param name="SCALE" value="exactfit"> <embed src="swf/plantilla.swf" width="100%" height="100%" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" base="swf/" scale="exactfit"></embed> </object> </div><---------- cierras el tag div </body> </html> Saludos |
| ||||
OK muchas gracias.... no entiendo mucho de HTML pero m'imagino que habré de sustituir el nombre de "plantilla.swf" por el nombre de mi archivo .swf principal, no? GRacias de nuevo
__________________ PRONTO NOS VEREMOS LAS CARAS - - www.graphband.es.vg - - :) |
| |||
si ademas lo queres alinear verticalmente podes hacer que el index este compuesto por 3 frames a los cuales le das el tamaño 100 %, tamañodetupeli, 100% esto ajustara tu pelicula verticalmente y con lo que respondio ciscoman82 lo alineas horizontalmente <html> <head> <title>douglasarthur</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <script language="JavaScript"> <!-- function MM_reloadPage(init) { //reloads the window if Nav4 resized if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) { document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }} else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload(); } MM_reloadPage(true); // --> </script> </head> <frameset rows="*,485,*" framespacing="0" frameborder="0" border="0"> <frame src="topframe.htm" name="topframe" marginwidth="0" marginheight="0" framespacing="0" frameborder="0" scrolling="NO" border="0" noresize> <frame src="midframe.htm" name="midframe" marginwidth="0" marginheight="0" framespacing="0" frameborder="0" scrolling="NO" border="0" noresize> <frame src="botframe.htm" name="botframe" marginwidth="0" marginheight="0" framespacing="0" frameborder="0" scrolling="NO" border="0" noresize> </frameset> <noframes> <body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0 bgcolor="White"> </body> </noframes> aca le di una altura de 485 px tenes que crear los archivos topframe.htm, midframe.htm(pagina donde estara tu animacion) y botframe.htm en el midframe.htm pone el codigo que te dio ciscoman82 espero haberte ayudado suerte!! |