Copy link to clipboard
Copied
I am working on educational animation. The animation has crossed 4000 frames. I have added some masking effect at around 4000th frame. For test running it, I have to start from 1st frame.
How I can directly start my test run from 4000th frame? Kindly help me out.
1 Correct answer
Hi.
You can use a bit of code for this.
In the first frame of the main timeline, write one of the following in the Actions Panel:
AS3 documents
gotoAndPlay(4000);
HTML5 Canvas documents
this.gotoAndPlay(3999);
I hope this helps.
Regards,
JC
Copy link to clipboard
Copied
Hi.
You can use a bit of code for this.
In the first frame of the main timeline, write one of the following in the Actions Panel:
AS3 documents
gotoAndPlay(4000);
HTML5 Canvas documents
this.gotoAndPlay(3999);
I hope this helps.
Regards,
JC
Copy link to clipboard
Copied
Thank you very much JoãoCésar​ ........ that was a great help.........
Copy link to clipboard
Copied
You're welcome!

