Combined Code
frame 1 {
stop();
var Clothes = 2;
var Gag = 3;
}
movieClip 12 {
frame 1 {
this.gotoAndStop(_root.Clothes);
}
}
movieClip 22 {
frame 1 {
this.gotoAndStop(_root.Clothes);
}
}
movieClip 23 {
frame 1 {
this.gotoAndStop(_root.Body);
stop();
}
}
movieClip 29 {
frame 1 {
this.gotoAndStop(_root.Gag);
}
}
movieClip 32 {
frame 1 {
this.gotoAndStop(_root.Wings);
stop();
}
}
movieClip 42 {
frame 1 {
this.gotoAndStop(_root.Clothes);
}
}
movieClip 53 {
frame 1 {
this.gotoAndStop(_root.Clothes);
}
}
movieClip 54 {
frame 1 {
this.gotoAndStop(_root.Body);
stop();
}
}
movieClip 59 {
frame 1 {
this.gotoAndStop(_root.Gag);
}
}
movieClip 61 {
frame 1 {
this.gotoAndStop(_root.Wings);
stop();
}
}
button 67 {
on (press) {
if (_root.Clothes < 7) {
_root.Clothes += 1;
} else {
_root.Clothes = 1;
}
_root.Body1.Clothes1.gotoAndStop(_root.Clothes);
_root.Body2.Clothes2.gotoAndStop(_root.Clothes);
}
}
button 68 {
on (press) {
if (_root.Clothes > 1) {
_root.Clothes -= 1;
} else {
_root.Clothes = 7;
}
_root.Body1.Clothes1.gotoAndStop(_root.Clothes);
_root.Body2.Clothes2.gotoAndStop(_root.Clothes);
}
}
// unknown tag 88 length 69
button 71 {
on (press) {
if (_root.Gag < 5) {
_root.Gag += 1;
} else {
_root.Gag = 1;
}
_root.Gag1.gotoAndStop(_root.Gag);
_root.Gag2.gotoAndStop(_root.Gag);
}
}
button 72 {
on (press) {
if (_root.Gag > 1) {
_root.Gag -= 1;
} else {
_root.Gag = 5;
}
_root.Gag1.gotoAndStop(_root.Gag);
_root.Gag2.gotoAndStop(_root.Gag);
}
}
button 74 {
on (press) {
if (_root.Body < 2) {
_root.Body += 1;
} else {
_root.Body = 1;
}
_root.Body1.gotoAndStop(_root.Body);
_root.Body2.gotoAndStop(_root.Body);
}
}
button 75 {
on (press) {
if (_root.Body > 1) {
_root.Body -= 1;
} else {
_root.Body = 2;
}
_root.Body1.gotoAndStop(_root.Body);
_root.Body2.gotoAndStop(_root.Body);
}
}
button 77 {
on (press) {
if (_root.Wings < 2) {
_root.Wings += 1;
} else {
_root.Wings = 1;
}
_root.Wings1.gotoAndStop(_root.Wings);
_root.Wings2.gotoAndStop(_root.Wings);
}
}
button 78 {
on (press) {
if (_root.Wings > 1) {
_root.Wings -= 1;
} else {
_root.Wings = 2;
}
_root.Wings1.gotoAndStop(_root.Wings);
_root.Wings2.gotoAndStop(_root.Wings);
}
}