jalbertson
Technical User
I have scene with two layers on the bottom layer is a movie that is stopped. On the top layer I have my buttons that I want to control the movie. I want the movie to stay paused until someone rolls over one of the buttons and then it jumps to a different frame in the movie. movie_scene-1 is my movies name, and movie-1 is the movies instance name. Any help here would be appreciated.
Thanks in advance,
Justin
Code:
on(rollOver) {
stop();
movie_scene-1;gotoAndStop(4);
}
on(rollOut) {
play();
}
on(release) {
getURL("[URL unfurl="true"]http://www.google.com/");[/URL]
}
Thanks in advance,
Justin