Hi All,
Please help me. I have a big issue with attachMovie() function.
I created a movieclip which was called container_mc. I had another movieclip which contained a dynamic text called MyText. I set linkId for MyText.
I used:
var temp_mc:MovieClip = container_mc.attachMovie("MyText", "txt", 1);
temp_mc.text = "Hello World";
temp_mc._x = 0;
temp_mc._y = 0;
temp_mc._width = 100;
temp_mc._height = 100;
But on screen, it didn't display text. I'm stuck there.
Thanks.



