Ver Mensaje Individual
  #4 (permalink)  
Antiguo 10/01/2007, 14:35
Rizzo
 
Fecha de Ingreso: septiembre-2006
Mensajes: 1.193
Antigüedad: 17 años, 5 meses
Puntos: 30
Re: Referenciar a un movieClip creado dinamicamente

ó asi con puro codigo pon esto en un fotograma vacio:


Código:
for (var i = 0; i<10; i++) {
	this.createEmptyMovieClip("mc"+i, i);
	setProperty("mc"+i, _y, random(800));
	setProperty("mc"+i, _x, random(800));
	this["mc"+i].createTextField("texto", this.getNextHighestDepth(), 0, 0, 200, 30);
	this["mc"+i].texto.text = "Amparo"+i;
}