Jumping to specific location?

:yoshi: How would I jump from one swf to another swf to a specific scene and frame?

I had an attempt with:

on(release) {
loadMovie(“movie2.swf”, “menu”, 70, _root.rt);

}

but to no avail… anyone know the code?

on(release) {
loadMovie(“movie2.swf”,_root.rt);

}

this can only get me to the begining of the movie,

Thanks in advance,

Cle

I don’t think you can reach a specific frame by loadMovie, what i would do is

on(release) {
loadMovie("movie2.swf",  _root.rt);
_root.rt.gotoAndPlay (70)
}

Ubik