Robert
February 18th, 2003, 07:33 PM
Problem is simple and anoying.
I have simple MC (15 frames, name: TestMov)
On the first frame of this movie I have stop();
I want to duplicate this movie (duplicatemoviclip) and to start playing new movie from frame 2.
This is my button code:
on (release) {
TestMov.duplicateMovieClip("TestMov1", 1);
TestMov1._y = TestMov1._y + 100;
TestMov1.gotoAndPlay(2);
}
After TestMov1.gotoAndPlay(2) is executed, script just stops on second frame, doesn't continue to the next frame. ??????????????????????
If I remove first frame stop(), then gotoAndPlay(2) is working, (start from 2 and continue on the next frame, and so on...)
I'm sure I did this before and I didn't have any problems. What I'm doing wrong.
Here is example.
I have simple MC (15 frames, name: TestMov)
On the first frame of this movie I have stop();
I want to duplicate this movie (duplicatemoviclip) and to start playing new movie from frame 2.
This is my button code:
on (release) {
TestMov.duplicateMovieClip("TestMov1", 1);
TestMov1._y = TestMov1._y + 100;
TestMov1.gotoAndPlay(2);
}
After TestMov1.gotoAndPlay(2) is executed, script just stops on second frame, doesn't continue to the next frame. ??????????????????????
If I remove first frame stop(), then gotoAndPlay(2) is working, (start from 2 and continue on the next frame, and so on...)
I'm sure I did this before and I didn't have any problems. What I'm doing wrong.
Here is example.