1
Community Beginner
,
/t5/animate-discussions/animate-html5-canvas-how-to-pause-frame-for-10-seconds-and-then-automatically-continue-animation/td-p/10652946
Oct 06, 2019
Oct 06, 2019
Copy link to clipboard
Copied
I can't seem to figure out how to pause the animation for 10 seconds at a given frame and after 10 seconds the animation continues. I can get it to stop using:
this.stop();
but how do I add a time of 10 seconds to start again?
Thanks.
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
1 Correct answer
Community Expert
,
Oct 06, 2019
Oct 06, 2019
Hi.
Use the setTimeout method.
Like this:
var target = this; // the target Movie Clip instance you want to pause
target.stop();
window.setTimeout(function()
{
target.play();
}, 1000 * 10); // time in milliseconds. Each second is equal to 1000 milliseconds
Regards,
JC
Community Expert
,
/t5/animate-discussions/animate-html5-canvas-how-to-pause-frame-for-10-seconds-and-then-automatically-continue-animation/m-p/10652961#M197063
Oct 06, 2019
Oct 06, 2019
Copy link to clipboard
Copied
Hi.
Use the setTimeout method.
Like this:
var target = this; // the target Movie Clip instance you want to pause
target.stop();
window.setTimeout(function()
{
target.play();
}, 1000 * 10); // time in milliseconds. Each second is equal to 1000 milliseconds
Regards,
JC
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
12222305
AUTHOR
Community Beginner
,
/t5/animate-discussions/animate-html5-canvas-how-to-pause-frame-for-10-seconds-and-then-automatically-continue-animation/m-p/10652971#M197064
Oct 06, 2019
Oct 06, 2019
Copy link to clipboard
Copied
Perfect. Thank you.
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Community Expert
,
LATEST
/t5/animate-discussions/animate-html5-canvas-how-to-pause-frame-for-10-seconds-and-then-automatically-continue-animation/m-p/10654803#M197080
Oct 07, 2019
Oct 07, 2019
Copy link to clipboard
Copied
You're welcome!
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

