Ver Mensaje Individual
  #2 (permalink)  
Antiguo 28/10/2010, 14:18
Avatar de TMeister
TMeister
Crazy Coder
 
Fecha de Ingreso: enero-2002
Ubicación: En la Oficina
Mensajes: 2.880
Antigüedad: 22 años, 10 meses
Puntos: 193
Respuesta: problema con fotos externas y diseño liquido

Prueba con esto:

Estas cambiando el tamaño de movieclip solo en el evento de Resize ;)

Código actionscript:
Ver original
  1. import ImgLoop;
  2.  
  3. var fondoLoop:ImgLoop = new ImgLoop(this);
  4.  
  5. fondoLoop.push("imagen/principal/1.jpg");
  6. fondoLoop.push("imagen/principal/2.jpg");
  7. fondoLoop.push("imagen/principal/3.jpg");
  8. fondoLoop.push("imagen/principal/4.jpg");
  9.  
  10.  
  11. fondoLoop.setPosicion(0,0);
  12. fondoLoop.setTiempo(4000);//3 segundo
  13. fondoLoop.start();
  14.  
  15.  
  16. import mx.transitions.Tween;
  17. import mx.transitions.easing.*
  18. mov_tw=function(clip,prop,fin){
  19.     new Tween(clip,prop, Strong.easeOut,clip[prop],fin, 25, false);
  20. }
  21.  
  22. _root.fondo_mc.contenedor1._width = Stage.width;
  23. _root.fondo_mc.contenedor1._height = Stage.width*0.75;
  24.  
  25. Stage.align = "TL";
  26. Stage.scaleMode = "noScale";
  27. var miListener:Object = new Object();
  28. miListener.onResize = function() {
  29.  
  30.    
  31.    
  32.    
  33.         _root.fondo_mc.contenedor1._width = Stage.width;
  34.         _root.fondo_mc.contenedor1._height = Stage.width*0.75;
  35.  
  36. };
  37. Stage.addListener(miListener);
  38. miListener.onResize();