darkslayert 0 Denunciar post Postado Outubro 11, 2011 Boas pessoal. É assim eu fiz um site todo em flash as2.0 com as medidas de 980px por 850px. É claro que na resolução do meu pc que é(1280*1024) eu vejo ele direitinho , o problema é ver ele em resolução mais pequenas, eu queria que ele se auto redimenciona-se para essas resoluções. Ja segui varios tutoriais mas sem êxito tais como Clique aqui Clique aqui este é o index <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Teppan</title> <script src="Scripts/swfobject_modified.js" type="text/javascript"></script> <style type="text/css"> <!-- #flash1 { height: 850px; width: 980px; margin-top: 0; margin-right: auto; margin-bottom: 0; margin-left: auto; } --> </style> </head> <body> <div class="flash" id="flash1"> <object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="980px" height="850px"> <param name="movie" value="25244.swf" /> <param name="quality" value="high" /> <param name="wmode" value="opaque" /> <param name="swfversion" value="8.0.35.0" /> <!-- 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. --> <param name="expressinstall" value="Scripts/expressInstall.swf" /> <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. --> <!--[if !IE]>--> <object type="application/x-shockwave-flash" data="25244.swf" width="100%" height="100%"> <!--<![endif]--> <param name="quality" value="high" /> <param name="wmode" value="opaque" /> <param name="swfversion" value="8.0.35.0" /> <param name="expressinstall" value="Scripts/expressInstall.swf" /> <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. --> <div> <h4>Content on this page requires a newer version of Adobe Flash Player.</h4> <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> </div> <!--[if !IE]>--> </object> <!--<![endif]--> </object> </div> <script type="text/javascript"> <!-- swfobject.registerObject("FlashID"); //--> </script> </body> </html> e inseri na primeira layer do fla este código Stage.align = "TL"; Stage.scaleMode = "noScale"; sizeListener = new Object(); sizeListener.onResize = function() { centered._x = Stage.width/2 centered._y = Stage.height/2 centered._width = Stage.width * .5 }; Stage.addListener(sizeListener); Mas não funciona, estarei a fazer algo errado? Por favor uma ajuda Compartilhar este post Link para o post Compartilhar em outros sites
marcos.cardoso 10 Denunciar post Postado Outubro 13, 2011 Tira Stage.scaleMode = "noScale"; Compartilhar este post Link para o post Compartilhar em outros sites