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

How do I play movie clips automatically (with scene navigation)?

Community Beginner ,
Dec 09, 2023 Dec 09, 2023

Hello. I am brand new to Adobe Animate, though I've been using other Adobe software for 15+ years. I'm trying to create a basic motion comic where it opens a page, an action happens on the screen, then you click to go to the next page. Rinse and repeat for each page of the comic.

 

I got the basic scene navigation set up by following this tutorial. However, in that video, they play the movie clips on each page by hitting an individual play button that is separate from the "Next Page" button. How could I modify this setup so that the little black ball would move on its own rather than requiring the click on the play button? I'm hoping to make it so the only required interactivity would be clicking the "Next Page" button.

 

I'm guessing the "this.stop()" command they are using is what is preventing it from playing, but I can't wrap my head around how I would change it to do what I want. Any advice? Thanks!

TOPICS
Code , How to , Other , Timeline
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 , Dec 09, 2023 Dec 09, 2023

just delete the stop()

Translate
Community Expert ,
Dec 09, 2023 Dec 09, 2023

just delete the stop()

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 ,
Dec 09, 2023 Dec 09, 2023

Well the problem with deleting the stop() is that when you do that, it no longer waits for you to press the "Next Page" button and it just cycles through the scenes automatically. What I'm hoping to do is play the movie clip when you get to the page, then wait for the user to click that button before it goes to the next page. So it seems like it still needs the stop() incorporated in there somehow.

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 ,
Dec 09, 2023 Dec 09, 2023

that's the wrong stop, then.

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 ,
Dec 09, 2023 Dec 09, 2023

Ahhhh yeah, I just saw what you meant! I was mixing up the fact that there is a stop out on the main scene navigation and a stop nested inside of the movie clip's actions. The one I had to delete was the one inside of the movie clip.

It works as I intended now. Thank you!

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 ,
Dec 09, 2023 Dec 09, 2023

you're welcome. (and good job not giving up!)

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
New Here ,
Aug 21, 2024 Aug 21, 2024
LATEST

You can remove the `this.stop()` command to let the animation play automatically. If you want the animation to finish before allowing the "Next Page" button to be clicked, you could add a stop command at the end of the animation instead.

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