Combined Code
frame 1 {
x = 0;
BadTSound = new Sound(this);
BadTSound.attachSound('badtouch');
SA = new Sound(this);
SA.attachSound('strokerace');
WhatIsLove = new Sound(this);
WhatIsLove.attachSound('whatislove');
FandF = new Sound(this);
FandF.attachSound('fireandflames');
stop();
}
movieClip 15 {
}
movieClip 18 {
}
movieClip 19 {
}
movieClip 20 {
}
movieClip 24 {
}
instance bigButton of movieClip 24 {
onClipEvent (release) {
_root.x += 1;
if (_root.x == 1) {
_root.WhatIsLove.stop();
_root.BadTSound.start(0, 99);
} else {
if (_root.x == 2) {
_root.BadTSound.stop();
_root.SA.start(0, 99);
} else {
if (_root.x == 3) {
_root.SA.stop();
_root.WhatIsLove.start(0, 99);
} else {
if (_root.x == 4) {
_root.WhatIsLove.stop();
_root.FandF.start(0, 99);
_root.fasthump._alpha = 100;
} else {
if (_root.x > 4) {
_root.FandF.stop();
_root.BadTSound.start(0, 99);
_root.x = 1;
_root.fasthump._alpha = 0;
}
}
}
}
}
}
}