Problem with a textField

Hello everybody,

I have a problem with a textField inside a movieclip that I am attaching using attachMovie(). The MC has a dinamic textField that I want to be able to give text to dinamically, but once the movie is attached to an empty one on stage, the textField does not show the text.

Here is the code I am using:

this.createEmptyMovieClip(“holder_mc”, this.getNextHighestDepth());
holder_mc._x = 250;
holder_mc._y = 200;
holder_mc.attachMovie(“dada”, “my_mc”, this.getNextHighestDepth());
holder_mc.dada_txt.text = “Coco”;

But “Coco” is never shown…

Can anyone help me?

Thanks,
Peace,
Cayo Hueso