Combined Code
frame 1 {
stop();
var Clothes = 1;
var Body = 1;
var Gag = 1;
}
movieClip 2 {
}
movieClip 6 {
frame 1 {
this.gotoAndStop(_root.Body);
}
}
movieClip 19 {
}
movieClip 23 {
frame 1 {
this.gotoAndStop(_root.Clothes);
}
}
movieClip 25 {
}
movieClip 28 {
frame 1 {
this.gotoAndStop(_root.Body);
}
}
movieClip 36 {
frame 1 {
this.gotoAndStop(_root.Gag);
}
}
movieClip 39 {
frame 1 {
this.gotoAndStop(_root.Body);
}
}
movieClip 51 {
}
movieClip 55 {
frame 1 {
this.gotoAndStop(_root.Clothes);
}
}
button 62 {
on (press) {
if (_root.Clothes < 14) {
_root.Clothes += 1;
} else {
_root.Clothes = 1;
}
_root.Clothes1.gotoAndStop(_root.Clothes);
_root.Clothes2.gotoAndStop(_root.Clothes);
}
}
button 63 {
on (press) {
if (_root.Clothes > 1) {
_root.Clothes -= 1;
} else {
_root.Clothes = 14;
}
_root.Clothes1.gotoAndStop(_root.Clothes);
_root.Clothes2.gotoAndStop(_root.Clothes);
}
}
// unknown tag 88 length 69
button 66 {
on (press) {
if (_root.Body < 2) {
_root.Body += 1;
} else {
_root.Body = 1;
}
_root.Body1.gotoAndStop(_root.Body);
_root.Body2.gotoAndStop(_root.Body);
_root.Wings.gotoAndStop(_root.Body);
}
}
button 67 {
on (press) {
if (_root.Body > 1) {
_root.Body -= 1;
} else {
_root.Body = 2;
}
_root.Body1.gotoAndStop(_root.Body);
_root.Body2.gotoAndStop(_root.Body);
}
}
button 69 {
on (press) {
if (_root.Gag < 7) {
_root.Gag += 1;
} else {
_root.Gag = 1;
}
_root.Gag1.gotoAndStop(_root.Gag);
_root.Gag2.gotoAndStop(_root.Gag);
}
}
button 70 {
on (press) {
if (_root.Gag > 1) {
_root.Gag -= 1;
} else {
_root.Gag = 7;
}
_root.Gag1.gotoAndStop(_root.Gag);
_root.Gag2.gotoAndStop(_root.Gag);
}
}
button 72 {
on (press) {
if (_root.Wings._alpha == 100) {
_root.Wings._alpha = 0;
} else {
_root.Wings._alpha = 100;
}
}
}