ssalus
05-04-2004, 01:30 PM
I have a button that is on the main level and tells the movie clip with the instance named intro_movie to play on release. It also sets a variable. This all works fine.
on (release) {
_root.intro_movie.play()
c = "1";
}
From my main time line I want to tell the same movie clip to play and have used this code:
if (c == "1") {
_root.intro_movie.play()
}
but it will not play the clip. I have tried using gotoAndPlay() and putting in different frame numbers in the () and it just goes to that frame and stops... any suggestions?
on (release) {
_root.intro_movie.play()
c = "1";
}
From my main time line I want to tell the same movie clip to play and have used this code:
if (c == "1") {
_root.intro_movie.play()
}
but it will not play the clip. I have tried using gotoAndPlay() and putting in different frame numbers in the () and it just goes to that frame and stops... any suggestions?