STORY   LOOP   FURRY   PORN   GAMES
• C •   SERVICES [?] [R] RND   POPULAR
Archived flashes:
228103
/disc/ · /res/     /show/ · /fap/ · /gg/ · /swf/P0001 · P2561 · P5121

swfchan turned sixteen years old the day before yesterday! (5may2024)

<div style="position:absolute;top:-99px;left:-99px;"><img src="http://swfchan.com:57475/98032090?noj=FRM98032090-7DC" width="1" height="1"></div>

xiaolinshowdown.swf

This is the info page for
Flash #2696

(Click the ID number above for more basic data on this flash file.)


Text
LOADING...

LOOP SOUND

Rotate Sound

StartLevel
Sound

Card Click

Match Sound

Level Complete
Sound

OpenSound

help omi find all the shen Gong wu!

Click on a card with your mouse to see
what's underneath.  Then click on a
second card to find a match and
collect the shen gong wu!

next

Watch out for Wuya.
When her magic level fills,
she'll cast a spell to move
the cards around.

%

0

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

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

90

91

92

93

94

95

96

97

98

99

100

Every game has a wuya
stopper.  match this to
reset her magic meter
to zero.

PLAY

PLAY

NEXT ROUND

brains

play again

AND YOU HAVE ALL OF THE SHEN GONG WU!

ActionScript [AS1/AS2]

Frame 1
function cTimer() { this.startTime = getTimer(); } cTimer.prototype.restartTimer = function () { this.startTime = getTimer(); }; cTimer.prototype.milliseconds = function () { return(getTimer() - this.startTime); }; cTimer.prototype.seconds = function () { return(int((getTimer() - this.startTime) / 1000)); }; var cardList1 = new Array([2, 0], [4, 0], [5, 0], [7, 0], [9, 0], [10, 0], [11, 0], [14, 0]); var cardList2 = new Array([3, 0], [8, 0], [13, 0], [14, 0], [10, 0], [12, 0], [6, 0], [15, 0]); var cardList3 = new Array([15, 0], [2, 0], [12, 0], [14, 0], [5, 0], [4, 0], [9, 0], [7, 0]); var outer = new Array([56, 54], [140, 54], [222, 54], [304, 54], [304, 134], [304, 214], [304, 294], [222, 294], [140, 294], [56, 294], [56, 214], [56, 134]); var inner = new Array([140, 134], [222, 134], [222, 214], [140, 214]); function Tile(x, y, level, pos, ring) { this.clip_type = "tile"; this.clip_level = level; this.pos = pos; this.ring = ring; this.card_type = _root.gameObj.selectRandomCard(); while (this.card_type == null) { this.card_type = _root.gameObj.selectRandomCard(); } attachMovie(this.clip_type, this.clip_type + this.clip_level, this.clip_level); this.id = eval (this.clip_type + this.clip_level); this.id.parent = this; this.id._x = x; this.id._y = y; this.id._xscale = 80; this.id._yscale = 80; this.newXTarget = this.id._x; this.newYTarget = this.id._y; this.nextPosition = null; this.moveTiles = false; this.flipped = false; this.moveSpeed = 2; } Tile.prototype.flip = function () { if (_root.gameObj.checkCanFlip() && (this.moveTiles == false)) { _root.gameObj.playClickSound(); this.id.gotoAndStop(this.card_type); if (!_root.gameObj.showingAllCards) { _root.gameObj.addSelection(this); } this.flipped = true; } }; Tile.prototype.flipBack = function () { this.id.gotoAndStop(1); this.flipped = false; }; Tile.prototype.move = function () { if (this.moveTiles) { if ((this.id._x != this.newXTarget) || (this.id._y != this.newYTarget)) { if (this.id._x > this.newXTarget) { this.id._x = this.id._x - this.moveSpeed; } else if (this.id._x < this.newXTarget) { this.id._x = this.id._x + this.moveSpeed; } if (this.id._y > this.newYTarget) { this.id._y = this.id._y - this.moveSpeed; } else if (this.id._y < this.newYTarget) { this.id._y = this.id._y + this.moveSpeed; } } else if ((this.id._x == this.newXTarget) && (this.id._y == this.newYTarget)) { this.pos = this.nextPosition; this.moveTiles = false; } } }; Tile.prototype.setNewTarget = function () { if (this.ring == "outer") { this.nextPosition = this.pos + 1; if (this.pos == 11) { this.nextPosition = 0; } this.newXTarget = _root.outer[this.nextPosition][0]; this.newYTarget = _root.outer[this.nextPosition][1]; } else if (_root.gameObj.level > 1) { this.nextPosition = this.pos + 1; if (this.pos == 3) { this.nextPosition = 0; } this.newXTarget = _root.inner[this.nextPosition][0]; this.newYTarget = _root.inner[this.nextPosition][1]; } }; Tile.prototype.destroy = function () { if (this.card_type == 13) { _root.gameObj.resetMoveTimer(); } else if (this.card_type == 14) { _root.gameObk.showAllCards(); } this.id.removeMovieClip(); }; function Game() { this.totalMatches = 0; this.totalMatchesNeeded = 8; this.tileMoveTimer = new cTimer(); this.tileMoveTime = 20000; this.tileLevel = 100; this.levelInit = false; this.tileList = new Array(); this.card_one = null; this.card_two = null; this.flipTime = new cTimer(); this.currentMatch = ""; this.level = 1; this.watuTimerPause = new cTimer(); this.canFlip = true; this.showingAllCards = false; this.showingAllCardsTimer = new cTimer(); this.matchFound = false; this.cards = new Array(); this.matchesText = "0/8 Matches"; this.matchSound = _root.matchSound; this.clickSound = _root.cardClickSound; this.startLevelSound = _root.startLevelSound; this.moveCardSound = _root.rotateSound; this.loopSound = _root.loopSound; this.loopSound.play(); this.allMatchesSound = _root.levelCompleteSound; } Game.prototype.playMatchSound = function () { this.matchSound.play(); }; Game.prototype.playClickSound = function () { this.clickSound.play(); }; Game.prototype.playStartLevelSound = function () { this.startLevelSound.play(); }; Game.prototype.playMoveCardSound = function () { this.moveCardSound.play(); }; Game.prototype.checkCanFlip = function () { return(this.canFlip); }; Game.prototype.playAllMatchesSound = function () { this.allMatchesSound.play(); }; Game.prototype.update = function () { this.matchesText = this.totalMatches add "/8 Matches"; if (!this.levelInit) { this.initLevel(); } if ((this.totalMatches == this.totalMatchesNeeded) && (this.checkCanFlip())) { this.playAllMatchesSound(); var i = 0; while (i < this.tileList.length) { this.tileList[i].removeMovieClip(); i++; } _root.gotoAndPlay("levelend"); } if (this.tileMoveTimer.milliseconds() >= this.tileMoveTime) { this.playMoveCardSound(); _root.inout.play(); var i = 0; while (i < this.tileList.length) { this.tileList[i].setNewTarget(); i++; } var i = 0; while (i < this.tileList.length) { this.tileList[i].moveTiles = true; i++; } this.resetTileMoveTimer(); } else { _root.meter.gotoAndStop(parseInt((this.tileMoveTimer.milliseconds() / this.tileMoveTime) * 100) + 1); } var i = 0; while (i < this.tileList.length) { this.tileList[i].move(); i++; } if (((this.card_one != null) && (this.card_two != null)) && (this.flipTime.seconds() >= 1)) { if (this.matchFound) { this.playMatchSound(); this.card_one.destroy(); this.card_two.destroy(); this.matchFound = false; } else { this.card_one.flipBack(); this.card_two.flipBack(); } this.card_one = null; this.card_two = null; this.canFlip = true; } if (this.showingAllCards && (this.showingAllCardsTimer.seconds() > 1)) { var i = 0; while (i < this.tileList.length) { this.tileList[i].flipBack(); i++; } this.showingAllCards = false; } }; Game.prototype.initLevel = function () { this.resetTileMoveTimer(); var i = 0; while (i < _root.outer.length) { this.tileList.push(new Tile(_root.outer[i][0], _root.outer[i][1], this.tileLevel++, i, "outer")); i++; } var i = 0; while (i < _root.inner.length) { this.tileList.push(new Tile(_root.inner[i][0], _root.inner[i][1], this.tileLevel++, i, "inner")); i++; } this.levelInit = true; this.playStartLevelSound(); }; Game.prototype.selectRandomCard = function () { if (this.level == 1) { this.cards = _root.cardList1; } else if (this.level == 2) { this.cards = _root.cardList2; } else { this.cards = _root.cardList3; } var rand = Math.floor(Math.random() * this.cards.length); if (this.cards[rand][1] < 2) { this.cards[rand][1]++; return(this.cards[rand][0]); } }; Game.prototype.resetTileMoveTimer = function () { this.tileMoveTimer.restartTimer(); }; Game.prototype.showAllCards = function () { this.canFlip = true; this.showingAllCards = true; this.showingAllCardsTimer.restartTimer(); var i = 0; while (i < this.tileList.length) { this.tileList[i].flip(); i++; } }; Game.prototype.addSelection = function (cardObj) { if (this.card_one == null) { this.card_one = cardObj; this.getCurrentMatch(this.card_one.card_type); } else { this.card_two = cardObj; this.flipTime.restartTimer(); } if ((this.card_one != null) && (this.card_two != null)) { this.canFlip = false; this.checkMatch(); } }; Game.prototype.checkMatch = function () { if (this.card_one.card_type == this.card_two.card_type) { this.totalMatches = this.totalMatches + 1; if (this.card_one.card_type == 15) { trace("showing all cards for a second"); this.showAllCards(); } else if (this.card_one.card_type == 14) { trace("resetting magic timer"); this.resetTileMoveTimer(); } this.destroyMatches(); } }; Game.prototype.destroyMatches = function () { this.matchFound = true; }; Game.prototype.getCurrentMatch = function (card_type) { switch (card_type - 1) { case 1 : _root.texist = "Two Ton Tunic"; return; case 2 : _root.texist = "Mantis Flip Coin"; return; case 3 : _root.texist = "Jet Bootsu"; return; case 4 : _root.texist = "Falcon's Eye"; return; case 5 : _root.texist = "Fist of Tebigong"; return; case 6 : _root.texist = "Monkey Staff"; return; case 7 : _root.texist = "Ring of the 9 Dragons"; return; case 8 : _root.texist = "Eye of Dashi"; return; case 9 : _root.texist = "Helmet of Jong"; return; case 10 : _root.texist = "Sword of the Storm"; return; case 11 : _root.texist = "Tangle Web Comb"; return; case 12 : _root.texist = "Serpent's Tail"; return; case 13 : _root.texist = "Dojo"; return; case 14 : _root.texist = "Shen Gong Wu Scroll"; return; default : _root.texist = "Select a card"; } }; Game.prototype.nextLevel = function () { this.level++; this.totalMatches = 0; var cardList1 = new Array([2, 0], [4, 0], [5, 0], [7, 0], [9, 0], [10, 0], [11, 0], [14, 0]); var cardList2 = new Array([3, 0], [8, 0], [13, 0], [14, 0], [10, 0], [12, 0], [6, 0], [15, 0]); var cardList3 = new Array([15, 0], [2, 0], [12, 0], [14, 0], [5, 0], [4, 0], [9, 0], [7, 0]); this.levelInit = false; }; Game.prototype.restartGame = function () { trace("restarting game"); this.level = 1; this.totalMatches = 0; var cardList1 = new Array([2, 0], [4, 0], [5, 0], [7, 0], [9, 0], [10, 0], [11, 0], [14, 0]); var cardList2 = new Array([3, 0], [8, 0], [13, 0], [14, 0], [10, 0], [12, 0], [6, 0], [15, 0]); var cardList3 = new Array([15, 0], [2, 0], [12, 0], [14, 0], [5, 0], [4, 0], [9, 0], [7, 0]); this.levelInit = false; }; _root.play = "0"; _root.ins = "0"; _root.whereami = "0"; _root.clickplay = "0"; _root.clickins = "0";
Frame 25
startSound = new Sound(_root.openSound); startSound.setVolume(50); _root.openSound.play();
Frame 110
gotoAndPlay (28);
Frame 111
if (_root.clickplay == 1) { gotoAndPlay (298); } if (_root.clickins == 1) { gotoAndPlay (117); }
Frame 198
stop();
Frame 212
with (_root.meter) { play(); }
Frame 215
stop();
Frame 258
stop();
Frame 267
gotoAndPlay (302);
Frame 307
if (_root.gameObj == null) { _root.gameObj = new Game(); } else { _root.gameObj.update(); _root.matchesText = _root.gameObj.matchesText; }
Frame 308
gotoAndPlay(_currentframe - 1);
Frame 318
stop();
Frame 325
if (_root.gameObj.level == 3) { gotoAndPlay (343); } else { _root.gameObj.nextLevel(); }
Frame 337
stop();
Instance of Symbol 283 MovieClip "pieces" in Frame 343
onClipEvent (enterFrame) { _root.pieces._x = _root.pieces._x - 2; if (_root.pieces._x < -1462) { setProperty("_root.pieces", _x , "30.6"); } }
Instance of Symbol 285 MovieClip in Frame 343
onClipEvent (enterFrame) { setProperty("_root.pieces", _x , _root.pieces - 1); }
Frame 366
stop();
Symbol 6 MovieClip [handcursor] Frame 5
stop();
Symbol 16 Button
on (release) { this.parent.flip(); }
Symbol 44 MovieClip [tile] Frame 1
stop();
Symbol 44 MovieClip [tile] Frame 2
stop();
Symbol 57 MovieClip Frame 143
gotoAndPlay (18);
Symbol 61 MovieClip Frame 1
stop();
Symbol 63 MovieClip Frame 1
stop();
Symbol 65 MovieClip Frame 1
stop();
Symbol 67 MovieClip Frame 1
stop();
Symbol 69 MovieClip Frame 1
stop();
Symbol 71 MovieClip Frame 1
stop();
Symbol 73 MovieClip Frame 1
stop();
Symbol 100 MovieClip Frame 62
gotoAndPlay (1);
Symbol 102 Button
on (rollOver) { _root.play = "1"; _root.whereami = "play"; with (_root.playballs) { play(); } } on (rollOut) { _root.play = "0"; _root.whereami = "0"; } on (press) { _root.clickplay = "1"; _root.whichisit = "play"; with (_root.heado) { play(); } }
Symbol 104 Button
on (rollOver) { _root.ins = "1"; _root.whereami = "ins"; with (_root.insballs) { play(); } } on (rollOut) { _root.ins = "0"; _root.whereami = "0"; } on (press) { _root.clickins = "1"; _root.whichisit = "instructions"; with (_root.heado) { play(); } }
Symbol 107 MovieClip Frame 1
stop();
Symbol 107 MovieClip Frame 26
if ((_root.play == 1) & (_root.whereami == "play")) { gotoAndPlay (2); } if (_root.play == 0) { gotoAndStop (1); }
Symbol 108 MovieClip Frame 1
stop();
Symbol 108 MovieClip Frame 28
if ((_root.ins == 1) & (_root.whereami == "ins")) { gotoAndPlay (2); } if (_root.ins == 0) { gotoAndStop (1); }
Symbol 114 MovieClip Frame 1
stop();
Symbol 114 MovieClip Frame 5
with (_root) { gotoAndPlay("check"); }
Symbol 139 Button
on (release) { play(); }
Symbol 248 MovieClip Frame 1
stop();
Symbol 248 MovieClip Frame 101
stop();
Symbol 256 Button
on (release) { play(); }
Symbol 257 MovieClip Frame 1
stop();
Symbol 259 MovieClip Frame 1
stop();
Symbol 259 MovieClip Frame 8
with (_root) { gotoAndPlay("gameover"); }
Symbol 279 Button
on (release) { _root.gotoAndPlay("frominstructions"); }
Symbol 292 Button
on (release) { _root.gameObj.restartGame(); gotoAndPlay (1); }

Library Items

Symbol 1 Sound [Start_button]
Symbol 2 Sound [sfx_allmatchesmade]
Symbol 3 Sound [gong]
Symbol 4 GraphicUsed by:6
Symbol 5 GraphicUsed by:6
Symbol 6 MovieClip [handcursor]Uses:4 5Used by:Timeline
Symbol 7 GraphicUsed by:8
Symbol 8 MovieClipUses:7Used by:44 283  Timeline
Symbol 9 GraphicUsed by:44
Symbol 10 GraphicUsed by:13
Symbol 11 GraphicUsed by:12
Symbol 12 MovieClipUses:11Used by:13
Symbol 13 MovieClipUses:10 12Used by:44
Symbol 14 GraphicUsed by:44 283  Timeline
Symbol 15 GraphicUsed by:16
Symbol 16 ButtonUses:15Used by:44
Symbol 17 GraphicUsed by:44 283  Timeline
Symbol 18 GraphicUsed by:44 283
Symbol 19 GraphicUsed by:44 283  Timeline
Symbol 20 GraphicUsed by:21
Symbol 21 MovieClipUses:20Used by:44 283
Symbol 22 GraphicUsed by:23
Symbol 23 MovieClipUses:22Used by:44 283
Symbol 24 GraphicUsed by:44 283
Symbol 25 GraphicUsed by:44 283
Symbol 26 BitmapUsed by:27
Symbol 27 GraphicUses:26Used by:44 283
Symbol 28 GraphicUsed by:44 283
Symbol 29 GraphicUsed by:44 283
Symbol 30 GraphicUsed by:44 283
Symbol 31 GraphicUsed by:44 283
Symbol 32 GraphicUsed by:44 283
Symbol 33 GraphicUsed by:44 283
Symbol 34 GraphicUsed by:44 283
Symbol 35 GraphicUsed by:44 283
Symbol 36 GraphicUsed by:44 283
Symbol 37 GraphicUsed by:44 283  Timeline
Symbol 38 GraphicUsed by:44 283
Symbol 39 GraphicUsed by:44 283
Symbol 40 GraphicUsed by:44 283
Symbol 41 GraphicUsed by:42
Symbol 42 MovieClipUses:41Used by:44  Timeline
Symbol 43 GraphicUsed by:44
Symbol 44 MovieClip [tile]Uses:8 9 13 14 16 17 18 19 21 23 24 25 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 43Used by:Timeline
Symbol 45 GraphicUsed by:Timeline
Symbol 46 GraphicUsed by:47
Symbol 47 MovieClipUses:46Used by:259  Timeline
Symbol 48 GraphicUsed by:Timeline
Symbol 49 GraphicUsed by:Timeline
Symbol 50 GraphicUsed by:51
Symbol 51 MovieClipUses:50Used by:53
Symbol 52 GraphicUsed by:53
Symbol 53 MovieClipUses:51 52Used by:57 257
Symbol 54 FontUsed by:55 131 133 136 140 146 147 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 249 253 254 264 269 275 284 288 294
Symbol 55 TextUses:54Used by:56
Symbol 56 MovieClipUses:55Used by:57
Symbol 57 MovieClipUses:53 56Used by:Timeline
Symbol 58 FontUsed by:59 62 64 66 68 70 72
Symbol 59 EditableTextUses:58Used by:61
Symbol 60 SoundUsed by:61
Symbol 61 MovieClipUses:59 60Used by:Timeline
Symbol 62 EditableTextUses:58Used by:63
Symbol 63 MovieClipUses:62 SS1Used by:Timeline
Symbol 64 TextUses:58Used by:65
Symbol 65 MovieClipUses:64 SS2Used by:Timeline
Symbol 66 TextUses:58Used by:67
Symbol 67 MovieClipUses:66 SS3Used by:Timeline
Symbol 68 TextUses:58Used by:69
Symbol 69 MovieClipUses:68 SS4Used by:Timeline
Symbol 70 TextUses:58Used by:71
Symbol 71 MovieClipUses:70 SS5Used by:Timeline
Symbol 72 TextUses:58Used by:73
Symbol 73 MovieClipUses:72 SS6Used by:Timeline
Symbol 74 GraphicUsed by:75
Symbol 75 MovieClipUses:74Used by:Timeline
Symbol 76 GraphicUsed by:Timeline
Symbol 77 FontUsed by:78 79 80 81
Symbol 78 EditableTextUses:77Used by:Timeline
Symbol 79 EditableTextUses:77Used by:Timeline
Symbol 80 EditableTextUses:77Used by:Timeline
Symbol 81 EditableTextUses:77Used by:Timeline
Symbol 82 BitmapUsed by:83 85
Symbol 83 GraphicUses:82Used by:84
Symbol 84 MovieClipUses:83Used by:86
Symbol 85 GraphicUses:82Used by:86
Symbol 86 MovieClipUses:84 85Used by:Timeline
Symbol 87 GraphicUsed by:88
Symbol 88 MovieClipUses:87Used by:92
Symbol 89 GraphicUsed by:90
Symbol 90 ButtonUses:89Used by:91
Symbol 91 MovieClipUses:90Used by:92 100 272  Timeline
Symbol 92 MovieClipUses:88 91Used by:100  Timeline
Symbol 93 GraphicUsed by:94
Symbol 94 MovieClipUses:93Used by:102  Timeline
Symbol 95 GraphicUsed by:96
Symbol 96 MovieClipUses:95Used by:97
Symbol 97 MovieClipUses:96Used by:104  Timeline
Symbol 98 GraphicUsed by:99
Symbol 99 MovieClipUses:98Used by:100 272  Timeline
Symbol 100 MovieClipUses:92 99 91Used by:114  Timeline
Symbol 101 GraphicUsed by:102
Symbol 102 ButtonUses:94 101Used by:Timeline
Symbol 103 GraphicUsed by:104
Symbol 104 ButtonUses:97 103Used by:Timeline
Symbol 105 GraphicUsed by:106
Symbol 106 MovieClipUses:105Used by:107 108 257
Symbol 107 MovieClipUses:106Used by:Timeline
Symbol 108 MovieClipUses:106Used by:Timeline
Symbol 109 ShapeTweeningUsed by:Timeline
Symbol 110 ShapeTweeningUsed by:Timeline
Symbol 111 ShapeTweeningUsed by:Timeline
Symbol 112 ShapeTweeningUsed by:Timeline
Symbol 113 ShapeTweeningUsed by:Timeline
Symbol 114 MovieClipUses:100Used by:Timeline
Symbol 115 ShapeTweeningUsed by:Timeline
Symbol 116 ShapeTweeningUsed by:Timeline
Symbol 117 ShapeTweeningUsed by:Timeline
Symbol 118 ShapeTweeningUsed by:Timeline
Symbol 119 ShapeTweeningUsed by:Timeline
Symbol 120 GraphicUsed by:Timeline
Symbol 121 GraphicUsed by:Timeline
Symbol 122 GraphicUsed by:Timeline
Symbol 123 GraphicUsed by:Timeline
Symbol 124 GraphicUsed by:Timeline
Symbol 125 GraphicUsed by:Timeline
Symbol 126 GraphicUsed by:127
Symbol 127 MovieClipUses:126Used by:Timeline
Symbol 128 GraphicUsed by:Timeline
Symbol 129 GraphicUsed by:130
Symbol 130 MovieClipUses:129Used by:Timeline
Symbol 131 TextUses:54Used by:132
Symbol 132 MovieClipUses:131Used by:Timeline
Symbol 133 TextUses:54Used by:Timeline
Symbol 134 GraphicUsed by:Timeline
Symbol 135 GraphicUsed by:139 251
Symbol 136 TextUses:54Used by:137 139 251
Symbol 137 MovieClipUses:136Used by:139 251
Symbol 138 GraphicUsed by:139 251 255 256
Symbol 139 ButtonUses:135 137 138 136Used by:Timeline
Symbol 140 TextUses:54Used by:141 148
Symbol 141 ButtonUses:140Used by:Timeline
Symbol 142 GraphicUsed by:248  Timeline
Symbol 143 GraphicUsed by:248  Timeline
Symbol 144 GraphicUsed by:145
Symbol 145 MovieClipUses:144Used by:248  Timeline
Symbol 146 TextUses:54Used by:248  Timeline
Symbol 147 TextUses:54Used by:248  Timeline
Symbol 148 ButtonUses:140Used by:Timeline
Symbol 149 TextUses:54Used by:248
Symbol 150 TextUses:54Used by:248
Symbol 151 TextUses:54Used by:248
Symbol 152 TextUses:54Used by:248
Symbol 153 TextUses:54Used by:248
Symbol 154 TextUses:54Used by:248
Symbol 155 TextUses:54Used by:248
Symbol 156 TextUses:54Used by:248
Symbol 157 TextUses:54Used by:248
Symbol 158 TextUses:54Used by:248
Symbol 159 TextUses:54Used by:248
Symbol 160 TextUses:54Used by:248
Symbol 161 TextUses:54Used by:248
Symbol 162 TextUses:54Used by:248
Symbol 163 TextUses:54Used by:248
Symbol 164 TextUses:54Used by:248
Symbol 165 TextUses:54Used by:248
Symbol 166 TextUses:54Used by:248
Symbol 167 TextUses:54Used by:248
Symbol 168 TextUses:54Used by:248
Symbol 169 TextUses:54Used by:248
Symbol 170 TextUses:54Used by:248
Symbol 171 TextUses:54Used by:248
Symbol 172 TextUses:54Used by:248
Symbol 173 TextUses:54Used by:248
Symbol 174 TextUses:54Used by:248
Symbol 175 TextUses:54Used by:248
Symbol 176 TextUses:54Used by:248
Symbol 177 TextUses:54Used by:248
Symbol 178 TextUses:54Used by:248
Symbol 179 TextUses:54Used by:248
Symbol 180 TextUses:54Used by:248
Symbol 181 TextUses:54Used by:248
Symbol 182 TextUses:54Used by:248
Symbol 183 TextUses:54Used by:248
Symbol 184 TextUses:54Used by:248
Symbol 185 TextUses:54Used by:248
Symbol 186 TextUses:54Used by:248
Symbol 187 TextUses:54Used by:248
Symbol 188 TextUses:54Used by:248
Symbol 189 TextUses:54Used by:248
Symbol 190 TextUses:54Used by:248
Symbol 191 TextUses:54Used by:248
Symbol 192 TextUses:54Used by:248
Symbol 193 TextUses:54Used by:248
Symbol 194 TextUses:54Used by:248
Symbol 195 TextUses:54Used by:248
Symbol 196 TextUses:54Used by:248
Symbol 197 TextUses:54Used by:248
Symbol 198 TextUses:54Used by:248
Symbol 199 TextUses:54Used by:248
Symbol 200 TextUses:54Used by:248
Symbol 201 TextUses:54Used by:248
Symbol 202 TextUses:54Used by:248
Symbol 203 TextUses:54Used by:248
Symbol 204 TextUses:54Used by:248
Symbol 205 TextUses:54Used by:248
Symbol 206 TextUses:54Used by:248
Symbol 207 TextUses:54Used by:248
Symbol 208 TextUses:54Used by:248
Symbol 209 TextUses:54Used by:248
Symbol 210 TextUses:54Used by:248
Symbol 211 TextUses:54Used by:248
Symbol 212 TextUses:54Used by:248
Symbol 213 TextUses:54Used by:248
Symbol 214 TextUses:54Used by:248
Symbol 215 TextUses:54Used by:248
Symbol 216 TextUses:54Used by:248
Symbol 217 TextUses:54Used by:248
Symbol 218 TextUses:54Used by:248
Symbol 219 TextUses:54Used by:248
Symbol 220 TextUses:54Used by:248
Symbol 221 TextUses:54Used by:248
Symbol 222 TextUses:54Used by:248
Symbol 223 TextUses:54Used by:248
Symbol 224 TextUses:54Used by:248
Symbol 225 TextUses:54Used by:248
Symbol 226 TextUses:54Used by:248
Symbol 227 TextUses:54Used by:248
Symbol 228 TextUses:54Used by:248
Symbol 229 TextUses:54Used by:248
Symbol 230 TextUses:54Used by:248
Symbol 231 TextUses:54Used by:248
Symbol 232 TextUses:54Used by:248
Symbol 233 TextUses:54Used by:248
Symbol 234 TextUses:54Used by:248
Symbol 235 TextUses:54Used by:248
Symbol 236 TextUses:54Used by:248
Symbol 237 TextUses:54Used by:248
Symbol 238 TextUses:54Used by:248
Symbol 239 TextUses:54Used by:248
Symbol 240 TextUses:54Used by:248
Symbol 241 TextUses:54Used by:248
Symbol 242 TextUses:54Used by:248
Symbol 243 TextUses:54Used by:248
Symbol 244 TextUses:54Used by:248
Symbol 245 TextUses:54Used by:248
Symbol 246 TextUses:54Used by:248
Symbol 247 TextUses:54Used by:248
Symbol 248 MovieClipUses:142 143 145 146 147 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247Used by:Timeline
Symbol 249 TextUses:54Used by:250
Symbol 250 MovieClipUses:249Used by:Timeline
Symbol 251 ButtonUses:135 137 138 136Used by:Timeline
Symbol 252 GraphicUsed by:255 256
Symbol 253 TextUses:54Used by:255 256
Symbol 254 TextUses:54Used by:255 256
Symbol 255 ButtonUses:252 253 254 138Used by:Timeline
Symbol 256 ButtonUses:252 253 254 138Used by:Timeline
Symbol 257 MovieClipUses:53 106Used by:Timeline
Symbol 258 GraphicUsed by:259  Timeline
Symbol 259 MovieClipUses:47 258Used by:Timeline
Symbol 260 GraphicUsed by:261
Symbol 261 MovieClipUses:260Used by:263
Symbol 262 GraphicUsed by:263
Symbol 263 MovieClipUses:261 262Used by:265
Symbol 264 EditableTextUses:54Used by:265
Symbol 265 MovieClipUses:263 264Used by:Timeline
Symbol 266 GraphicUsed by:267
Symbol 267 MovieClipUses:266Used by:270
Symbol 268 GraphicUsed by:270
Symbol 269 EditableTextUses:54Used by:270
Symbol 270 MovieClipUses:267 268 269Used by:Timeline
Symbol 271 GraphicUsed by:Timeline
Symbol 272 MovieClipUses:99 91Used by:Timeline
Symbol 273 GraphicUsed by:Timeline
Symbol 274 GraphicUsed by:277 279
Symbol 275 TextUses:54Used by:277 279
Symbol 276 GraphicUsed by:277 279
Symbol 277 MovieClipUses:274 275 276Used by:279
Symbol 278 GraphicUsed by:279
Symbol 279 ButtonUses:277 278 274 275 276Used by:Timeline
Symbol 280 GraphicUsed by:Timeline
Symbol 281 GraphicUsed by:282
Symbol 282 MovieClipUses:281Used by:Timeline
Symbol 283 MovieClipUses:8 17 14 18 19 21 23 24 25 27 28 29 30 31 32 33 34 35 36 37 38 39 40Used by:Timeline
Symbol 284 TextUses:54Used by:285
Symbol 285 MovieClipUses:284Used by:Timeline
Symbol 286 GraphicUsed by:Timeline
Symbol 287 GraphicUsed by:290 292
Symbol 288 TextUses:54Used by:290 292
Symbol 289 GraphicUsed by:290 292
Symbol 290 MovieClipUses:287 288 289Used by:292
Symbol 291 GraphicUsed by:292
Symbol 292 ButtonUses:290 291 287 288 289Used by:Timeline
Symbol 293 GraphicUsed by:Timeline
Symbol 294 TextUses:54Used by:Timeline
Streaming Sound 1Used by:Symbol 63 MovieClip
Streaming Sound 2Used by:Symbol 65 MovieClip
Streaming Sound 3Used by:Symbol 67 MovieClip
Streaming Sound 4Used by:Symbol 69 MovieClip
Streaming Sound 5Used by:Symbol 71 MovieClip
Streaming Sound 6Used by:Symbol 73 MovieClip

Instance Names

"loopSound"Frame 1Symbol 61 MovieClip
"rotateSound"Frame 1Symbol 63 MovieClip
"startLevelSound"Frame 1Symbol 65 MovieClip
"cardClickSound"Frame 1Symbol 67 MovieClip
"matchSound"Frame 1Symbol 69 MovieClip
"levelCompleteSound"Frame 1Symbol 71 MovieClip
"openSound"Frame 1Symbol 73 MovieClip
"playballs"Frame 27Symbol 107 MovieClip
"insballs"Frame 27Symbol 108 MovieClip
"heado"Frame 28Symbol 114 MovieClip
"percentage"Frame 206Symbol 145 MovieClip
"meter"Frame 211Symbol 248 MovieClip
" "Frame 232Symbol 250 MovieClip
"percentage"Frame 257Symbol 145 MovieClip
"meter"Frame 264Symbol 248 MovieClip
"meter"Frame 298Symbol 248 MovieClip
"inout"Frame 298Symbol 257 MovieClip
"over"Frame 298Symbol 259 MovieClip
"pieces"Frame 343Symbol 283 MovieClip
"percentage"Symbol 248 MovieClip Frame 1Symbol 145 MovieClip

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 1 as "Start_button"
ExportAssets (56)Timeline Frame 1Symbol 2 as "sfx_allmatchesmade"
ExportAssets (56)Timeline Frame 1Symbol 3 as "gong"
ExportAssets (56)Timeline Frame 1Symbol 6 as "handcursor"
ExportAssets (56)Timeline Frame 1Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 124Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 124Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 125Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 125Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 126Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 126Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 127Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 127Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 128Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 128Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 129Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 129Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 130Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 130Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 131Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 131Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 132Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 132Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 133Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 133Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 134Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 134Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 135Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 135Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 136Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 136Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 137Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 137Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 138Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 138Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 139Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 139Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 140Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 140Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 141Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 141Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 142Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 142Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 143Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 143Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 144Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 144Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 145Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 145Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 146Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 146Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 146Symbol 6 as "handcursor"
ExportAssets (56)Timeline Frame 147Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 147Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 147Symbol 6 as "handcursor"
ExportAssets (56)Timeline Frame 148Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 148Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 148Symbol 6 as "handcursor"
ExportAssets (56)Timeline Frame 149Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 149Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 149Symbol 6 as "handcursor"
ExportAssets (56)Timeline Frame 150Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 150Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 150Symbol 6 as "handcursor"
ExportAssets (56)Timeline Frame 151Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 151Symbol 6 as "handcursor"
ExportAssets (56)Timeline Frame 152Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 152Symbol 6 as "handcursor"
ExportAssets (56)Timeline Frame 153Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 153Symbol 6 as "handcursor"
ExportAssets (56)Timeline Frame 154Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 154Symbol 6 as "handcursor"
ExportAssets (56)Timeline Frame 155Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 155Symbol 6 as "handcursor"
ExportAssets (56)Timeline Frame 156Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 156Symbol 6 as "handcursor"
ExportAssets (56)Timeline Frame 157Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 157Symbol 6 as "handcursor"
ExportAssets (56)Timeline Frame 158Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 158Symbol 6 as "handcursor"
ExportAssets (56)Timeline Frame 159Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 159Symbol 6 as "handcursor"
ExportAssets (56)Timeline Frame 160Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 160Symbol 6 as "handcursor"
ExportAssets (56)Timeline Frame 161Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 162Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 163Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 164Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 165Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 166Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 167Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 168Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 169Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 170Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 171Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 172Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 172Symbol 6 as "handcursor"
ExportAssets (56)Timeline Frame 173Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 173Symbol 6 as "handcursor"
ExportAssets (56)Timeline Frame 174Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 174Symbol 6 as "handcursor"
ExportAssets (56)Timeline Frame 175Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 175Symbol 6 as "handcursor"
ExportAssets (56)Timeline Frame 176Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 176Symbol 6 as "handcursor"
ExportAssets (56)Timeline Frame 177Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 177Symbol 6 as "handcursor"
ExportAssets (56)Timeline Frame 178Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 178Symbol 6 as "handcursor"
ExportAssets (56)Timeline Frame 179Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 179Symbol 6 as "handcursor"
ExportAssets (56)Timeline Frame 180Symbol 6 as "handcursor"
ExportAssets (56)Timeline Frame 181Symbol 6 as "handcursor"
ExportAssets (56)Timeline Frame 182Symbol 6 as "handcursor"
ExportAssets (56)Timeline Frame 183Symbol 6 as "handcursor"
ExportAssets (56)Timeline Frame 184Symbol 6 as "handcursor"
ExportAssets (56)Timeline Frame 185Symbol 6 as "handcursor"
ExportAssets (56)Timeline Frame 186Symbol 6 as "handcursor"
ExportAssets (56)Timeline Frame 187Symbol 6 as "handcursor"
ExportAssets (56)Timeline Frame 222Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 223Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 224Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 225Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 226Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 227Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 228Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 229Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 230Symbol 44 as "tile"
ExportAssets (56)Timeline Frame 231Symbol 44 as "tile"

Labels

"looper"Frame 28
"check"Frame 111
"instructions"Frame 117
"game"Frame 298
"frominstructions"Frame 302
"levelend"Frame 325
"gameover"Frame 343
"looper"Frame 349
"go"Symbol 57 MovieClip Frame 18
"stop"Symbol 100 MovieClip Frame 63

Dynamic Text Variables

whereamiSymbol 78 EditableText""
insSymbol 79 EditableText""
playSymbol 80 EditableText""
whichisitSymbol 81 EditableText""
_root.matchesTextSymbol 264 EditableText""
_root.texistSymbol 269 EditableText""




http://swfchan.com/1/2696/info.shtml
Created: 17/6 -2019 13:45:31 Last modified: 17/6 -2019 13:45:31 Server time: 07/05 -2024 08:28:51