1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
| on (release) {
switch (_root.c1) {
case 1 :
_root.l1.gotoAndPlay(2);
_root.l2.gotoAndPlay(4);
_root.l3.gotoAndPlay(4);
_root.l4.gotoAndPlay(4);
//color = new color(_root.l1);
//color.setRGB(0x000000);
break;
case 2 :
_root.l1.gotoAndPlay(4);
_root.l2.gotoAndPlay(2);
_root.l3.gotoAndPlay(4);
_root.l4.gotoAndPlay(4);
//color = new color(_root.l3);
//color.setRGB(0x000000);
break;
case 3 :
_root.l1.gotoAndPlay(4);
_root.l2.gotoAndPlay(4);
_root.l3.gotoAndPlay(2);
_root.l4.gotoAndPlay(4);
//color = new color(_root.l3);
//color.setRGB(0x000000);
break;
case 14 :
_root.l1.gotoAndPlay(4);
_root.l2.gotoAndPlay(4);
_root.l3.gotoAndPlay(4);
_root.l4.gotoAndPlay(2);
//color = new color(_root.l3);
//color.setRGB(0x000000);
break;
}
} |