Search tutorials
Controlling loops across scenes
The first frame of your movie should contain a movie clip named 'speaker'. I used a still image containing movie notes, and the word 'MUSIC'. I named the layer 'Sound Control'.
Give frame 1 the following ActionScript:
speaker.stop();
song = new Sound();
songPlay = "true";
song.onSoundComplete = function() {
song.start();
speaker.play();
};
song.attachSound("your_loop");
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";
}
| » 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!