Hi, I need to know how to (in a movie clip) Delay the first frame for about 5 seconds, then after the delay...play frames 2-5, then on frame 5 gotoandplay frame 1. I read the post that was kinda similiar but was for a button and said:
my_btn.onRelease = function(){
gotoAndStop(...);
wait = setInterval(paused,5000);
function paused(){
clearInterval(wait);
gotoAndStop(...)
}
}
But im not sure how I would modify this so it would work for me. I am not using a button. Thank you for your time and help.
--CaSpiRE
my_btn.onRelease = function(){
gotoAndStop(...);
wait = setInterval(paused,5000);
function paused(){
clearInterval(wait);
gotoAndStop(...)
}
}
But im not sure how I would modify this so it would work for me. I am not using a button. Thank you for your time and help.
--CaSpiRE