The main video is contained in Scene 2, yet when I go and test it, it only plays the 40 frames of the preloader and stops.
I have a stop(); on one of the layers on frame 40 of the preloader because I want it to loop until the 1364th frame of the main Scene 2 is loaded. I have tried many things to get this to work, but it is stubborn and wont go. Would greatly appreciate opinions.
I have a stop(); on one of the layers on frame 40 of the preloader because I want it to loop until the 1364th frame of the main Scene 2 is loaded. I have tried many things to get this to work, but it is stubborn and wont go. Would greatly appreciate opinions.
I would take that out for sure. a stop action will not allow you to loop. It should be
gotoAndPlay(1);
that will cause the play head to loop back to the first frame of scene 1 and start playing again from there.
If you would like a copy of my preloader to look at, just leave your email address and I’ll send it over with instructions.