I’ve got a series of flash movies that I’m playing. This is how I currently have it structured:
Level0 - A menu is loaded, I’ll call this the container
Level1 - when a button is clicked on the menu, a movie is loaded using loadMovieNum at level1
Level2 - when that same menu button is clicked, some control buttons are loaded on level2. This movie (control.swf) has a music loop also that I want to have play through the whole series of movies.
Here’s the problem. When the first movie, called scene1, is loaded, everything works great. I have a sound object called “vo” that attaches and plays a voice-over file. At the end of scene1, I use loadMovieNum again to load scene2 into the same level. Again, a new sound object called vo with a new voice-over file attached. But this time the vo file doesn’t play. It plays when I just play the scene by it’s self, but when loaded from scene1, it’s just silent. Any ideas?