Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Test play animation from specific frame

Community Beginner ,
May 03, 2019 May 03, 2019

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.2K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , May 03, 2019 May 03, 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

Translate
Community Expert ,
May 03, 2019 May 03, 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

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
May 03, 2019 May 03, 2019

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

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
May 03, 2019 May 03, 2019
LATEST

You're welcome!

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines