createTextField [help]
createTextField [help]
Out of context: Reply #1
- Started
- Last post
- 12 Responses
- frankbb0
this should work...
for (i=1; i<=5; ++i) {
this.createEmptyMovieClip("mc"+i... i);
this["mc"+i].createTextField("tx... i+100, 0, 0, 300, 100);
myformat.color = 0xff0000;
this["mc"+i].txt.text = "humm";
txt.setTextFormat(myformat);
this["mc"+i]._y = 30*i;
}