Skip to main content
Inspiring
April 23, 2006
Question

simple question, how go back to previous movie?

  • April 23, 2006
  • 1 reply
  • 151 views
HI! I have nested movie clips. the last click has a button that went clicked
it will move the previous movie play head to 2 how do we make the path?

eg. scene1
movie1
movie2
movie3 --> button here will move movie 2 play
head to 2.



on (release) {
play(2);

}

Paul


This topic has been closed for replies.

1 reply

Inspiring
April 23, 2006
Paul wrote:
> HI! I have nested movie clips. the last click has a button that went
> clicked it will move the previous movie play head to 2 how do we make the
> path?
> eg. scene1
> movie1
> movie2
> movie3 --> button here will move movie 2 play
> head to 2.
>
>
>
> on (release) {
> play(2);
>
> }
>
> Paul

HI! ITs ok I got it. I just insert instance names for each movie clip then
use the following.

on (release) {
_root.movie1.movie2.play(2);

}

Thanks all who have read the post.
Paul