Here's a Puzzle for someone...
How would you define setInterval so that depending on which content is loaded into your movieclip, the delayed would be longer or shorter.
For example I have a movie clip with 3 text fields. Each text field loads text from a txt file. This movie clip has an animation (10 frames) and on frame 9 I have the setInterval command that acts as a pause so content can be displayed.
What I am looking to accomplish is using setinterval to, depending on what frame of my movie clip is displayed (some text fields are 2 lines of text others 1)display for a longer or shorter period of time.
I am using this code on frame 9
//
_root.animate = setInterval(_root.playMovieClip, 5000, this);
and I imagine I would just incorporate if then statements
Any takers?