Answered
I need a timed pause in an animate project
Working in Animate CC version 18 on PC. How can I create a timed (say 2 seconds) pause.
Working in Animate CC version 18 on PC. How can I create a timed (say 2 seconds) pause.
If this is AS3:
stop();
setTimeout(play, 2000);
If this is HTML5 Canvas:
this.stop();
setTimeout(this.play.bind(this), 2000);
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.