Search tutorials
Now, to carry the loop across to another scene without interruption, copy the frames and objects you created onto another scene. Be sure to keep the layers intact.
In the 'Sound Control' layer at Frame 1, change the Actionscript to the following:
if(songPlay == "true"){
song.onSoundComplete = function() {
song.start();
speaker.play();
};
};
playButton.onRelease = function() {
if(songPlay == "false"){
song.start();
speaker.play();
songPlay = "true";
}
song.onSoundComplete = function() {
song.start();
};
};
stopButton.onRelease = function () {
song.stop();
speaker.stop();
songPlay = "false";
}
Create a link between your scenes and test the movie. The song should stream across from one layer to the next without breaking loop, and the controls should continue to control the sound.
Hopefully, this has helped someone. If you have any problems or questions, feel free to e-mail me at steve@xixao3d.com.
Enjoy :)
- Steve "Xixao" Melcher
| » Level Advanced |
|
Added: 2004-10-02 Rating: 4 Votes: 4 |
| » Author |
| Steve "Xixao" Melcher Xixao3D Productions http://www.xixao3d.com steve@xixao3d.com |
| » Download |
| Download the files used in this tutorial. |
| Download (0 kb) |
| » Forums |
| More help? Search our boards for quick answers! |
-
You must have javascript enabled in order to post comments.


Comments
There are no comments yet. Be the first to comment!