Pause on a frame

Hello again,

Is there a way to pause a movie on a frame for 3 seconds? :-\

I’ve searched “setInterval function” but I can’t get an answer…

Thanks!

Neuhaus3000

Ok… got it !

this.stop();
pause = function () {
play();
clearInterval(pausei);
}
pausei = setInterval(pause, 10000);