Answered
Jump To Frame and Play in Separate Movie
I have two completely separate .swf files being loaded into a
web page. MovieA.swf is set to play on load and movieB.swf is set
to be stopped on load.
On the click of a button within movieA, I'm trying to get movieA.swf to tell movieB.swf to go to a certain frame and play.
I've been searching on Google for hours now and not really found anything that works.
Within movieA I've tried the following:
on (release) {
gotoAndPlay("_root.movieB", "15");
}
OR
on (release) {
gotoAndPlay("movieB", "15");
}
When I do this it just seems to play movieA. Note I also haven't found a way to "name" a movie. So I'm just calling the file name (movieA.swf) and I realize that's probably not right.
It seems like it would be a common thing to do... anyone have any code that might work?
Thank you,
Raym
On the click of a button within movieA, I'm trying to get movieA.swf to tell movieB.swf to go to a certain frame and play.
I've been searching on Google for hours now and not really found anything that works.
Within movieA I've tried the following:
on (release) {
gotoAndPlay("_root.movieB", "15");
}
OR
on (release) {
gotoAndPlay("movieB", "15");
}
When I do this it just seems to play movieA. Note I also haven't found a way to "name" a movie. So I'm just calling the file name (movieA.swf) and I realize that's probably not right.
It seems like it would be a common thing to do... anyone have any code that might work?
Thank you,
Raym
