Need replay without preloader

i have 2 scene
1 preloader “preloader”
2 main movie “main”

when movie ends i need to replay it again, but,
all movie loads with preloader and it start to load,
i need only replay “main” scene

i try this
gotoAndPlay(“main”,1);
and
_root.gotoAndPlay(3);
not work :sigh:

so wouldn’t you make it gotoAndPlay frame 2, skipping the first frame?

gotoAndPlay(“main”,2);
}

not work

What KevP said is the way to do it. Maybe you should post you fla so we can look at it.

i can`t show
but its not work -> gotoAndPlay(“main”,2);
maybe need to made preloader in separate movie or…

Have you tried giving it a fame label instead??

ye i set label, not work
in MF5 it works, in MX6 not :frowning:

select the first frame of Scene two. In the “Frame” panel, enter “start”.

then it’s simply

_root.gotoAndPlay(“start”);

if that doesn’t work, then you’ll have to provide an FLA for us to see or there is no helping you. That IS the method for going to a frame label.