Skip to main content
gurmeets39816897
Participant
May 3, 2019
Answered

Test play animation from specific frame

  • May 3, 2019
  • 1 reply
  • 1385 views

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.

This topic has been closed for replies.
Correct answer JoãoCésar17023019

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

1 reply

JoãoCésar17023019
Community Expert
JoãoCésar17023019Community ExpertCorrect answer
Community Expert
May 3, 2019

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

gurmeets39816897
Participant
May 3, 2019

Thank you very much JoãoCésar​ ........ that was a great help.........

JoãoCésar17023019
Community Expert
Community Expert
May 3, 2019

You're welcome!