Ver Mensaje Individual
  #6 (permalink)  
Antiguo 28/04/2010, 08:38
chestry
 
Fecha de Ingreso: noviembre-2009
Ubicación: monteria
Mensajes: 47
Antigüedad: 15 años
Puntos: 0
Respuesta: ajustar a la pantalla

Cita:
Iniciado por liepzingsystem Ver Mensaje
Código ActionScript:
Ver original
  1. Stage.scaleMode = "noScale";
  2. Stage.align = "";
  3. ancho = Stage.width;
  4. alto = Stage.height;
  5. fondo_mc.width = ancho;
  6. fondo_mc.height = alto;
  7. oscurecedor_mc.width = ancho;
  8. oscurecedor_mc.height = alto;
  9. var myObjectListener:Object = new Object();
  10. myObjectListener.onResize = actualiza;
  11. actualiza();
  12. function actualiza() {
  13.     ancho = Stage.width;
  14.     alto = Stage.height;
  15.     fondo_mc._width = ancho;
  16.     fondo_mc._height = alto;
  17.     oscurecedor_mc._width = ancho;
  18.     oscurecedor_mc._height = alto;
  19. }
  20. Stage.addListener(myObjectListener);

Código HTML:
Ver original
  1. <style type="text/css">
  2.    
  3.     html {
  4.         height: 100%;
  5.         overflow: hidden;
  6.     }
  7.    
  8.     #menuflash {
  9.         height: 100%;
  10.         background-color:#000000;
  11.     }
  12.  
  13.     body {
  14.         height: 100%;
  15.         margin: 0;
  16.         padding: 0;
  17.     }
  18.    
  19.     .adobe {
  20.     border: none;
  21.     }
  22.  

¡Suerte!

el codigo actionscrip lo coloco en el primer frame