Copy link to clipboard
Copied
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!
just delete the stop()
Copy link to clipboard
Copied
just delete the stop()
Copy link to clipboard
Copied
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.
Copy link to clipboard
Copied
that's the wrong stop, then.
Copy link to clipboard
Copied
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!
Copy link to clipboard
Copied
you're welcome. (and good job not giving up!)
Copy link to clipboard
Copied
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.