Ver Mensaje Individual
  #4 (permalink)  
Antiguo 23/04/2010, 22:25
liepzingsystem
 
Fecha de Ingreso: diciembre-2009
Ubicación: Guadalajara, Jalisco
Mensajes: 300
Antigüedad: 14 años, 10 meses
Puntos: 13
Respuesta: ajustar a la pantalla

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!