Hi all,
I have 2 swf movies: “Title swf” and “Intro swf”.
From the Title page the user clicks on a button to go to the Intro page. A return button then takes the user back to the Title page before proceeding. What I am trying to do is ,on return, to go to the last frame (135) of the Title page movie, and skip out the preceeding frames which the user has already seen.
I have tried both the following scripts but ‘on returning’ to the Title page it still goes to frame 1. What am I doing wrong?
on (release) {
loadMovieNum(“Title.swf”, 135);
}
on (release) {
loadMovieNum(“Title.swf”, 0);
}
gotoAndPlay(135);
Thanks