I want to make a load screen without percenage & load bar. I’m not sure how to set this up. please click the link and take notice of the loading and tell how it was done?
thanks
The Link
so u wanna make ur own load movie basically ok
insert a loader layer at the top and insert these actions
if (_framesloaded >= _totalframes) {
gotoAndPlay (2);
} else {
gotoAndPlay(1);
}
{
put that in the first frame in the 2nd fram put a blank keyframe
move ur movie over to the 2nd keyfram on all the other layers
in the 1st frame of the loader layer put ur movie the one u put a link to is just simple each frame is a new letter.
press CTRL+enter then CTRL+enter again and it will work
thanks
did it work once id submitted that thread i thought ahh but wot if he’s using different scenes. if u are heres the code for that
if (_framesloaded >= _totalframes) {
gotoAndPlay ("Scenename", "1"); // I think even nextScene(); should work
} else {
gotoAndPlay(1);
}
-Tom