flash newbie
flash newbie
Out of context: Reply #4
- Started
- Last post
- 6 Responses
- unfittoprint0
a little bit vague, but give this a try:
//first frame, 3 seconds gotoandstop frame 2, 5 seconds gotoandstop frame 3
interval1 = setInterval(function () {
clearInterval(interval1);
interval2 = setInterval(function () { clearInterval(interval2);
gotoAndStop(_currentframe+1);
}, 5000);
gotoAndStop(_currentframe+1);
}, 3000);
stop();