Problem animating an attached mc

Hi everybody,

I have a mc in the library, with an ID = dada.
I use this code to attach it to a mc, and I want to run an animation inside the attached MC. It does not work, and I don’t understand what I am doing wrong.
Could you please help me understand?


this.createEmptyMovieClip("holder", 2);
holder.attachMovie("dada", "dada_mc", 3);
holder.dada_mc.gotoAndPlay(2);

Thanks a lot,

Ok, I figured out: I had a stop(); in the first frame of the duplicated movie. That’s why it wasn’t working.