Movie clip added by addChild won't start immediately.
Hello. I am using Flash CS6.
I added 2 frames long movieclip by addChild, but it plays 3 frames.
Main timeline has 10 frames and I wrote this AS on frame 5.
var test= new test_lib();
test.x = stage.stageWidth/2;
test.y = stage.stageHeight/2;
Object(root).addChild(test);
but It starts to play one frame after added, so it starts to play not on frame 5,but on frame 6.
So it looks like playing "frame 1","frame 1","frame 2".
I need to start the movieclip immediately after adding it(I need it to start on frame 5) by addChild.
What should I do?
