Frame 1
introsound.onSoundComplete = function () {
_root.myTextBox = "Place Text Here";
};
rowdy = 1;
duhast = new Sound();
duhast.attachSound("sound00");
_root.duhast.start(0, 9999);
playing = true;
british = new Sound();
british.attachSound("sound01");
escape00 = new Sound();
escape00.attachSound("sound02");
gayfuel = new Sound();
gayfuel.attachSound("sound03");
jaws = new Sound();
jaws.attachSound("sound04");
psp = new Sound();
psp.attachSound("sound05");
twotowers = new Sound();
twotowers.attachSound("sound06");
yodel = new Sound();
yodel.attachSound("sound07");
war = new Sound();
war.attachSound("sound08");
valentino = new Sound();
valentino.attachSound("sound09");
bestaround = new Sound();
bestaround.attachSound("sound10");
ohyeah = new Sound();
ohyeah.attachSound("sound11");
Symbol 25 Button
on (press) {
if (rowdy >= 12) {
rowdy = 0;
}
if (rowdy == 0) {
stopAllSounds();
_root.duhast.start(0, 9999);
playing = true;
}
if (rowdy == 1) {
stopAllSounds();
_root.twotowers.start(0, 9999);
playing = true;
}
if (rowdy == 2) {
stopAllSounds();
_root.british.start(0, 9999);
playing = true;
}
if (rowdy == 3) {
stopAllSounds();
_root.escape00.start(0, 9999);
playing = true;
}
if (rowdy == 4) {
stopAllSounds();
_root.gayfuel.start(0, 9999);
playing = true;
}
if (rowdy == 5) {
stopAllSounds();
_root.ohyeah.start(0, 9999);
playing = true;
}
if (rowdy == 6) {
stopAllSounds();
_root.psp.start(0, 9999);
playing = true;
}
if (rowdy == 7) {
stopAllSounds();
_root.valentino.start(0, 9999);
playing = true;
}
if (rowdy == 8) {
stopAllSounds();
_root.jaws.start(0, 9999);
playing = true;
}
if (rowdy == 9) {
stopAllSounds();
_root.yodel.start(0, 9999);
playing = true;
}
if (rowdy == 10) {
stopAllSounds();
_root.war.start(0, 9999);
playing = true;
}
if (rowdy == 11) {
stopAllSounds();
_root.bestaround.start(0, 9999);
playing = true;
}
rowdy = rowdy + 1;
return(undefined);
}