Ver Mensaje Individual
  #4 (permalink)  
Antiguo 23/04/2010, 06:24
Tr4p0
 
Fecha de Ingreso: enero-2005
Mensajes: 10
Antigüedad: 20 años, 1 mes
Puntos: 0
Respuesta: Consulta Imagenes

Mira hice esto:

Código actionscript:
Ver original
  1. stop();
  2. var mcLoader:MovieClipLoader = new MovieClipLoader();
  3. ruta = "/slide/web/";
  4. ext = ".jpg";
  5. total = "6";
  6. i = 1;
  7. mcLoader.addListener(this);
  8. mcLoader.loadClip(ruta+i+ext, "contenedor");
  9.  
  10. function onLoadInit(mc:MovieClip) {
  11.     trace("onLoadInit: " + mc);
  12. };
  13. if (i<total){
  14.         i++;
  15.         loadMovie(ruta+i+ext, "contenedor");
  16. };
  17. if (i>total){
  18.     gotoAndStop(23);
  19. };


Pero en el contenedor solo me queda la IMG 2.jpg y no pasa al fotograma 23 hice cualquier cosa?