Combined Code
frame 1 {
stopAllSounds();
myUSSR = new Sound(_root);
myUSSR.attachSound('ussr');
myUSSR.start(0, 999);
myRasp = new Sound(_root);
myRasp.attachSound('rasputin');
myPanzer = new Sound(_root);
myPanzer.attachSound('panzer');
mySentai = new Sound(_root);
mySentai.attachSound('jetman');
stop();
}
button 9 {
on (release) {
nextFrame();
}
}
movieClip 45 {
}
frame 2 {
stopAllSounds();
myRasp = new Sound(_root);
myRasp.attachSound('rasputin');
myRasp.start(0, 999);
stop();
}
frame 3 {
stopAllSounds();
myPanzer = new Sound(_root);
myPanzer.attachSound('Panzer');
myPanzer.start(0, 999);
stop();
}
frame 4 {
stopAllSounds();
mySentai = new Sound(_root);
mySentai.attachSound('jetman');
mySentai.start(0, 999);
stop();
}
frame 5 {
gotoAndStop(1);
}