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

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

main.swf

This is the info page for
Flash #256262

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


Text
---
게임시작

게임시작

eatStar

0

e

c

n

a

t

s

i

D

0

00

00

:

Time

pointMc

Game Over! 당신의 점수는 :

0

Replay

ActionScript [AS1/AS2]

Frame 1
stop(); this.onEnterFrame = function () { if ((_root.getBytesLoaded() > 10) && (_level.getBytesLoaded() >= _level.getBytesTotal())) { delete this.onEnterFrame; this.gotoAndPlay("scene1"); } else { var _local5 = _root.getBytesLoaded(); var _local4 = _root.getBytesTotal(); var _local3 = (_local5 / _local4) * 100; this.loadbar.bar1._xscale = _local3; this.loadbar.bar2._xscale = _local3; } };
Frame 9
var introSound = new Sound(); introSound.attachSound("introSound"); introSound.start(0, 1);
Frame 255
this.gotoAndPlay("re");
Frame 256
stop(); init = function () { userid = ""; gcode = ""; dep = 0; this.attachMovie("ground", "ground", dep++); bgWidth = this.ground._width; this.ground._x = (-bgWidth) + 640; this.ground._y = 262.8; this.attachMovie("hero", "hero", 9999); this.hero._x = 250; this.hero._y = 400; this.attachMovie("balloon", "balloon", 9998); this.attachMovie("life", "life", 9997); this.life._x = 50; this.life._y = 30; s = 0; ss = 0; var _local3 = 1; while (_local3 < 3) { dep++; this.attachMovie("cloud", "cloud" + dep, dep); this["cloud" + dep]._x = 150 * _local3; this["cloud" + dep]._y = 80; this["cloud" + dep]._xscale = (this["cloud" + dep]._yscale = random(50) + 50); _local3++; } cx = _root.hero._x; cy = _root.hero._y; radius = 50; growth = 1.9; limit = -1.74532925199433; t = 1; subtract = -1; _root.balloon._x = cx + (radius * Math.cos(limit)); _root.balloon._y = cy + (radius * Math.sin(limit)); spacePress = false; distx = balloon._x - cx; disty = balloon._y - cy; _root.balloon._rotation = (Math.atan2(disty, distx) * 180) / Math.PI; point = 0; bonusTime = 0; sheildOn = false; distance = 0; treedep = 99999 /* 0x01869F */; mousePress = 0; tp = 0; }; init(); this.onMouseDown = function () { mousePress = true; }; this.onMouseUp = function () { mousePress = 0; }; keyObj = {}; keyObj.onKeyDown = function () { if (Key.isDown(32)) { _root.spacePress = true; } }; keyObj.onKeyUp = function () { _root.spacePress = false; }; Key.addListener(keyObj); this.onEnterFrame = function () { moveBalloon(); this.ground._x = this.ground._x + (5 + t); if ((this.ground._x + 10) > 0) { this.ground._x = (-bgWidth) + 640; } if (t > 6) { this.hero.gotoAndStop(2); } else { this.hero.gotoAndStop(1); } s = s + 0.1; _root.distance = Math.floor(s / 3); _root.bonusTime = Math.floor(_root.distance / 2); _root.distance_text.text = _root.distance; _root.score.text = _root.bonusTime + _root.point; }; moveBalloon = function () { distx = balloon._x - cx; disty = balloon._y - cy; _root.balloon._rotation = (Math.atan2(disty, distx) * 180) / Math.PI; if (spacePress || (mousePress)) { t = t + growth; _root.s = _root.s + 0.4; } else if ((!spacePress) || (!mousePress)) { t = t - 0.8; if (t <= 1) { t = 1; } } subtract = limit - (((-t) * Math.PI) / 180); _root.balloon._x = cx + (radius * Math.cos(subtract)); _root.balloon._y = cy + (radius * Math.sin(subtract)); if (t >= 60) { t = 60; } }; itemObj = {}; itemObj.intervalBird = setInterval(itemObj, "appearBird", 4000); itemObj.appearBird = function () { _root.dep++; _level.attachMovie("bird", "bird" + _root.dep, _root.dep); _level["bird" + _root.dep]._x = -10; _level["bird" + _root.dep]._y = random(250) + 70; }; itemObj.intervalSheild = setInterval(itemObj, "appearSheild", 30000); itemObj.appearSheild = function () { _root.dep++; _level.attachMovie("sheild", "sheild" + _root.dep, _root.dep); _level["sheild" + _root.dep]._x = -10; _level["sheild" + _root.dep]._y = random(200) + 100; }; itemObj.intervalAllo = setInterval(itemObj, "appearAllo", 7000); itemObj.appearAllo = function () { _root.dep++; _level.attachMovie("allo", "allo" + _root.dep, _root.dep); _level["allo" + _root.dep]._x = -10; _level["allo" + _root.dep]._y = 380; }; itemObj.intervaltree = setInterval(itemObj, "appeartree", 10000); itemObj.appeartree = function () { _root.treedep++; _level.attachMovie("tree", "tree" + _root.treedep, _root.treedep); _level["tree" + _root.treedep]._x = -10; _level["tree" + _root.treedep]._y = 380; }; itemObj.intervalitem = setInterval(itemObj, "appearItem", 3500); itemObj.appearItem = function () { _root.dep++; _level.attachMovie("eatItem", "eatItem" + _root.dep, _root.dep); _level["eatItem" + _root.dep]._x = -10; _level["eatItem" + _root.dep]._y = random(300) + 70; }; sheildClose = function () { itemObj.intervalSclose = setInterval(itemObj, "shutSheild", 7000); }; itemObj.shutSheild = function () { _root.balloon.play(); clearInterval(itemObj.intervalSclose); }; var timerObj = {sec_count:0, min_count:0, time_score:0}; timerObj.timeCheck = setInterval(timerObj, "flowingTime", 1000); timerObj.flowingTime = function () { _root.tp = this.time_score++; _root.score.text = (_root.point + _root.tp) + _root.bonusTime; if ((timerObj.sec_count == 30) || (timerObj.sec_count == 59)) { } if (timerObj.sec_count >= 59) { timerObj.sec_count = 0; _root.sec.text = timerObj.sec_count; timerObj.min_count++; if (timerObj.min_count < 10) { _root.min.text = "0" + timerObj.min_count; } else { _root.min.text = timerObj.min_count; } } else { timerObj.sec_count++; if (timerObj.sec_count < 10) { _root.sec.text = "0" + timerObj.sec_count; } else { _root.sec.text = timerObj.sec_count; } } }; var bgSound = new Sound(); bgSound.attachSound("bgSound"); bgSound.start(0, 99999); var sheildSound = new Sound(); sheildSound.attachSound("sheildSound"); var gameOverSound = new Sound(); gameOverSound.attachSound("gameOverSound"); var rolloverSound = new Sound(); rolloverSound.attachSound("rolloverSound"); var colliSound = new Sound(); colliSound.attachSound("colliSound"); var pSound = new Sound(); pSound.attachSound("pointSound");
Instance of Symbol 161 MovieClip "pointMc" in Frame 256
onClipEvent (load) { this.swapDepths(9999999999); }
Frame 276
stop(); var param_gEnd = (((((((((("'" + _root.userid) + "'") + ",") + "'") + _root.gcode) + "'") + ",") + _root.point) + _root.bonusTime_) + _root.tp); getURL (("javascript:gEnd(" + param_gEnd) + ");"); bgSound.stop("bgSound"); gameOverSound.start(0, 1); this.hero.removeMovieClip(); this.balloon.removeMovieClip(); delete itemObj; delete this.onEnterFrame; this.result_text.text = this.point + _root.bonusTime; delete init;
Instance of Symbol 213 MovieClip "sadkuku" in Frame 276
onClipEvent (load) { this.swapDepths(999); }
Symbol 13 MovieClip [eatItem] Frame 1
stop(); var speed = 9; this.onEnterFrame = function () { this._x = this._x + this.speed; if (this._x >= 700) { this.removeMovieClip(); } else if (this.hitTest(_root.balloon.hitPoint)) { this.play(); } };
Symbol 13 MovieClip [eatItem] Frame 8
_root.point = _root.point + 5; this.removeMovieClip();
Symbol 24 MovieClip [hero] Frame 1
stop();
Symbol 24 MovieClip [hero] Frame 2
stop();
Symbol 36 MovieClip [balloon] Frame 1
stop(); _root.sheildOn = false;
Symbol 36 MovieClip [balloon] Frame 5
stop();
Symbol 36 MovieClip [balloon] Frame 20
this.gotoAndStop(1);
Symbol 36 MovieClip [balloon] Frame 21
flag = 0; trace(flag);
Symbol 36 MovieClip [balloon] Frame 29
_root.gotoAndStop("gameOver");
Symbol 40 MovieClip [bird] Frame 1
var speed = 15; this.onEnterFrame = function () { this._x = this._x + this.speed; if (this._x >= 700) { this.removeMovieClip(); } else if (_root.sheildOn == false) { if (this.hitTest(_root.balloon.hitPoint)) { _root.balloon.gotoAndPlay("explostion"); _root.colliSound.start(0, 1); _root.life.nextFrame(); this.removeMovieClip(); } } };
Symbol 41 MovieClip [sheild] Frame 1
var speed = 5; this.onEnterFrame = function () { this._x = this._x + this.speed; if (this._x >= 700) { this.removeMovieClip(); } if (this.hitTest(_root.balloon.hitPoint)) { _root.sheildOn = true; _root.balloon.gotoAndStop("sheild"); _root.sheildClose(); _root.sheildSound.start(0, 1); this.removeMovieClip(); } };
Symbol 61 MovieClip Frame 1
stop();
Symbol 73 MovieClip [allo] Frame 1
var speed = 5; this.onEnterFrame = function () { this._x = this._x + this.speed; if (this._x >= 700) { this.removeMovieClip(); } else if (_root.sheildOn == false) { if (this.hitTest(_root.balloon.hitPoint)) { _root.balloon.gotoAndPlay("explostion"); _root.colliSound.start(0, 1); _root.life.nextFrame(); this.removeMovieClip(); } } };
Symbol 75 MovieClip [cloud] Frame 1
var speed = (random(2) + 1); this.onEnterFrame = function () { this._x = this._x + speed; if (this._x > 700) { this._x = -50; } };
Symbol 81 MovieClip [tree] Frame 1
var speed = 5; this.onEnterFrame = function () { this._x = this._x + this.speed; if (this._x >= 700) { this.removeMovieClip(); } else if (_root.sheildOn == false) { if (this.treehit.hitTest(_root.balloon.hitPoint)) { _root.balloon.gotoAndPlay("explostion"); _root.colliSound.start(0, 1); _root.life.nextFrame(); this.removeMovieClip(); } } };
Symbol 124 Button
on (release) { stopAllSounds(); this.gotoAndStop("gameStart"); }
Symbol 139 MovieClip Frame 1
stop();
Symbol 139 MovieClip Frame 16
trace("\uBCC4\uB2FF\uC558\uB124"); _root.point = _root.point + 5; _root.pSound.start(0, 1);
Symbol 161 MovieClip Frame 1
stop();
Symbol 161 MovieClip Frame 2
_root.point = _root.point + 50;
Symbol 161 MovieClip Frame 16
this.gotoAndStop(1);
Symbol 187 MovieClip Frame 1
this.onRollOver = function () { rolloverSound.start(0, 1); this.onRelease = function () { clickSound.start(0, 1); _root.sadkuku.removeMovieClip(); _root.gotoAndStop("gameStart"); }; };

Library Items

Symbol 1 Sound [colliSound]
Symbol 2 Sound [gameOverSound]
Symbol 3 Sound [bgSound]
Symbol 4 Sound [pointSound]
Symbol 5 Sound [rolloverSound]
Symbol 6 Sound [sheildSound]
Symbol 7 Sound [introSound]
Symbol 8 GraphicUsed by:13
Symbol 9 GraphicUsed by:10
Symbol 10 MovieClipUses:9Used by:13
Symbol 11 GraphicUsed by:13
Symbol 12 SoundUsed by:13
Symbol 13 MovieClip [eatItem]Uses:8 10 11 12
Symbol 14 GraphicUsed by:20 23  Timeline
Symbol 15 GraphicUsed by:20 23  Timeline
Symbol 16 GraphicUsed by:20 23  Timeline
Symbol 17 GraphicUsed by:20 23  Timeline
Symbol 18 GraphicUsed by:20 23  Timeline
Symbol 19 GraphicUsed by:20 23  Timeline
Symbol 20 MovieClipUses:14 15 16 17 18 19Used by:24
Symbol 21 FontUsed by:165
Symbol 22 TextUsed by:24
Symbol 23 MovieClipUses:14 15 16 17 18 19Used by:24
Symbol 24 MovieClip [hero]Uses:20 22 23
Symbol 25 GraphicUsed by:26
Symbol 26 MovieClipUses:25Used by:27 36
Symbol 27 MovieClipUses:26Used by:36
Symbol 28 GraphicUsed by:29
Symbol 29 MovieClipUses:28Used by:36
Symbol 30 GraphicUsed by:31
Symbol 31 MovieClipUses:30Used by:36
Symbol 32 GraphicUsed by:36 41
Symbol 33 GraphicUsed by:36
Symbol 34 GraphicUsed by:36
Symbol 35 GraphicUsed by:36
Symbol 36 MovieClip [balloon]Uses:27 29 31 26 32 33 34 35
Symbol 37 GraphicUsed by:39  Timeline
Symbol 38 GraphicUsed by:39  Timeline
Symbol 39 MovieClipUses:37 38Used by:40
Symbol 40 MovieClip [bird]Uses:39
Symbol 41 MovieClip [sheild]Uses:32
Symbol 42 GraphicUsed by:63
Symbol 43 GraphicUsed by:63
Symbol 44 GraphicUsed by:63
Symbol 45 GraphicUsed by:63
Symbol 46 GraphicUsed by:63
Symbol 47 GraphicUsed by:63
Symbol 48 GraphicUsed by:63
Symbol 49 GraphicUsed by:63
Symbol 50 GraphicUsed by:63
Symbol 51 GraphicUsed by:63
Symbol 52 GraphicUsed by:63
Symbol 53 GraphicUsed by:63
Symbol 54 GraphicUsed by:63
Symbol 55 GraphicUsed by:63
Symbol 56 GraphicUsed by:63
Symbol 57 GraphicUsed by:63
Symbol 58 GraphicUsed by:63
Symbol 59 GraphicUsed by:61
Symbol 60 GraphicUsed by:61
Symbol 61 MovieClipUses:59 60Used by:63
Symbol 62 GraphicUsed by:63
Symbol 63 MovieClip [ground]Uses:42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 61 62
Symbol 64 GraphicUsed by:71  Timeline
Symbol 65 GraphicUsed by:71  Timeline
Symbol 66 GraphicUsed by:71  Timeline
Symbol 67 GraphicUsed by:71
Symbol 68 GraphicUsed by:71
Symbol 69 GraphicUsed by:71  Timeline
Symbol 70 GraphicUsed by:71  Timeline
Symbol 71 MovieClipUses:64 65 66 67 68 69 70Used by:72
Symbol 72 MovieClipUses:71Used by:73
Symbol 73 MovieClip [allo]Uses:72
Symbol 74 GraphicUsed by:75
Symbol 75 MovieClip [cloud]Uses:74
Symbol 76 GraphicUsed by:81
Symbol 77 GraphicUsed by:81
Symbol 78 GraphicUsed by:79
Symbol 79 MovieClipUses:78Used by:81
Symbol 80 GraphicUsed by:81
Symbol 81 MovieClip [tree]Uses:76 77 79 80Used by:Timeline
Symbol 82 GraphicUsed by:Timeline
Symbol 83 GraphicUsed by:Timeline
Symbol 84 GraphicUsed by:Timeline
Symbol 85 GraphicUsed by:Timeline
Symbol 86 GraphicUsed by:94
Symbol 87 GraphicUsed by:94
Symbol 88 GraphicUsed by:94
Symbol 89 GraphicUsed by:94
Symbol 90 GraphicUsed by:94
Symbol 91 GraphicUsed by:94
Symbol 92 GraphicUsed by:94
Symbol 93 GraphicUsed by:94
Symbol 94 MovieClipUses:86 87 88 89 90 91 92 93Used by:Timeline
Symbol 95 GraphicUsed by:102
Symbol 96 GraphicUsed by:102
Symbol 97 GraphicUsed by:98
Symbol 98 MovieClipUses:97Used by:102
Symbol 99 GraphicUsed by:102
Symbol 100 GraphicUsed by:101
Symbol 101 MovieClipUses:100Used by:102
Symbol 102 MovieClipUses:95 96 98 99 101Used by:Timeline
Symbol 103 GraphicUsed by:Timeline
Symbol 104 GraphicUsed by:105
Symbol 105 MovieClipUses:104Used by:Timeline
Symbol 106 BitmapUsed by:107
Symbol 107 GraphicUses:106Used by:Timeline
Symbol 108 GraphicUsed by:109
Symbol 109 MovieClipUses:108Used by:Timeline
Symbol 110 GraphicUsed by:Timeline
Symbol 111 GraphicUsed by:Timeline
Symbol 112 GraphicUsed by:Timeline
Symbol 113 ShapeTweeningUsed by:Timeline
Symbol 114 GraphicUsed by:Timeline
Symbol 115 GraphicUsed by:Timeline
Symbol 116 GraphicUsed by:Timeline
Symbol 117 GraphicUsed by:124
Symbol 118 FontUsed by:119 122
Symbol 119 TextUses:118Used by:123 124
Symbol 120 GraphicUsed by:123 124
Symbol 121 GraphicUsed by:123
Symbol 122 TextUses:118Used by:123
Symbol 123 MovieClipUses:120 119 121 122Used by:124
Symbol 124 ButtonUses:117 119 123 120Used by:Timeline
Symbol 125 ShapeTweeningUsed by:Timeline
Symbol 126 GraphicUsed by:Timeline
Symbol 127 GraphicUsed by:Timeline
Symbol 128 GraphicUsed by:Timeline
Symbol 129 GraphicUsed by:Timeline
Symbol 130 GraphicUsed by:132
Symbol 131 GraphicUsed by:132
Symbol 132 MovieClipUses:130 131Used by:Timeline
Symbol 133 ShapeTweeningUsed by:Timeline
Symbol 134 GraphicUsed by:Timeline
Symbol 135 ShapeTweeningUsed by:Timeline
Symbol 136 ShapeTweeningUsed by:Timeline
Symbol 137 FontUsed by:138 144 145 146 147 148 149 150 151 157
Symbol 138 TextUses:137Used by:139
Symbol 139 MovieClipUses:138Used by:Timeline
Symbol 140 GraphicUsed by:Timeline
Symbol 141 FontUsed by:142 152 153 154 155
Symbol 142 EditableTextUses:141Used by:Timeline
Symbol 143 GraphicUsed by:Timeline
Symbol 144 TextUses:137Used by:Timeline
Symbol 145 TextUses:137Used by:Timeline
Symbol 146 TextUses:137Used by:Timeline
Symbol 147 TextUses:137Used by:Timeline
Symbol 148 TextUses:137Used by:Timeline
Symbol 149 TextUses:137Used by:Timeline
Symbol 150 TextUses:137Used by:Timeline
Symbol 151 TextUses:137Used by:Timeline
Symbol 152 EditableTextUses:141Used by:Timeline
Symbol 153 EditableTextUses:141Used by:Timeline
Symbol 154 EditableTextUses:141Used by:Timeline
Symbol 155 EditableTextUses:141Used by:Timeline
Symbol 156 GraphicUsed by:Timeline
Symbol 157 TextUses:137Used by:Timeline
Symbol 158 FontUsed by:159
Symbol 159 TextUses:158Used by:161
Symbol 160 GraphicUsed by:161
Symbol 161 MovieClipUses:159 160Used by:Timeline
Symbol 162 GraphicUsed by:Timeline
Symbol 163 FontUsed by:164
Symbol 164 TextUses:163Used by:Timeline
Symbol 165 EditableTextUses:21Used by:Timeline
Symbol 166 GraphicUsed by:185
Symbol 167 GraphicUsed by:185
Symbol 168 GraphicUsed by:185
Symbol 169 GraphicUsed by:185
Symbol 170 FontUsed by:171
Symbol 171 TextUses:170Used by:185
Symbol 172 GraphicUsed by:185
Symbol 173 GraphicUsed by:185
Symbol 174 GraphicUsed by:185
Symbol 175 GraphicUsed by:185
Symbol 176 GraphicUsed by:185
Symbol 177 BitmapUsed by:178 179 182 183
Symbol 178 GraphicUses:177Used by:185
Symbol 179 GraphicUses:177Used by:185
Symbol 180 GraphicUsed by:185
Symbol 181 GraphicUsed by:185
Symbol 182 GraphicUses:177Used by:185
Symbol 183 GraphicUses:177Used by:185
Symbol 184 GraphicUsed by:185
Symbol 185 MovieClipUses:166 167 168 169 171 172 173 174 175 176 178 179 180 181 182 183 184Used by:187
Symbol 186 GraphicUsed by:187
Symbol 187 MovieClipUses:185 186Used by:Timeline
Symbol 188 GraphicUsed by:213
Symbol 189 GraphicUsed by:213
Symbol 190 GraphicUsed by:213
Symbol 191 GraphicUsed by:213
Symbol 192 GraphicUsed by:213
Symbol 193 GraphicUsed by:213
Symbol 194 GraphicUsed by:213
Symbol 195 GraphicUsed by:213
Symbol 196 GraphicUsed by:213
Symbol 197 GraphicUsed by:213
Symbol 198 GraphicUsed by:213
Symbol 199 GraphicUsed by:213
Symbol 200 GraphicUsed by:213
Symbol 201 GraphicUsed by:213
Symbol 202 GraphicUsed by:213
Symbol 203 GraphicUsed by:213
Symbol 204 GraphicUsed by:213
Symbol 205 GraphicUsed by:213
Symbol 206 GraphicUsed by:213
Symbol 207 GraphicUsed by:213
Symbol 208 ShapeTweeningUsed by:213
Symbol 209 GraphicUsed by:213
Symbol 210 ShapeTweeningUsed by:213
Symbol 211 GraphicUsed by:213
Symbol 212 GraphicUsed by:213
Symbol 213 MovieClipUses:188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212Used by:Timeline

Instance Names

"loadbar"Frame 1Symbol 102 MovieClip
"eatStar"Frame 256Symbol 139 MovieClip
"score"Frame 256Symbol 142 EditableText
"distance_text"Frame 256Symbol 152 EditableText
"min"Frame 256Symbol 153 EditableText
"sec"Frame 256Symbol 154 EditableText
"pointMc"Frame 256Symbol 161 MovieClip
"result_text"Frame 276Symbol 165 EditableText
"retry_mc"Frame 276Symbol 187 MovieClip
"sadkuku"Frame 276Symbol 213 MovieClip
"hitPoint"Symbol 36 MovieClip [balloon] Frame 1Symbol 29 MovieClip
"starHitPoint"Symbol 36 MovieClip [balloon] Frame 1Symbol 31 MovieClip
"treehit"Symbol 81 MovieClip [tree] Frame 1Symbol 79 MovieClip
"bar2"Symbol 102 MovieClip Frame 1Symbol 98 MovieClip
"bar1"Symbol 102 MovieClip Frame 1Symbol 101 MovieClip

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 1 as "colliSound"
ExportAssets (56)Timeline Frame 1Symbol 2 as "gameOverSound"
ExportAssets (56)Timeline Frame 1Symbol 3 as "bgSound"
ExportAssets (56)Timeline Frame 1Symbol 4 as "pointSound"
ExportAssets (56)Timeline Frame 1Symbol 5 as "rolloverSound"
ExportAssets (56)Timeline Frame 1Symbol 6 as "sheildSound"
ExportAssets (56)Timeline Frame 1Symbol 7 as "introSound"
ExportAssets (56)Timeline Frame 1Symbol 13 as "eatItem"
ExportAssets (56)Timeline Frame 1Symbol 24 as "hero"
ExportAssets (56)Timeline Frame 1Symbol 36 as "balloon"
ExportAssets (56)Timeline Frame 1Symbol 40 as "bird"
ExportAssets (56)Timeline Frame 1Symbol 41 as "sheild"
ExportAssets (56)Timeline Frame 1Symbol 63 as "ground"
ExportAssets (56)Timeline Frame 1Symbol 73 as "allo"
ExportAssets (56)Timeline Frame 1Symbol 75 as "cloud"
ExportAssets (56)Timeline Frame 1Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 87Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 88Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 89Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 90Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 91Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 92Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 93Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 94Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 95Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 96Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 97Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 98Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 99Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 100Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 101Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 102Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 103Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 104Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 105Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 106Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 107Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 108Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 109Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 110Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 111Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 112Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 113Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 114Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 115Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 116Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 117Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 118Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 119Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 120Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 121Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 122Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 123Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 124Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 125Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 126Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 127Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 128Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 129Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 130Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 131Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 132Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 133Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 134Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 135Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 136Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 137Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 138Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 139Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 140Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 141Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 142Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 143Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 144Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 145Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 146Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 147Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 148Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 149Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 150Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 151Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 152Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 153Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 154Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 155Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 156Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 157Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 158Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 159Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 160Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 161Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 162Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 163Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 164Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 165Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 166Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 167Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 168Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 169Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 170Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 171Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 172Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 173Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 174Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 175Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 176Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 177Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 178Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 179Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 180Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 181Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 182Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 183Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 184Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 185Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 186Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 187Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 188Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 189Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 190Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 191Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 192Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 193Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 194Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 195Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 196Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 197Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 198Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 199Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 200Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 201Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 202Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 203Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 204Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 205Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 206Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 207Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 208Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 209Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 210Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 211Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 212Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 213Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 214Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 215Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 216Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 217Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 218Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 219Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 220Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 221Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 222Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 223Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 224Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 225Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 226Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 227Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 228Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 229Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 230Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 231Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 232Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 233Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 234Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 235Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 236Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 237Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 238Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 239Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 240Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 241Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 242Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 243Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 244Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 245Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 246Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 247Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 248Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 249Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 250Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 251Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 252Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 253Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 254Symbol 81 as "tree"
ExportAssets (56)Timeline Frame 255Symbol 81 as "tree"

Labels

"scene1"Frame 2
"re"Frame 10
"gameStart"Frame 256
"gameOver"Frame 276
"run"Symbol 24 MovieClip [hero] Frame 2
"sheild"Symbol 36 MovieClip [balloon] Frame 5
"explostion"Symbol 36 MovieClip [balloon] Frame 21




http://swfchan.com/52/256262/info.shtml
Created: 26/6 -2024 00:39:20 Last modified: 26/6 -2024 00:39:20 Server time: 28/09 -2024 05:36:24