-
when i test the movie it comes up in the output box:
"More than 200000 actions were executed in one action list.
This is probably an infinite loop.
Further execution of actions has been disabled in this movie."
and just keeps looping through the scenes, and doesnt stop for some reason, even though i put a stop command on it.
here is how ive done it...
on the movie scence i have one movie clip inside with 4 layers...
2 layers
1.Text frames: 1 3 5 (text on all frames)
2.Actions frames: 123456
2.actions
frame1
If Frame Is Loaded (Movie, 31)
Go to and Play (Preloader, 3)
End Frame Loaded
frame2
Go to and Play (Preloader, 1)
frame3
If Frame Is Loaded (Movie, 62)
Go to and Play (Preloader, 5)
End Frame Loaded
frame4
Go to and Play (Preloader, 3)
frame5
If Frame Is Loaded (Movie, 93)
Go to and Play (Preloader, 1)
End Frame Loaded
frame6
Go to and Play (Preloader, 5)
can anybody see where i have gone wrong, please help because this is quite urgent. thankyou for your patience.
-
Frame 5 - if the target frame isnt loaded, goes on to frame 6 - which in turn sends back to frame 5.
If the target frame is loaded - it goes to frame 1.
At a guess frame 5 should read
If Frame Is Loaded (Movie, 93)
Go to and Play (Movie, 1)
End Frame Loaded
As in, don't loop back to preload frame 1, but movie frame 1. Assuming your 2 scenes are Preload (scene 1 ) and Movie (scene 2).
As it is, you've put it in a permanent loop, after 20000 Flash gives up.
RevCo