I have designed my movie so the Intro is a movie clip and the portfolio is a movie clip. I have a "home" button inside the portfolio movie (inside a logo movie - for animation) which will take the user to the last frame of the intro section (skip the intro) when the button is clicked. BUT it won't work
I named the intro movie (intromovie) and used this actionscript for the home button
on(release) {
_root.intromovie.gotoAndPlay(58);
}
BUT IT WILL NOT WORK I also tried just "intromovie.gotoAndPlay(); etc and every other variation I can think of
the only actionscript that will work is
on(release) {
_root.play();
} -- which plays the entire intro again (what I am trying to avoid.)
CAN anyone please help me??
Thanks
GT
I named the intro movie (intromovie) and used this actionscript for the home button
on(release) {
_root.intromovie.gotoAndPlay(58);
}
BUT IT WILL NOT WORK I also tried just "intromovie.gotoAndPlay(); etc and every other variation I can think of
the only actionscript that will work is
on(release) {
_root.play();
} -- which plays the entire intro again (what I am trying to avoid.)
CAN anyone please help me??
Thanks
GT