Preloaders

:q: i cannot figure out how to use preloaders. in my movie i have 103 frames, could you fill in the blanks of this code and tell me what is wrong? thank you

if (_framesloaded>=_totalframes) {
gotoAndPlay (2);
} else {
gotoAndPlay (1);
}

there are no blanks! That code should be put into frame 2.
Frame 1 should be empty, the code should be in frame 2 and the animation and stuff should be in frame 3+
oh… didn’t notice that! you have to change the “2” to “3”
gotoAndPlay(2); change to gotoAndPlay(3);

Syko