Ver Mensaje Individual
  #2 (permalink)  
Antiguo 15/01/2010, 16:27
franjalafa
 
Fecha de Ingreso: julio-2009
Mensajes: 52
Antigüedad: 15 años, 4 meses
Puntos: 4
De acuerdo Respuesta: cargar imagenes y hacerlas boton

Saludos para mi mismo,

La solución a lo anterior la pongo aqui, por si alguien lo necesita, lo que esto hace, carga las imagenes y cada imagen es un boton, asi puedo saber la instacia que doy click, gracias.

Código as:
Ver original
  1. for (i=0; i<tot_reg; i++) {
  2.         var mcs:MovieClip = thumb_mc.duplicateMovieClip("mc"+i, i);
  3.         mcs._x = 150*posX+50;
  4.         mcs._y = 100*posY+25;
  5.         posX++;
  6.         if (posX == col) {
  7.             posX = 0;
  8.             posY++;
  9.         }
  10.         listener.onLoadInit = function(target:MovieClip):Void  {
  11.             target._width = 100;
  12.             target._height = 100;
  13.         };
  14.         cargarImagen.addListener(listener);
  15.         var thumb:MovieClip = mcs.createEmptyMovieClip("thumb", this.getNextHighestDepth());
  16.         cargarImagen.loadClip(foto_array[i],thumb);
  17.         var img:MovieClip = otro.createEmptyMovieClip("j", this.getNextHighestDepth());
  18.         mcs.onRelease = function(event) {
  19.             trace (this._name);
  20.         };
  21.     }

Lo damos por cerrado