|
|
Question : Flash - Pause for 10 seconds
|
|
Hello,
I am using Flash MX 2004.
I have a movie that is 30 seconds long. Is there a way to make frame 30 pause for 30 seconds before moving onto frame 1??
Thanks in advance.
|
Answer : Flash - Pause for 10 seconds
|
|
alternatively use setInterval
pauseFrame = function (lat) { this.stop(); this.clearInternalInterval = function() { clearInterval(this.timeInt); delete this.timeInt; delete this.clearInternalInterval; this.play(); }; this.$timeInt = setInterval(this, "clearInternalInterval", lat); }; _root.pauseFrame(30000);
If memory serves me corectly, this was a OBCT solution.
blu.
|
|
|
|
|