PDA

View Full Version : Button actions across levels and lopping sounds


tianyu84
04-19-2002, 10:52 AM
My flash movie consist of a base movie (Level 0) and a few other movies loaded onto the base. How do I link the a button in Level 1 to make a movie (which has been stopped) in Level 3 to continue playing or jump to frame 46? :(

Also, I've some difficulties in inserting a looping sound that loops indefinitely. Is it recommended to load it from another sound-only movie or attach it at the 'base'. Also, how do I make it loop forever? I know how to make it loop once, twice, a thousand time... but forever? :eek:

From
Verse (who is now vigorously hitting the F1 (Help) button.. hehe) :confused:

Jesse
04-21-2002, 12:55 AM
_level3.gotoAndStop(46);
// or
_level3.someMovieClip.gotoAndStop(46);
You're also better of using frame labels instead of frame numbers (which can be buggy).

I can't help with the sound question sorry.