10/01/2007, 14:55
|
| | Fecha de Ingreso: septiembre-2006
Mensajes: 1.193
Antigüedad: 18 años, 1 mes Puntos: 30 | |
Re: Referenciar a un movieClip creado dinamicamente disculpa lei rapido tu post, creo que esto es lo que querias, igual que los dos ultimos solo pegalo en un fotograma vacio:
Código:
for (var i = 0; i<10; i++) {
this.createEmptyMovieClip("mc"+i, i);
setProperty("mc"+i, _y, 0);
setProperty("mc"+i, _x, 0);
setProperty("mc"+i, _y, i*30);
var formato:TextFormat = new TextFormat();
formato.color = 0xFF0000;
this["mc"+i].createTextField("texto", this.getNextHighestDepth(), 0, 0, 200, 30);
this["mc"+i].texto.multiline = true;
this["mc"+i].texto.wordWrap = true;
this["mc"+i].texto.border = true;
this["mc"+i].texto.html = true;
this["mc"+i].onRelease = function() {
ruta = this;
this.texto.text = this._name;
this.texto.setTextFormat(formato);
trace(ruta._name);
};
}
; |