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

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

joust.swf

This is the info page for
Flash #190086

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


Text
PLAY

PLAY

PLAY

<p align="left"><font face="Arial" size="19" color="#ff0000"><a href="http://www.thepcmanwebsite.com"><b><i>The PCman Website</i></b></a><font face="dubbem" size="16"><a href="http://www.thepcmanwebsite.com"><b> </b></a><font face="Arial" size="14" color="#ffffff"><a href="http://www.thepcmanwebsite.com" target = "_top"><b><i>fun, free games-web tools-freeware</i></b></a></font></font></font></p>

<p align="left"><font face="Arial" size="18" color="#ffff00"><a href="http://www.thepcmanwebsite.com/affiliate_games.shtml" target = "_top"><b><i>&gt;&gt;</i></b></a><font color="#0000ff"><a href="http://www.thepcmanwebsite.com/affiliate_games.shtml" target = "_top"><b><i>Click Here</i></b></a></font><a href="http://www.thepcmanwebsite.com/affiliate_games.shtml" target = "_top"><b><i> </i></b></a><font color="#ffffff"><a href="http://www.thepcmanwebsite.com/affiliate_games.shtml" target = "_top"><b><i>to Add </i></b></a><font color="#ffcc66"><a href="http://www.thepcmanwebsite.com/affiliate_games.shtml" target = "_top"><b><i>FREE</i></b></a></font><a href="http://www.thepcmanwebsite.com/affiliate_games.shtml" target = "_top"><b><i> Games to Your Site</i></b></a></font><a href="http://www.thepcmanwebsite.com/affiliate_games.shtml" target = "_top"><b><i>&lt;&lt;</i></b></a></font></p>

THE UNOFFICIAL FLASH REMAKE
BY OTHER SIDE GRAPHICS 2003

EXTRA MOUNT EVERY 20,000 POINTS

JOUST (R) COPYRIGHT 1982
WILLIAMS ELECTRONICS, INC.

DIRECTION KEYS TO MOVE,  CONTROL KEY TO FLAP WINGS

loading..............please wait

DIRECTION KEYS TO MOVE,  CONTROL KEY TO FLAP WINGS

THE UNOFFICIAL FLASH REMAKE
BY OTHER SIDE GRAPHICS 2003

REGULAR,
BOLD,ITA
LLIC

PREPARE TO JOUST
BUZZARD BAIT!

REGUL
AR,BO
LD,IT
ALLIC

500

250

REGULAR,
BOLD,ITA
LLIC

THY GAME IS OVER!

THY GAME IS OVER!

ActionScript [AS1/AS2]

Frame 5
var loadAmount = _totalframes; if (_framesloaded == loadAmount) { gotoAndPlay ("start"); } else { loaded = Math.round(getBytesLoaded() / 1024); total = Math.round(getBytesTotal() / 1024); percent = Math.round((loaded / total) * 100); bytesLoadedOutput = loaded; bytesTotalOutput = total; percentOutput = percent + "%"; loadBar._width = loadBarHousing._width * (percent / 100); gotoAndPlay ("loading"); }
Frame 14
stop();
Frame 15
function showWave() { _root.waveNum = "WAVE" + wave; } function createEnemy() { var _local1 = _root; ticks++; if (ticks == 16) { if (nextEnemy < numEnemies) { attachMovie("enemy", "enemy" + nextEnemy, nextEnemy); n = int(Math.random() * 4); if (n == 0) { _local1["enemy" + nextEnemy]._x = 338.6; _local1["enemy" + nextEnemy]._y = 491; _local1["enemy" + nextEnemy].enemySafe = true; } if (n == 1) { _local1["enemy" + nextEnemy]._x = 303.6; _local1["enemy" + nextEnemy]._y = 123.9; _local1["enemy" + nextEnemy].enemySafe = true; } if (n == 2) { _local1["enemy" + nextEnemy]._x = 58.5; _local1["enemy" + nextEnemy]._y = 287.9; _local1["enemy" + nextEnemy].enemySafe = true; } if (n == 3) { _local1["enemy" + nextEnemy]._x = 615.6; _local1["enemy" + nextEnemy]._y = 259.9; _local1["enemy" + nextEnemy].enemySafe = true; } enemies.push({clip:"enemy" + nextEnemy}); nextEnemy++; ticks = 0; if (wave >= 3) { numEnemies = 6; } } } } function moveEnemy() { var _local1 = _root; i = enemies.length - 1; while (i >= 0) { enemy = _local1[enemies[i].clip]; if (!enemy.enemySafe) { enemy.x = enemy._x + enemy.xspeed; enemy.y = enemy._y + enemy.yspeed; if (enemy.hitCount < 1) { enemy.yspeed = enemy.yspeed + gravity; } if (_local1.player.hittest(enemy)) { if ((((_local1.player.y < enemy.y) and (!_local1.playerDead)) and (!enemy.enemyDead)) and (!_local1.playerSafe)) { enemy.enemyDead = true; _local1.score = _local1.score + 150; enemy.enemyRider.gotoAndPlay(2); enemy.xspeed = enemy.xspeed * -1; duplicateMovieClip ("egg", "egg" + i, i + 9999); _local1["egg" + i]._x = enemy.x; _local1["egg" + i]._y = enemy.y; } if ((((_local1.player.y == enemy.y) and (!_local1.playerDead)) and (!enemy.enemyDead)) and (!_local1.playerSafe)) { _local1.S1.start(); _local1.score = _local1.score + 150; _local1.player.xspeed = _local1.player.xspeed * -2; enemy.xspeed = enemy.xspeed * 2; } if ((((_local1.player.y > enemy.y) and (!_local1.playerDead)) and (!_local1.playerSafe)) and (!enemy.enemyDead)) { _local1.playerDead = true; _local1.score = _local1.score + 150; _local1.player.playerRider.gotoAndPlay(2); _local1.player.xspeed = _local1.player.xspeed * -5; } } if (!_local1.bkg.hittest(enemy.x, enemy._y, true)) { enemy._x = enemy.x; } else { _local1.S.start(); enemy.xspeed = enemy.xspeed * -1; } if (!_local1.bkg.hittest(enemy._x, enemy.y, true)) { enemy._y = enemy.y; } else if (enemy.yspeed < 0) { enemy.yspeed = enemy.yspeed * -0.4; enemy.hitCount = enemy.hitCount + 1; } else { enemy.hitCount = 0; enemy.flap = true; enemy.yspeed = 0; } r = int(Math.random() * 3); if (r < 1) { enemy.xspeed = enemy.xspeed - 0.9; _local1.enemysDirection = "Left"; } else if (r == 1) { pursuit(); } if ((Math.abs(_local1.eLastXPos - enemy._x) > 1) and (_local1.eLastYPos == enemy._y)) { if (_local1.enemysDirection == "Right") { enemy.gotoAndPlay(19); } else { enemy.gotoAndPlay(21); } _local1.eLastYPos = enemy._y; _local1.eLastXPos = enemy._x; } if ((enemy.xspeed < -20) and (!enemy.enemyDead)) { enemy.xspeed = -20; } if ((enemy.xspeed > 20) and (!enemy.enemyDead)) { enemy.xspeed = 20; } if ((((enemy._y <= _local1.flapTarget) and (!enemy.Fly)) and (enemy.hitCount < 2)) and (!enemy.enemyDead)) { if (enemy.flap) { enemy.yspeed = enemy.yspeed - flapHeight; if (_local1.enemy.enemysDirection == "Right") { enemy.gotoAndPlay(23); } else { enemy.gotoAndPlay(27); } } else { enemy.flap = true; } enemy.Fly = true; } if ((enemy._x > 800) and (!enemy.enemyDead)) { enemy._x = -1; enemy._y = enemy._y + -5; } if ((enemy._x < -1) and (!enemy.enemyDead)) { enemy._x = 800; enemy._y = enemy._y + -5; } if ((enemy._x > 800) and enemy.enemyDead) { enemy.removeMovieClip(); enemies.splice(i, 1); } if ((enemy._x < -1) and enemy.enemyDead) { enemy.removeMovieClip(); enemies.splice(i, 1); } enemy.Fly = false; } if ((nextEnemy >= numEnemies) and (enemies.length < 1)) { gotoAndStop (18); } i--; } } function pursuit() { var _local1 = _root; if (_local1.player._x < enemy._x) { enemy.xspeed = enemy.xspeed - 0.9; _local1.enemysDirection = "Right"; } else if (_local1.player._x > enemy._x) { enemy.xspeed = enemy.xspeed + 0.9; _local1.enemysDirection = "Left"; } else { enemy.xspeed = enemy.xspeed * 0.9; } if ((((_local1.player._y <= enemy._y) and (!enemy.Fly)) and (enemy.hitCount < 2)) and (!enemy.enemyDead)) { if (enemy.flap) { enemy.yspeed = enemy.yspeed - flapHeight; if (_local1.enemy.enemysDirection == "Right") { enemy.gotoAndPlay(23); } else { enemy.gotoAndPlay(27); } } else { enemy.flap = true; } enemy.Fly = true; } } function newPlayer() { } function moveEgg() { var _local1 = this; var _local2 = _root; i = enemies.length - 1; while (i >= 0) { enemy = _local2[enemies[i].clip]; _local1.xspeed = Number(enemy.xspeed) * 1.1; _local1.yspeed = Number(enemy.yspeed - 5) * 1.1; _local1.jumpHeight = 3; _local1.gravity = 0.6; gotEgg = false; _local1.yspeed = _local1.yspeed + _local1.gravity; x = _local1._x + _local1.xspeed; y = _local1._y + _local1.yspeed; if (!_local2.bkg.hittest(x, _local1._y, true)) { _local1._x = x; } else { _local1.xspeed = 0; } if (!_local2.bkg.hittest(_local1._x, y, true)) { _local1._y = y; } else if (_local1.yspeed < 0) { _local1.yspeed = _local1.yspeed * -0.96; } else { _local1.yspeed = 0; } if (_local2.player.hittest(_local1) and (gotEgg == false)) { _local1.gotoAndPlay(2); _local2.score = _local2.score + 750; gotEgg = true; } i--; } } stop(); _quality = "low"; _root.S = new Sound(); _root.S.attachSound("COIN4"); _root.S1 = new Sound(); _root.S1.attachSound("INSERT"); _root.S2 = new Sound(); _root.S2.attachSound("START2"); _root.life = 4; _root.score = score; var wave = 1; var waveNum = wave; var score = 0; var ticks = 0; _root.enemysDirection = "Right"; var hitCount = 0; var enemySafe = true; var nextEnemyTime = (getTimer() + timeBetweenEnemies); var enemies = []; var numEnemies = (wave * 3); var nextEnemy = 0; var enemyDead = false; var pursuit = false; _root.sDirection = "Right"; var playerDead = false; var playerSafe = false; timeBetweenEnemies = 2000; xspeed = 0; yspeed = 0; flap = true; flapHeight = 3; gravity = 1; showWave();
Instance of Symbol 212 MovieClip "bkg" in Frame 15
/* no clip actions */
Instance of Symbol 185 MovieClip [player] "player" in Frame 15
onClipEvent (load) { _root.playerDead = false; _root.playerSafe = false; _root.kount = 0; _root.S = new Sound(); _root.S.attachSound("COIN4"); _root.S1 = new Sound(); _root.S1.attachSound("INSERT"); this.xspeed = 0; this.yspeed = 0; this.flap = true; this.flapHeight = 3; this.gravity = 0.8; } onClipEvent (enterFrame) { if (!_root.playerSafe) { this.yspeed = this.yspeed + this.gravity; x = this._x + this.xspeed; y = this._y + this.yspeed; if (!_root.bkg.hittest(x, this._y, true)) { this._x = x; } else { _root.S.start(); this.xspeed = this.xspeed * -1; } if (!_root.bkg.hittest(this._x, y, true)) { this._y = y; } else { if (this.yspeed < 0) { _root.S.start(); this.yspeed = this.yspeed * -1; } this.yspeed = 0; } } if (Key.isDown(Key.left) and (!_root.playerDead)) { _root.playerSafe = false; this.xspeed = this.xspeed - 0.7; _root.sDirection = "Left"; } else if (Key.isDown(Key.right) and (!_root.playerDead)) { _root.playerSafe = false; this.xspeed = this.xspeed + 0.96; _root.sDirection = "Right"; } else { this.xspeed = this.xspeed * 0.9; } if (this.xspeed < -20) { this.xspeed = -20; } if (this.xspeed > 20) { this.xspeed = 20; } if ((Key.isDown(Key.control) and (!_root.Fly)) and (!_root.playerDead)) { _root.playerSafe = false; if (this.flap) { this.yspeed = this.yspeed - this.flapHeight; if (_root.sDirection == "Right") { _root.player.gotoAndPlay(33); } else { _root.player.gotoAndPlay(35); } } else { this.flap = false; } _root.Fly = true; } if (_root.playerDead == true) { this.xspeed = this.xspeed + 0.7; } if ((this._x > 800) and (!_root.playerDead)) { this._x = -1; this._y = this._y + -5; } if ((this._x < -1) and (!_root.playerDead)) { this._x = 800; this._y = this._y + -5; } if ((this._x < -1) and _root.playerDead) { _root.life = _root.life - 1; if (_root.life > 0) { this.gotoAndPlay(1); _root.playerDead = false; _root.playerSafe = true; s = int(Math.random() * 4); this.gotoAndPlay(1); if (s == 0) { this._x = 338.6; this._y = 491; } if (s == 1) { this._x = 303.6; this._y = 123.9; } if (s == 2) { this._x = 58.5; this._y = 287.9; } if (s == 3) { this._x = 615.6; this._y = 259.9; } } else { _root.gotoAndPlay(19); } } if ((this._x > 800) and _root.playerDead) { _root.life = _root.life - 1; if (_root.life > 0) { this.gotoAndPlay(1); _root.playerDead = false; _root.playerSafe = true; s = int(Math.random() * 4); if (s == 0) { _root.player._x = 338.6; _root.player._y = 491; } if (s == 1) { _root.player._x = 303.6; _root.player._y = 123.9; } if (s == 2) { _root.player._x = 58.5; _root.player._y = 287.9; } if (s == 3) { _root.player._x = 615.6; _root.player._y = 259.9; } } else { _root.gotoAndPlay(19); } } } onClipEvent (keyUp) { _root.Fly = false; }
Instance of Symbol 87 MovieClip [lives] "lives0" in Frame 15
onClipEvent (enterFrame) { if (_root.life < 6) { this._visible = false; } else { this._visible = true; } }
Instance of Symbol 87 MovieClip [lives] "lives1" in Frame 15
onClipEvent (enterFrame) { if (_root.life < 5) { this._visible = false; } else { this._visible = true; } }
Instance of Symbol 87 MovieClip [lives] "lives2" in Frame 15
onClipEvent (enterFrame) { if (_root.life < 4) { this._visible = false; } else { this._visible = true; } }
Instance of Symbol 87 MovieClip [lives] "lives3" in Frame 15
onClipEvent (enterFrame) { if (_root.life < 3) { this._visible = false; } else { this._visible = true; } }
Instance of Symbol 87 MovieClip [lives] "lives4" in Frame 15
onClipEvent (enterFrame) { if (_root.life <= 1) { this._visible = false; } else { this._visible = true; } }
Instance of Symbol 150 MovieClip [Actions] in Frame 15
onClipEvent (enterFrame) { _root.goPlay++; if (_root.goPlay == 30) { _root.gotoAndStop(16); } if ((Math.abs(_root.nLastXPos - _root.player._x) > 1) and (_root.nLastYPos == _root.player._y)) { if (_root.sDirection == "Right") { _root.player.gotoAndPlay(29); } else { _root.player.gotoAndPlay(31); } } _root.nLastYPos = _root.player._y; _root.nLastXPos = _root.player._x; }
Frame 16
stop(); var enemySafe = true; var playerSafe = false; goPlay = 0; kount = 0; var hitCount = 0; var nextEnemyTime = (getTimer() + timeBetweenEnemies); var enemies = []; var numEnemies = (wave * 3); var nextEnemy = 0; var enemyDead = false; var pursuit = false; var ticks = 0;
Instance of Symbol 150 MovieClip [Actions] in Frame 16
onClipEvent (enterFrame) { if (_root.score == 20000) { _root.life = _root.life + 1; } _root.createEnemy(); _root.moveEnemy(); _root.checkCollision(); if ((Math.abs(_root.nLastXPos - _root.player._x) > 1) and (_root.nLastYPos == _root.player._y)) { if (_root.sDirection == "Right") { _root.player.gotoAndPlay(29); } else { _root.player.gotoAndPlay(31); } } _root.nLastYPos = _root.player._y; _root.nLastXPos = _root.player._x; }
Instance of Symbol 240 MovieClip "egg" in Frame 16
onClipEvent (load) { this.xspeed = 0; this.yspeed = Number(_root.enemy.yspeed - 5) * 1.1; this.jumpHeight = 3; this.gravity = 0.9; gotEgg = false; } onClipEvent (enterFrame) { this.yspeed = this.yspeed + this.gravity; x = this._x + this.xspeed; y = this._y + this.yspeed; if (!_root.bkg.hittest(x, this._y, true)) { this._x = x; } else { this.xspeed = 0; } if (!_root.bkg.hittest(this._x, y, true)) { this._y = y; } else if (this.yspeed < 0) { this.yspeed = this.yspeed * -0.96; } else { this.yspeed = 0; } if (_root.player.hittest(this) and (gotEgg == false)) { this.gotoAndPlay(2); _root.score = _root.score + 750; gotEgg = true; } }
Frame 17
Instance of Symbol 150 MovieClip [Actions] in Frame 17
onClipEvent (enterFrame) { if ((Math.abs(_root.nLastXPos - _root.player._x) > 1) and (_root.nLastYPos == _root.player._y)) { if (_root.sDirection == "Right") { _root.player.gotoAndPlay(29); } else { _root.player.gotoAndPlay(31); } } _root.nLastYPos = _root.player._y; _root.nLastXPos = _root.player._x; }
Instance of Symbol 185 MovieClip [player] "player" in Frame 17
onClipEvent (load) { _root.playerDead = false; _root.S = new Sound(); _root.S.attachSound("COIN4"); _root.S1 = new Sound(); _root.S1.attachSound("INSERT"); this.xspeed = 0; this.yspeed = 0; this.flap = true; this.flapHeight = 3; this.gravity = 0.8; } onClipEvent (enterFrame) { this.yspeed = this.yspeed + this.gravity; x = this._x + this.xspeed; y = this._y + this.yspeed; i = 0; while (i < _root.arraysize) { if (hittest(_root["enemy" + _root.array[i]])) { if (((_root["enemy" + _root.array[i]]._y < this._y) and (!_root.playerDead)) and (!_root["enemy" + _root.array[i]].enemyDead)) { _root.playerDead = true; this.playerRider.gotoAndPlay(2); this.xspeed = this.xspeed * -5; } else if (((_root["enemy" + _root.array[i]]._y == this._y) and (!_root.playerDead)) and (!_root["enemy" + _root.array[i]].enemyDead)) { _root.S1.start(); this.xspeed = this.xspeed * -2; } } i++; } if (!_root.bkg.hittest(x, this._y, true)) { this._x = x; } else { _root.S.start(); this.xspeed = this.xspeed * -1; } if (!_root.bkg.hittest(this._x, y, true)) { this._y = y; } else { if (this.yspeed < 0) { _root.S.start(); this.yspeed = this.yspeed * -1; } this.yspeed = 0; } if (Key.isDown(Key.left)) { this.xspeed = this.xspeed - 0.7; _root.sDirection = "Left"; } else if (Key.isDown(Key.right)) { this.xspeed = this.xspeed + 0.96; _root.sDirection = "Right"; } else { this.xspeed = this.xspeed * 0.9; } if (this.xspeed < -20) { this.xspeed = -20; } if (this.xspeed > 20) { this.xspeed = 20; } if (Key.isDown(Key.control) and (!_root.Fly)) { if (this.flap) { this.yspeed = this.yspeed - this.flapHeight; if (_root.sDirection == "Right") { _root.player.gotoAndPlay(7); } else { _root.player.gotoAndPlay(9); } } else { this.flap = false; } _root.Fly = true; } if (this._x > 800) { this._x = -1; this._y = this._y + -5; } if (this._x < -1) { this._x = 800; this._y = this._y + -5; } } onClipEvent (keyUp) { _root.Fly = false; }
Frame 18
stop(); wave = wave + 1; showWave(); if (_root.wave == 2) { _root.display = "SURVIVAL WAVE"; this.lava.gotoAndPlay(2); } if (_root.wave == 3) { _root.display = ""; this.lava.gotoAndPlay(29); } if (_root.wave == 4) { _root.display = "EGG WAVE"; this.lava.gotoAndPlay(46); } if (_root.wave == 5) { _root.display = "SURVIVAL WAVE"; this.lava.gotoAndPlay(46); } if (_root.wave > 5) { _root.display = ""; this.lava.gotoAndPlay(46); }
Instance of Symbol 150 MovieClip [Actions] in Frame 18
onClipEvent (enterFrame) { _root.createEnemy(); _root.moveEnemy(); _root.checkCollision(); if ((Math.abs(_root.nLastXPos - _root.player._x) > 1) and (_root.nLastYPos == _root.player._y)) { if (_root.sDirection == "Right") { _root.player.gotoAndPlay(29); } else { _root.player.gotoAndPlay(31); } } _root.nLastYPos = _root.player._y; _root.nLastXPos = _root.player._x; }
Frame 19
_root.playerDead = true;
Instance of Symbol 240 MovieClip "egg1" in Frame 19
onClipEvent (load) { this.xspeed = Number(_root.enemy.xspeed) * 1.1; this.yspeed = Number(_root.enemy.yspeed - 5) * 1.1; this.jumpHeight = 3; this.gravity = 0.9; gotEgg = false; } onClipEvent (enterFrame) { this.yspeed = this.yspeed + this.gravity; x = this._x + this.xspeed; y = this._y + this.yspeed; if (!_root.bkg.hittest(x, this._y, true)) { this._x = x; } else { this.xspeed = 0; } if (!_root.bkg.hittest(this._x, y, true)) { this._y = y; } else if (this.yspeed < 0) { this.yspeed = this.yspeed * -0.96; } else { this.yspeed = 0; } if (_root.player.hittest(this) and (gotEgg == false)) { this.gotoAndPlay(2); _root.score = _root.score + 750; gotEgg = true; } }
Frame 30
i = enemies.length - 1; while (i >= 0) { enemy = _root[enemies[i].clip]; enemy.removeMovieClip(); enemies.splice(i, 1); i--; } gotoAndStop (14);
Symbol 35 MovieClip [enemyRider ] Frame 1
stop();
Symbol 35 MovieClip [enemyRider ] Frame 2
stop();
Symbol 50 MovieClip [enemyWalkRight] Frame 5
stop();
Symbol 61 MovieClip [enemyWalkLeft ] Frame 5
stop();
Symbol 70 MovieClip [enemy] Frame 1
Symbol 70 MovieClip [enemy] Frame 16
enemySafe = false;
Symbol 70 MovieClip [enemy] Frame 17
stop();
Symbol 70 MovieClip [enemy] Frame 18
stop();
Symbol 70 MovieClip [enemy] Frame 19
stop();
Symbol 70 MovieClip [enemy] Frame 20
stop();
Symbol 70 MovieClip [enemy] Frame 21
stop();
Symbol 70 MovieClip [enemy] Frame 22
stop();
Symbol 70 MovieClip [enemy] Frame 26
gotoAndPlay (23);
Symbol 70 MovieClip [enemy] Frame 30
gotoAndPlay (27);
Instance of Symbol 81 MovieClip [borderColor copy] in Symbol 83 MovieClip [bordersides2] Frame 1
onClipEvent (load) { borderColor = new Color(this); colorTransform = {rb:255, bb:255, gb:255}; n = 1; } onClipEvent (enterFrame) { if (n == 1) { colorTransform.rb = colorTransform.rb - 5; if (colorTransform.rb == 0) { n = 2; } } else if (n == 2) { colorTransform.bb = colorTransform.bb - 5; if (colorTransform.bb == 0) { n = 3; } } else if (n == 3) { colorTransform.rb = colorTransform.rb + 5; if (colorTransform.rb == 255) { n = 4; } } else if (n == 4) { colorTransform.gb = colorTransform.gb - 5; if (colorTransform.gb == 0) { n = 5; } } else if (n == 5) { colorTransform.bb = colorTransform.bb + 5; if (colorTransform.bb == 255) { n = 6; } } else if (n == 6) { colorTransform.gb = colorTransform.gb + 5; if (colorTransform.gb == 255) { n = 1; } } borderColor.setTransform(colorTransform); }
Symbol 87 MovieClip [lives] Frame 1
stop();
Symbol 94 MovieClip [bubble] Frame 1
stop();
Symbol 103 MovieClip [topBubble] Frame 1
stop();
Symbol 127 MovieClip [lava] Frame 1
stop();
Instance of Symbol 103 MovieClip [topBubble] in Symbol 127 MovieClip [lava] Frame 1
onClipEvent (load) { topBubble = 0; } onClipEvent (enterFrame) { topBubble++; if (topBubble == 19) { this.gotoAndPlay(2); topBubble = 0; } }
Instance of Symbol 103 MovieClip [topBubble] in Symbol 127 MovieClip [lava] Frame 1
onClipEvent (load) { topBubble = 0; } onClipEvent (enterFrame) { topBubble++; if (topBubble == 23) { this.gotoAndPlay(2); topBubble = 0; } }
Instance of Symbol 103 MovieClip [topBubble] in Symbol 127 MovieClip [lava] Frame 1
onClipEvent (load) { topBubble = 0; } onClipEvent (enterFrame) { topBubble++; if (topBubble == 21) { this.gotoAndPlay(2); topBubble = 0; } }
Instance of Symbol 103 MovieClip [topBubble] in Symbol 127 MovieClip [lava] Frame 1
onClipEvent (load) { topBubble = 0; } onClipEvent (enterFrame) { topBubble++; if (topBubble == 25) { this.gotoAndPlay(2); topBubble = 0; } }
Instance of Symbol 103 MovieClip [topBubble] in Symbol 127 MovieClip [lava] Frame 1
onClipEvent (load) { topBubble = 0; } onClipEvent (enterFrame) { topBubble++; if (topBubble == 25) { this.gotoAndPlay(2); topBubble = 0; } }
Instance of Symbol 103 MovieClip [topBubble] in Symbol 127 MovieClip [lava] Frame 1
onClipEvent (load) { topBubble = 0; } onClipEvent (enterFrame) { topBubble++; if (topBubble == 22) { this.gotoAndPlay(2); topBubble = 0; } }
Instance of Symbol 103 MovieClip [topBubble] in Symbol 127 MovieClip [lava] Frame 1
onClipEvent (load) { topBubble = 0; } onClipEvent (enterFrame) { topBubble++; if (topBubble == 21) { this.gotoAndPlay(2); topBubble = 0; } }
Instance of Symbol 103 MovieClip [topBubble] in Symbol 127 MovieClip [lava] Frame 1
onClipEvent (load) { topBubble = 0; } onClipEvent (enterFrame) { topBubble++; if (topBubble == 18) { this.gotoAndPlay(2); topBubble = 0; } }
Symbol 127 MovieClip [lava] Frame 28
stop(); _root.gotoAndPlay(16);
Instance of Symbol 94 MovieClip [bubble] "bubble0" in Symbol 127 MovieClip [lava] Frame 28
onClipEvent (load) { nextBubble = 0; } onClipEvent (enterFrame) { nextBubble++; if (nextBubble == 10) { this.gotoAndPlay(2); nextBubble = 0; } }
Instance of Symbol 94 MovieClip [bubble] "bubble1" in Symbol 127 MovieClip [lava] Frame 28
onClipEvent (load) { nextBubble = 0; } onClipEvent (enterFrame) { nextBubble++; if (nextBubble == 8) { this.gotoAndPlay(2); nextBubble = 0; } }
Instance of Symbol 94 MovieClip [bubble] "bubble2" in Symbol 127 MovieClip [lava] Frame 28
onClipEvent (load) { nextBubble = 0; } onClipEvent (enterFrame) { nextBubble++; if (nextBubble == 15) { this.gotoAndPlay(2); nextBubble = 0; } }
Instance of Symbol 94 MovieClip [bubble] "bubble3" in Symbol 127 MovieClip [lava] Frame 28
onClipEvent (load) { nextBubble = 0; } onClipEvent (enterFrame) { nextBubble++; if (nextBubble == 13) { this.gotoAndPlay(2); nextBubble = 0; } }
Instance of Symbol 94 MovieClip [bubble] "bubble4" in Symbol 127 MovieClip [lava] Frame 28
onClipEvent (load) { nextBubble = 0; } onClipEvent (enterFrame) { nextBubble++; if (nextBubble == 11) { this.gotoAndPlay(2); nextBubble = 0; } }
Instance of Symbol 94 MovieClip [bubble] "bubble5" in Symbol 127 MovieClip [lava] Frame 28
onClipEvent (load) { nextBubble = 0; } onClipEvent (enterFrame) { nextBubble++; if (nextBubble == 17) { this.gotoAndPlay(2); nextBubble = 0; } }
Instance of Symbol 103 MovieClip [topBubble] in Symbol 127 MovieClip [lava] Frame 28
onClipEvent (load) { topBubble = 0; } onClipEvent (enterFrame) { topBubble++; if (topBubble == 19) { this.gotoAndPlay(2); topBubble = 0; } }
Instance of Symbol 103 MovieClip [topBubble] in Symbol 127 MovieClip [lava] Frame 28
onClipEvent (load) { topBubble = 0; } onClipEvent (enterFrame) { topBubble++; if (topBubble == 23) { this.gotoAndPlay(2); topBubble = 0; } }
Instance of Symbol 103 MovieClip [topBubble] in Symbol 127 MovieClip [lava] Frame 28
onClipEvent (load) { topBubble = 0; } onClipEvent (enterFrame) { topBubble++; if (topBubble == 21) { this.gotoAndPlay(2); topBubble = 0; } }
Instance of Symbol 103 MovieClip [topBubble] in Symbol 127 MovieClip [lava] Frame 28
onClipEvent (load) { topBubble = 0; } onClipEvent (enterFrame) { topBubble++; if (topBubble == 25) { this.gotoAndPlay(2); topBubble = 0; } }
Instance of Symbol 103 MovieClip [topBubble] in Symbol 127 MovieClip [lava] Frame 28
onClipEvent (load) { topBubble = 0; } onClipEvent (enterFrame) { topBubble++; if (topBubble == 25) { this.gotoAndPlay(2); topBubble = 0; } }
Instance of Symbol 103 MovieClip [topBubble] in Symbol 127 MovieClip [lava] Frame 28
onClipEvent (load) { topBubble = 0; } onClipEvent (enterFrame) { topBubble++; if (topBubble == 22) { this.gotoAndPlay(2); topBubble = 0; } }
Instance of Symbol 103 MovieClip [topBubble] in Symbol 127 MovieClip [lava] Frame 28
onClipEvent (load) { topBubble = 0; } onClipEvent (enterFrame) { topBubble++; if (topBubble == 21) { this.gotoAndPlay(2); topBubble = 0; } }
Instance of Symbol 103 MovieClip [topBubble] in Symbol 127 MovieClip [lava] Frame 28
onClipEvent (load) { topBubble = 0; } onClipEvent (enterFrame) { topBubble++; if (topBubble == 18) { this.gotoAndPlay(2); topBubble = 0; } }
Symbol 127 MovieClip [lava] Frame 45
stop(); _root.gotoAndPlay(16);
Instance of Symbol 94 MovieClip [bubble] "bubble0" in Symbol 127 MovieClip [lava] Frame 45
onClipEvent (load) { nextBubble = 0; } onClipEvent (enterFrame) { nextBubble++; if (nextBubble == 10) { this.gotoAndPlay(2); nextBubble = 0; } }
Instance of Symbol 94 MovieClip [bubble] "bubble1" in Symbol 127 MovieClip [lava] Frame 45
onClipEvent (load) { nextBubble = 0; } onClipEvent (enterFrame) { nextBubble++; if (nextBubble == 8) { this.gotoAndPlay(2); nextBubble = 0; } }
Instance of Symbol 94 MovieClip [bubble] "bubble2" in Symbol 127 MovieClip [lava] Frame 45
onClipEvent (load) { nextBubble = 0; } onClipEvent (enterFrame) { nextBubble++; if (nextBubble == 15) { this.gotoAndPlay(2); nextBubble = 0; } }
Instance of Symbol 94 MovieClip [bubble] "bubble3" in Symbol 127 MovieClip [lava] Frame 45
onClipEvent (load) { nextBubble = 0; } onClipEvent (enterFrame) { nextBubble++; if (nextBubble == 13) { this.gotoAndPlay(2); nextBubble = 0; } }
Instance of Symbol 94 MovieClip [bubble] "bubble4" in Symbol 127 MovieClip [lava] Frame 45
onClipEvent (load) { nextBubble = 0; } onClipEvent (enterFrame) { nextBubble++; if (nextBubble == 11) { this.gotoAndPlay(2); nextBubble = 0; } }
Instance of Symbol 94 MovieClip [bubble] "bubble5" in Symbol 127 MovieClip [lava] Frame 45
onClipEvent (load) { nextBubble = 0; } onClipEvent (enterFrame) { nextBubble++; if (nextBubble == 17) { this.gotoAndPlay(2); nextBubble = 0; } }
Instance of Symbol 103 MovieClip [topBubble] in Symbol 127 MovieClip [lava] Frame 45
onClipEvent (load) { topBubble = 0; } onClipEvent (enterFrame) { topBubble++; if (topBubble == 19) { this.gotoAndPlay(2); topBubble = 0; } }
Instance of Symbol 103 MovieClip [topBubble] in Symbol 127 MovieClip [lava] Frame 45
onClipEvent (load) { topBubble = 0; } onClipEvent (enterFrame) { topBubble++; if (topBubble == 23) { this.gotoAndPlay(2); topBubble = 0; } }
Instance of Symbol 103 MovieClip [topBubble] in Symbol 127 MovieClip [lava] Frame 45
onClipEvent (load) { topBubble = 0; } onClipEvent (enterFrame) { topBubble++; if (topBubble == 21) { this.gotoAndPlay(2); topBubble = 0; } }
Instance of Symbol 103 MovieClip [topBubble] in Symbol 127 MovieClip [lava] Frame 45
onClipEvent (load) { topBubble = 0; } onClipEvent (enterFrame) { topBubble++; if (topBubble == 25) { this.gotoAndPlay(2); topBubble = 0; } }
Instance of Symbol 103 MovieClip [topBubble] in Symbol 127 MovieClip [lava] Frame 45
onClipEvent (load) { topBubble = 0; } onClipEvent (enterFrame) { topBubble++; if (topBubble == 25) { this.gotoAndPlay(2); topBubble = 0; } }
Instance of Symbol 103 MovieClip [topBubble] in Symbol 127 MovieClip [lava] Frame 45
onClipEvent (load) { topBubble = 0; } onClipEvent (enterFrame) { topBubble++; if (topBubble == 22) { this.gotoAndPlay(2); topBubble = 0; } }
Instance of Symbol 103 MovieClip [topBubble] in Symbol 127 MovieClip [lava] Frame 45
onClipEvent (load) { topBubble = 0; } onClipEvent (enterFrame) { topBubble++; if (topBubble == 21) { this.gotoAndPlay(2); topBubble = 0; } }
Instance of Symbol 103 MovieClip [topBubble] in Symbol 127 MovieClip [lava] Frame 45
onClipEvent (load) { topBubble = 0; } onClipEvent (enterFrame) { topBubble++; if (topBubble == 18) { this.gotoAndPlay(2); topBubble = 0; } }
Symbol 127 MovieClip [lava] Frame 60
stop(); _root.gotoAndPlay(16);
Symbol 138 MovieClip [walkSlowLeft] Frame 5
stop();
Symbol 149 MovieClip [walkSlowRight] Frame 5
stop();
Symbol 165 MovieClip [playerRider] Frame 1
stop();
Instance of Symbol 150 MovieClip [Actions] in Symbol 165 MovieClip [playerRider] Frame 1
/* no clip actions */
Symbol 165 MovieClip [playerRider] Frame 14
stop();
Symbol 185 MovieClip [player] Frame 1
if (!_root.playerSafe) { this.gotoAndPlay(27); } else { this.play(); }
Symbol 185 MovieClip [player] Frame 26
if (!_root.playerSafe) { this.gotoAndPlay(27); } else { this.gotoAndPlay(17); }
Symbol 185 MovieClip [player] Frame 27
stop();
Symbol 185 MovieClip [player] Frame 28
stop();
Symbol 185 MovieClip [player] Frame 29
stop();
Symbol 185 MovieClip [player] Frame 30
stop();
Symbol 185 MovieClip [player] Frame 31
stop();
Symbol 185 MovieClip [player] Frame 32
stop();
Symbol 185 MovieClip [player] Frame 33
Symbol 185 MovieClip [player] Frame 34
stop();
Symbol 185 MovieClip [player] Frame 35
Symbol 185 MovieClip [player] Frame 36
stop();
Symbol 192 Button [play]
on (release) { gotoAndPlay (15); }
Instance of Symbol 193 MovieClip [borderColor] in Symbol 194 MovieClip [borderColors] Frame 1
onClipEvent (load) { borderColor = new Color(this); colorTransform = {rb:255, bb:255, gb:255}; n = 1; } onClipEvent (enterFrame) { if (n == 1) { colorTransform.rb = colorTransform.rb - 5; if (colorTransform.rb == 0) { n = 2; } } else if (n == 2) { colorTransform.bb = colorTransform.bb - 5; if (colorTransform.bb == 0) { n = 3; } } else if (n == 3) { colorTransform.rb = colorTransform.rb + 5; if (colorTransform.rb == 255) { n = 4; } } else if (n == 4) { colorTransform.gb = colorTransform.gb - 5; if (colorTransform.gb == 0) { n = 5; } } else if (n == 5) { colorTransform.bb = colorTransform.bb + 5; if (colorTransform.bb == 255) { n = 6; } } else if (n == 6) { colorTransform.gb = colorTransform.gb + 5; if (colorTransform.gb == 255) { n = 1; } } borderColor.setTransform(colorTransform); }
Instance of Symbol 81 MovieClip [borderColor copy] in Symbol 195 MovieClip [bordersides] Frame 1
onClipEvent (load) { borderColor = new Color(this); colorTransform = {rb:255, bb:255, gb:255}; n = 1; } onClipEvent (enterFrame) { if (n == 1) { colorTransform.rb = colorTransform.rb - 5; if (colorTransform.rb == 0) { n = 2; } } else if (n == 2) { colorTransform.bb = colorTransform.bb - 5; if (colorTransform.bb == 0) { n = 3; } } else if (n == 3) { colorTransform.rb = colorTransform.rb + 5; if (colorTransform.rb == 255) { n = 4; } } else if (n == 4) { colorTransform.gb = colorTransform.gb - 5; if (colorTransform.gb == 0) { n = 5; } } else if (n == 5) { colorTransform.bb = colorTransform.bb + 5; if (colorTransform.bb == 255) { n = 6; } } else if (n == 6) { colorTransform.gb = colorTransform.gb + 5; if (colorTransform.gb == 255) { n = 1; } } borderColor.setTransform(colorTransform); }
Instance of Symbol 191 MovieClip [bkgBottom] in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.waveNum == "WAVE3") { this._width = 504.1; } }
Instance of Symbol 189 MovieClip [groundLeft] in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.waveNum == "WAVE3") { this._width--; } }
Instance of Symbol 187 MovieClip [groundRight] in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.waveNum == "WAVE3") { this._width--; } }
Symbol 240 MovieClip Frame 1
stop();
Symbol 240 MovieClip Frame 15
removeMovieClip("");

Library Items

Symbol 1 Font [scoreFont]Used by:207 213 218 251 253
Symbol 2 Font [Mainfont]Used by:73 77 78 201 202 203 204 208 224 225 230 241 248 250 255 256
Symbol 3 Sound [INSERT]
Symbol 4 Sound [COIN4]Used by:Timeline
Symbol 5 BitmapUsed by:6
Symbol 6 GraphicUses:5Used by:70 71 185
Symbol 7 SoundUsed by:70 71 185
Symbol 8 BitmapUsed by:9
Symbol 9 GraphicUses:8Used by:70 71 185
Symbol 10 BitmapUsed by:11
Symbol 11 GraphicUses:10Used by:70 71 185
Symbol 12 BitmapUsed by:13
Symbol 13 GraphicUses:12Used by:70 71 185
Symbol 14 BitmapUsed by:15
Symbol 15 GraphicUses:14Used by:70 71 185
Symbol 16 BitmapUsed by:17
Symbol 17 GraphicUses:16Used by:70 71 185
Symbol 18 BitmapUsed by:19
Symbol 19 GraphicUses:18Used by:70 71 185
Symbol 20 BitmapUsed by:21
Symbol 21 GraphicUses:20Used by:70 71 185
Symbol 22 BitmapUsed by:23
Symbol 23 GraphicUses:22Used by:70 71 185
Symbol 24 BitmapUsed by:25
Symbol 25 GraphicUses:24Used by:70 71 185
Symbol 26 BitmapUsed by:27
Symbol 27 GraphicUses:26Used by:70 71 185
Symbol 28 BitmapUsed by:29
Symbol 29 GraphicUses:28Used by:70 71 185
Symbol 30 BitmapUsed by:31
Symbol 31 GraphicUses:30Used by:70 71 185
Symbol 32 BitmapUsed by:33
Symbol 33 GraphicUses:32Used by:35
Symbol 34 SoundUsed by:35 165
Symbol 35 MovieClip [enemyRider ]Uses:33 34Used by:70
Symbol 36 BitmapUsed by:37
Symbol 37 GraphicUses:36Used by:70
Symbol 38 BitmapUsed by:39
Symbol 39 GraphicUses:38Used by:70
Symbol 40 BitmapUsed by:41
Symbol 41 GraphicUses:40Used by:50
Symbol 42 BitmapUsed by:43
Symbol 43 GraphicUses:42Used by:50
Symbol 44 BitmapUsed by:45
Symbol 45 GraphicUses:44Used by:50
Symbol 46 BitmapUsed by:47
Symbol 47 GraphicUses:46Used by:50
Symbol 48 BitmapUsed by:49
Symbol 49 GraphicUses:48Used by:50
Symbol 50 MovieClip [enemyWalkRight]Uses:41 43 45 47 49Used by:70
Symbol 51 BitmapUsed by:52
Symbol 52 GraphicUses:51Used by:61
Symbol 53 BitmapUsed by:54
Symbol 54 GraphicUses:53Used by:61
Symbol 55 BitmapUsed by:56
Symbol 56 GraphicUses:55Used by:61
Symbol 57 BitmapUsed by:58
Symbol 58 GraphicUses:57Used by:61
Symbol 59 BitmapUsed by:60
Symbol 60 GraphicUses:59Used by:61
Symbol 61 MovieClip [enemyWalkLeft ]Uses:52 54 56 58 60Used by:70
Symbol 62 BitmapUsed by:63
Symbol 63 GraphicUses:62Used by:70
Symbol 64 BitmapUsed by:65
Symbol 65 GraphicUses:64Used by:70
Symbol 66 BitmapUsed by:67
Symbol 67 GraphicUses:66Used by:70
Symbol 68 BitmapUsed by:69
Symbol 69 GraphicUses:68Used by:70
Symbol 70 MovieClip [enemy]Uses:6 7 9 11 13 15 17 19 21 23 25 27 29 31 35 37 39 50 61 63 65 67 69
Symbol 71 MovieClip [playerStart]Uses:31 7 6 9 11 13 15 17 19 21 23 25 27 29
Symbol 72 GraphicUsed by:80 192
Symbol 73 TextUses:2Used by:80 192
Symbol 74 GraphicUsed by:75 80 81 192 193
Symbol 75 MovieClip [BLINKING]Uses:74Used by:80 192
Symbol 76 GraphicUsed by:80 192
Symbol 77 TextUses:2Used by:80 192
Symbol 78 TextUses:2Used by:80 192
Symbol 79 GraphicUsed by:80 192
Symbol 80 Button [play]Uses:72 73 75 76 77 78 79 74
Symbol 81 MovieClip [borderColor copy]Uses:74Used by:83 195
Symbol 82 GraphicUsed by:83 194 195
Symbol 83 MovieClip [bordersides2]Uses:81 82
Symbol 84 GraphicUsed by:85
Symbol 85 MovieClip [flapTarget]Uses:84Used by:Timeline
Symbol 86 GraphicUsed by:87
Symbol 87 MovieClip [lives]Uses:86Used by:Timeline
Symbol 88 BitmapUsed by:89
Symbol 89 GraphicUses:88Used by:94
Symbol 90 BitmapUsed by:91
Symbol 91 GraphicUses:90Used by:94
Symbol 92 BitmapUsed by:93
Symbol 93 GraphicUses:92Used by:94
Symbol 94 MovieClip [bubble]Uses:89 91 93Used by:127
Symbol 95 BitmapUsed by:96
Symbol 96 GraphicUses:95Used by:103
Symbol 97 BitmapUsed by:98
Symbol 98 GraphicUses:97Used by:103
Symbol 99 BitmapUsed by:100
Symbol 100 GraphicUses:99Used by:103
Symbol 101 BitmapUsed by:102
Symbol 102 GraphicUses:101Used by:103
Symbol 103 MovieClip [topBubble]Uses:96 98 100 102Used by:127
Symbol 104 GraphicUsed by:127
Symbol 105 SoundUsed by:127
Symbol 106 GraphicUsed by:127
Symbol 107 GraphicUsed by:127
Symbol 108 GraphicUsed by:127
Symbol 109 GraphicUsed by:127
Symbol 110 GraphicUsed by:127
Symbol 111 GraphicUsed by:127
Symbol 112 GraphicUsed by:127
Symbol 113 GraphicUsed by:127
Symbol 114 GraphicUsed by:127
Symbol 115 GraphicUsed by:127
Symbol 116 GraphicUsed by:127
Symbol 117 GraphicUsed by:127
Symbol 118 GraphicUsed by:127
Symbol 119 GraphicUsed by:127
Symbol 120 GraphicUsed by:127
Symbol 121 GraphicUsed by:127
Symbol 122 GraphicUsed by:127
Symbol 123 GraphicUsed by:127
Symbol 124 GraphicUsed by:127
Symbol 125 GraphicUsed by:127
Symbol 126 GraphicUsed by:127
Symbol 127 MovieClip [lava]Uses:103 104 105 106 107 108 109 110 111 112 113 114 115 116 94 117 118 119 120 121 122 123 124 125 126Used by:Timeline
Symbol 128 BitmapUsed by:129
Symbol 129 GraphicUses:128Used by:138
Symbol 130 BitmapUsed by:131
Symbol 131 GraphicUses:130Used by:138
Symbol 132 BitmapUsed by:133
Symbol 133 GraphicUses:132Used by:138
Symbol 134 BitmapUsed by:135
Symbol 135 GraphicUses:134Used by:138
Symbol 136 BitmapUsed by:137
Symbol 137 GraphicUses:136Used by:138
Symbol 138 MovieClip [walkSlowLeft]Uses:129 131 133 135 137Used by:185
Symbol 139 BitmapUsed by:140
Symbol 140 GraphicUses:139Used by:149
Symbol 141 BitmapUsed by:142
Symbol 142 GraphicUses:141Used by:149
Symbol 143 BitmapUsed by:144
Symbol 144 GraphicUses:143Used by:149
Symbol 145 BitmapUsed by:146
Symbol 146 GraphicUses:145Used by:149
Symbol 147 BitmapUsed by:148
Symbol 148 GraphicUses:147Used by:149
Symbol 149 MovieClip [walkSlowRight]Uses:140 142 144 146 148Used by:185
Symbol 150 MovieClip [Actions]Used by:165 240  Timeline
Symbol 151 BitmapUsed by:152
Symbol 152 GraphicUses:151Used by:165
Symbol 153 BitmapUsed by:154
Symbol 154 GraphicUses:153Used by:165
Symbol 155 BitmapUsed by:156
Symbol 156 GraphicUses:155Used by:165
Symbol 157 BitmapUsed by:158
Symbol 158 GraphicUses:157Used by:165
Symbol 159 BitmapUsed by:160
Symbol 160 GraphicUses:159Used by:165
Symbol 161 BitmapUsed by:162
Symbol 162 GraphicUses:161Used by:165
Symbol 163 BitmapUsed by:164
Symbol 164 GraphicUses:163Used by:165
Symbol 165 MovieClip [playerRider]Uses:152 150 154 34 156 158 160 162 164Used by:185
Symbol 166 SoundUsed by:185
Symbol 167 BitmapUsed by:168
Symbol 168 GraphicUses:167Used by:185
Symbol 169 BitmapUsed by:170
Symbol 170 GraphicUses:169Used by:185
Symbol 171 GraphicUsed by:185
Symbol 172 BitmapUsed by:173
Symbol 173 GraphicUses:172Used by:185
Symbol 174 BitmapUsed by:175
Symbol 175 GraphicUses:174Used by:185
Symbol 176 BitmapUsed by:177
Symbol 177 GraphicUses:176Used by:185
Symbol 178 SoundUsed by:185
Symbol 179 BitmapUsed by:180
Symbol 180 GraphicUses:179Used by:185
Symbol 181 BitmapUsed by:182
Symbol 182 GraphicUses:181Used by:185
Symbol 183 BitmapUsed by:184
Symbol 184 GraphicUses:183Used by:185
Symbol 185 MovieClip [player]Uses:6 7 9 11 13 15 17 19 21 23 25 27 29 31 166 168 170 171 165 173 175 149 138 177 178 180 182 184Used by:Timeline
Symbol 186 GraphicUsed by:187
Symbol 187 MovieClip [groundRight]Uses:186Used by:212
Symbol 188 GraphicUsed by:189
Symbol 189 MovieClip [groundLeft]Uses:188Used by:212
Symbol 190 GraphicUsed by:191
Symbol 191 MovieClip [bkgBottom]Uses:190Used by:212
Symbol 192 Button [play]Uses:72 73 75 76 77 78 79 74Used by:Timeline
Symbol 193 MovieClip [borderColor]Uses:74Used by:194
Symbol 194 MovieClip [borderColors]Uses:193 82Used by:Timeline
Symbol 195 MovieClip [bordersides]Uses:81 82Used by:Timeline
Symbol 196 FontUsed by:198 199
Symbol 197 FontUsed by:198
Symbol 198 EditableTextUses:196 214 226 197Used by:Timeline
Symbol 199 EditableTextUses:196 214 226Used by:Timeline
Symbol 200 GraphicUsed by:Timeline
Symbol 201 TextUses:2Used by:Timeline
Symbol 202 TextUses:2Used by:Timeline
Symbol 203 TextUses:2Used by:Timeline
Symbol 204 TextUses:2Used by:Timeline
Symbol 205 FontUsed by:206
Symbol 206 TextUses:205Used by:Timeline
Symbol 207 TextUses:1Used by:Timeline
Symbol 208 TextUses:2Used by:Timeline
Symbol 209 SoundUsed by:Timeline
Symbol 210 GraphicUsed by:Timeline
Symbol 211 GraphicUsed by:212
Symbol 212 MovieClipUses:211 191 189 187Used by:Timeline
Symbol 213 EditableTextUses:1Used by:Timeline
Symbol 214 FontUsed by:198 199 215 220 221 222 223 252
Symbol 215 EditableTextUses:214Used by:Timeline
Symbol 216 FontUsed by:218 253
Symbol 217 FontUsed by:218 253
Symbol 218 TextUses:1 216 217Used by:Timeline
Symbol 219 GraphicUsed by:Timeline
Symbol 220 EditableTextUses:214Used by:Timeline
Symbol 221 EditableTextUses:214Used by:Timeline
Symbol 222 EditableTextUses:214Used by:Timeline
Symbol 223 EditableTextUses:214Used by:Timeline
Symbol 224 TextUses:2Used by:Timeline
Symbol 225 EditableTextUses:2Used by:Timeline
Symbol 226 FontUsed by:198 199 227 249
Symbol 227 EditableTextUses:226Used by:Timeline
Symbol 228 FontUsed by:230 237 238
Symbol 229 FontUsed by:230
Symbol 230 TextUses:2 228 229Used by:Timeline
Symbol 231 SoundUsed by:Timeline
Symbol 232 FontUsed by:233 242 243 244 245 246 247 254
Symbol 233 EditableTextUses:232Used by:Timeline
Symbol 234 BitmapUsed by:235
Symbol 235 GraphicUses:234Used by:240
Symbol 236 MovieClipUsed by:240
Symbol 237 TextUses:228Used by:240
Symbol 238 TextUses:228Used by:240
Symbol 239 SoundUsed by:240
Symbol 240 MovieClipUses:235 150 236 237 238 239Used by:Timeline
Symbol 241 EditableTextUses:2Used by:Timeline
Symbol 242 EditableTextUses:232Used by:Timeline
Symbol 243 EditableTextUses:232Used by:Timeline
Symbol 244 EditableTextUses:232Used by:Timeline
Symbol 245 EditableTextUses:232Used by:Timeline
Symbol 246 EditableTextUses:232Used by:Timeline
Symbol 247 EditableTextUses:232Used by:Timeline
Symbol 248 EditableTextUses:2Used by:Timeline
Symbol 249 EditableTextUses:226Used by:Timeline
Symbol 250 EditableTextUses:2Used by:Timeline
Symbol 251 EditableTextUses:1Used by:Timeline
Symbol 252 EditableTextUses:214Used by:Timeline
Symbol 253 TextUses:1 216 217Used by:Timeline
Symbol 254 EditableTextUses:232Used by:Timeline
Symbol 255 TextUses:2Used by:Timeline
Symbol 256 TextUses:2Used by:Timeline

Instance Names

"bkg"Frame 15Symbol 212 MovieClip
"player"Frame 15Symbol 185 MovieClip [player]
"lava"Frame 15Symbol 127 MovieClip [lava]
"lives0"Frame 15Symbol 87 MovieClip [lives]
"lives1"Frame 15Symbol 87 MovieClip [lives]
"lives2"Frame 15Symbol 87 MovieClip [lives]
"lives3"Frame 15Symbol 87 MovieClip [lives]
"lives4"Frame 15Symbol 87 MovieClip [lives]
"egg"Frame 16Symbol 240 MovieClip
"flapTarget"Frame 16Symbol 85 MovieClip [flapTarget]
"player"Frame 17Symbol 185 MovieClip [player]
"egg1"Frame 19Symbol 240 MovieClip
"enemyRider"Symbol 70 MovieClip [enemy] Frame 17Symbol 35 MovieClip [enemyRider ]
"bubble0"Symbol 127 MovieClip [lava] Frame 28Symbol 94 MovieClip [bubble]
"bubble1"Symbol 127 MovieClip [lava] Frame 28Symbol 94 MovieClip [bubble]
"bubble2"Symbol 127 MovieClip [lava] Frame 28Symbol 94 MovieClip [bubble]
"bubble3"Symbol 127 MovieClip [lava] Frame 28Symbol 94 MovieClip [bubble]
"bubble4"Symbol 127 MovieClip [lava] Frame 28Symbol 94 MovieClip [bubble]
"bubble5"Symbol 127 MovieClip [lava] Frame 28Symbol 94 MovieClip [bubble]
"bubble0"Symbol 127 MovieClip [lava] Frame 45Symbol 94 MovieClip [bubble]
"bubble1"Symbol 127 MovieClip [lava] Frame 45Symbol 94 MovieClip [bubble]
"bubble2"Symbol 127 MovieClip [lava] Frame 45Symbol 94 MovieClip [bubble]
"bubble3"Symbol 127 MovieClip [lava] Frame 45Symbol 94 MovieClip [bubble]
"bubble4"Symbol 127 MovieClip [lava] Frame 45Symbol 94 MovieClip [bubble]
"bubble5"Symbol 127 MovieClip [lava] Frame 45Symbol 94 MovieClip [bubble]
"playerRider"Symbol 185 MovieClip [player] Frame 27Symbol 165 MovieClip [playerRider]
"follow"Symbol 240 MovieClip Frame 2Symbol 236 MovieClip

Special Tags

Protect (24)Timeline Frame 131 bytes "..$1$XA$hORsSz2ulvK5FlApvzLIE/."
ExportAssets (56)Timeline Frame 1Symbol 1 as "scoreFont"
ExportAssets (56)Timeline Frame 1Symbol 2 as "Mainfont"
ExportAssets (56)Timeline Frame 1Symbol 3 as "INSERT"
ExportAssets (56)Timeline Frame 1Symbol 4 as "COIN4"
ExportAssets (56)Timeline Frame 1Symbol 35 as "enemyRider "
ExportAssets (56)Timeline Frame 1Symbol 35 as "enemyRider "
ExportAssets (56)Timeline Frame 1Symbol 35 as "enemyRider "
ExportAssets (56)Timeline Frame 1Symbol 50 as "enemyWalkRight"
ExportAssets (56)Timeline Frame 1Symbol 35 as "enemyRider "
ExportAssets (56)Timeline Frame 1Symbol 35 as "enemyRider "
ExportAssets (56)Timeline Frame 1Symbol 61 as "enemyWalkLeft "
ExportAssets (56)Timeline Frame 1Symbol 35 as "enemyRider "
ExportAssets (56)Timeline Frame 1Symbol 35 as "enemyRider "
ExportAssets (56)Timeline Frame 1Symbol 35 as "enemyRider "
ExportAssets (56)Timeline Frame 1Symbol 35 as "enemyRider "
ExportAssets (56)Timeline Frame 1Symbol 35 as "enemyRider "
ExportAssets (56)Timeline Frame 1Symbol 35 as "enemyRider "
ExportAssets (56)Timeline Frame 1Symbol 35 as "enemyRider "
ExportAssets (56)Timeline Frame 1Symbol 35 as "enemyRider "
ExportAssets (56)Timeline Frame 1Symbol 35 as "enemyRider "
ExportAssets (56)Timeline Frame 1Symbol 70 as "enemy"
ExportAssets (56)Timeline Frame 1Symbol 61 as "enemyWalkLeft "
ExportAssets (56)Timeline Frame 1Symbol 50 as "enemyWalkRight"
ExportAssets (56)Timeline Frame 1Symbol 35 as "enemyRider "
ExportAssets (56)Timeline Frame 1Symbol 71 as "playerStart"
ExportAssets (56)Timeline Frame 1Symbol 2 as "Mainfont"
ExportAssets (56)Timeline Frame 1Symbol 75 as "BLINKING"
ExportAssets (56)Timeline Frame 1Symbol 2 as "Mainfont"
ExportAssets (56)Timeline Frame 1Symbol 2 as "Mainfont"
ExportAssets (56)Timeline Frame 1Symbol 80 as "play"
ExportAssets (56)Timeline Frame 1Symbol 81 as "borderColor copy"
ExportAssets (56)Timeline Frame 1Symbol 81 as "borderColor copy"
ExportAssets (56)Timeline Frame 1Symbol 81 as "borderColor copy"
ExportAssets (56)Timeline Frame 1Symbol 81 as "borderColor copy"
ExportAssets (56)Timeline Frame 1Symbol 81 as "borderColor copy"
ExportAssets (56)Timeline Frame 1Symbol 81 as "borderColor copy"
ExportAssets (56)Timeline Frame 1Symbol 83 as "bordersides2"
ExportAssets (56)Timeline Frame 1Symbol 85 as "flapTarget"
ExportAssets (56)Timeline Frame 1Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 103 as "topBubble"
ExportAssets (56)Timeline Frame 1Symbol 127 as "lava"
ExportAssets (56)Timeline Frame 1Symbol 138 as "walkSlowLeft"
ExportAssets (56)Timeline Frame 1Symbol 149 as "walkSlowRight"
ExportAssets (56)Timeline Frame 1Symbol 150 as "Actions"
ExportAssets (56)Timeline Frame 1Symbol 150 as "Actions"
ExportAssets (56)Timeline Frame 1Symbol 165 as "playerRider"
ExportAssets (56)Timeline Frame 1Symbol 165 as "playerRider"
ExportAssets (56)Timeline Frame 1Symbol 165 as "playerRider"
ExportAssets (56)Timeline Frame 1Symbol 165 as "playerRider"
ExportAssets (56)Timeline Frame 1Symbol 149 as "walkSlowRight"
ExportAssets (56)Timeline Frame 1Symbol 165 as "playerRider"
ExportAssets (56)Timeline Frame 1Symbol 165 as "playerRider"
ExportAssets (56)Timeline Frame 1Symbol 138 as "walkSlowLeft"
ExportAssets (56)Timeline Frame 1Symbol 165 as "playerRider"
ExportAssets (56)Timeline Frame 1Symbol 165 as "playerRider"
ExportAssets (56)Timeline Frame 1Symbol 165 as "playerRider"
ExportAssets (56)Timeline Frame 1Symbol 165 as "playerRider"
ExportAssets (56)Timeline Frame 1Symbol 165 as "playerRider"
ExportAssets (56)Timeline Frame 1Symbol 185 as "player"
ExportAssets (56)Timeline Frame 1Symbol 187 as "groundRight"
ExportAssets (56)Timeline Frame 1Symbol 189 as "groundLeft"
ExportAssets (56)Timeline Frame 1Symbol 191 as "bkgBottom"
ExportAssets (56)Timeline Frame 1Symbol 75 as "BLINKING"
ExportAssets (56)Timeline Frame 1Symbol 75 as "BLINKING"
ExportAssets (56)Timeline Frame 1Symbol 192 as "play"
ExportAssets (56)Timeline Frame 1Symbol 193 as "borderColor"
ExportAssets (56)Timeline Frame 1Symbol 193 as "borderColor"
ExportAssets (56)Timeline Frame 1Symbol 193 as "borderColor"
ExportAssets (56)Timeline Frame 1Symbol 193 as "borderColor"
ExportAssets (56)Timeline Frame 1Symbol 193 as "borderColor"
ExportAssets (56)Timeline Frame 1Symbol 193 as "borderColor"
ExportAssets (56)Timeline Frame 1Symbol 193 as "borderColor"
ExportAssets (56)Timeline Frame 1Symbol 194 as "borderColors"
ExportAssets (56)Timeline Frame 1Symbol 81 as "borderColor copy"
ExportAssets (56)Timeline Frame 1Symbol 81 as "borderColor copy"
ExportAssets (56)Timeline Frame 1Symbol 81 as "borderColor copy"
ExportAssets (56)Timeline Frame 1Symbol 81 as "borderColor copy"
ExportAssets (56)Timeline Frame 1Symbol 81 as "borderColor copy"
ExportAssets (56)Timeline Frame 1Symbol 81 as "borderColor copy"
ExportAssets (56)Timeline Frame 1Symbol 81 as "borderColor copy"
ExportAssets (56)Timeline Frame 1Symbol 195 as "bordersides"
ExportAssets (56)Timeline Frame 1Symbol 195 as "bordersides"
ExportAssets (56)Timeline Frame 1Symbol 194 as "borderColors"
ExportAssets (56)Timeline Frame 1Symbol 194 as "borderColors"
ExportAssets (56)Timeline Frame 1Symbol 195 as "bordersides"
ExportAssets (56)Timeline Frame 1Symbol 2 as "Mainfont"
ExportAssets (56)Timeline Frame 1Symbol 2 as "Mainfont"
ExportAssets (56)Timeline Frame 1Symbol 2 as "Mainfont"
ExportAssets (56)Timeline Frame 1Symbol 2 as "Mainfont"
ExportAssets (56)Timeline Frame 1Symbol 2 as "Mainfont"
ExportAssets (56)Timeline Frame 1Symbol 2 as "Mainfont"
ExportAssets (56)Timeline Frame 1Symbol 2 as "Mainfont"
ExportAssets (56)Timeline Frame 2Symbol 195 as "bordersides"
ExportAssets (56)Timeline Frame 2Symbol 194 as "borderColors"
ExportAssets (56)Timeline Frame 2Symbol 194 as "borderColors"
ExportAssets (56)Timeline Frame 2Symbol 195 as "bordersides"
ExportAssets (56)Timeline Frame 3Symbol 195 as "bordersides"
ExportAssets (56)Timeline Frame 3Symbol 194 as "borderColors"
ExportAssets (56)Timeline Frame 3Symbol 194 as "borderColors"
ExportAssets (56)Timeline Frame 3Symbol 195 as "bordersides"
ExportAssets (56)Timeline Frame 4Symbol 195 as "bordersides"
ExportAssets (56)Timeline Frame 4Symbol 194 as "borderColors"
ExportAssets (56)Timeline Frame 4Symbol 194 as "borderColors"
ExportAssets (56)Timeline Frame 4Symbol 195 as "bordersides"
ExportAssets (56)Timeline Frame 5Symbol 195 as "bordersides"
ExportAssets (56)Timeline Frame 5Symbol 194 as "borderColors"
ExportAssets (56)Timeline Frame 5Symbol 194 as "borderColors"
ExportAssets (56)Timeline Frame 5Symbol 195 as "bordersides"
ExportAssets (56)Timeline Frame 6Symbol 195 as "bordersides"
ExportAssets (56)Timeline Frame 6Symbol 194 as "borderColors"
ExportAssets (56)Timeline Frame 6Symbol 194 as "borderColors"
ExportAssets (56)Timeline Frame 6Symbol 195 as "bordersides"
ExportAssets (56)Timeline Frame 7Symbol 195 as "bordersides"
ExportAssets (56)Timeline Frame 7Symbol 194 as "borderColors"
ExportAssets (56)Timeline Frame 7Symbol 194 as "borderColors"
ExportAssets (56)Timeline Frame 7Symbol 195 as "bordersides"
ExportAssets (56)Timeline Frame 8Symbol 195 as "bordersides"
ExportAssets (56)Timeline Frame 8Symbol 194 as "borderColors"
ExportAssets (56)Timeline Frame 8Symbol 194 as "borderColors"
ExportAssets (56)Timeline Frame 8Symbol 195 as "bordersides"
ExportAssets (56)Timeline Frame 9Symbol 195 as "bordersides"
ExportAssets (56)Timeline Frame 9Symbol 194 as "borderColors"
ExportAssets (56)Timeline Frame 9Symbol 194 as "borderColors"
ExportAssets (56)Timeline Frame 9Symbol 195 as "bordersides"
ExportAssets (56)Timeline Frame 10Symbol 195 as "bordersides"
ExportAssets (56)Timeline Frame 10Symbol 194 as "borderColors"
ExportAssets (56)Timeline Frame 10Symbol 194 as "borderColors"
ExportAssets (56)Timeline Frame 10Symbol 195 as "bordersides"
ExportAssets (56)Timeline Frame 11Symbol 195 as "bordersides"
ExportAssets (56)Timeline Frame 11Symbol 194 as "borderColors"
ExportAssets (56)Timeline Frame 11Symbol 194 as "borderColors"
ExportAssets (56)Timeline Frame 11Symbol 195 as "bordersides"
ExportAssets (56)Timeline Frame 12Symbol 195 as "bordersides"
ExportAssets (56)Timeline Frame 12Symbol 194 as "borderColors"
ExportAssets (56)Timeline Frame 12Symbol 194 as "borderColors"
ExportAssets (56)Timeline Frame 12Symbol 195 as "bordersides"
ExportAssets (56)Timeline Frame 13Symbol 195 as "bordersides"
ExportAssets (56)Timeline Frame 13Symbol 194 as "borderColors"
ExportAssets (56)Timeline Frame 13Symbol 194 as "borderColors"
ExportAssets (56)Timeline Frame 13Symbol 195 as "bordersides"
ExportAssets (56)Timeline Frame 14Symbol 195 as "bordersides"
ExportAssets (56)Timeline Frame 14Symbol 194 as "borderColors"
ExportAssets (56)Timeline Frame 14Symbol 194 as "borderColors"
ExportAssets (56)Timeline Frame 14Symbol 195 as "bordersides"
ExportAssets (56)Timeline Frame 14Symbol 192 as "play"
ExportAssets (56)Timeline Frame 14Symbol 1 as "scoreFont"
ExportAssets (56)Timeline Frame 14Symbol 2 as "Mainfont"
ExportAssets (56)Timeline Frame 14Symbol 2 as "Mainfont"
ExportAssets (56)Timeline Frame 14Symbol 2 as "Mainfont"
ExportAssets (56)Timeline Frame 15Symbol 191 as "bkgBottom"
ExportAssets (56)Timeline Frame 15Symbol 189 as "groundLeft"
ExportAssets (56)Timeline Frame 15Symbol 187 as "groundRight"
ExportAssets (56)Timeline Frame 15Symbol 1 as "scoreFont"
ExportAssets (56)Timeline Frame 15Symbol 1 as "scoreFont"
ExportAssets (56)Timeline Frame 15Symbol 185 as "player"
ExportAssets (56)Timeline Frame 15Symbol 127 as "lava"
ExportAssets (56)Timeline Frame 15Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 15Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 15Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 15Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 15Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 15Symbol 150 as "Actions"
ExportAssets (56)Timeline Frame 15Symbol 2 as "Mainfont"
ExportAssets (56)Timeline Frame 15Symbol 2 as "Mainfont"
ExportAssets (56)Timeline Frame 15Symbol 2 as "Mainfont"
ExportAssets (56)Timeline Frame 15Symbol 2 as "Mainfont"
ExportAssets (56)Timeline Frame 15Symbol 2 as "Mainfont"
ExportAssets (56)Timeline Frame 16Symbol 185 as "player"
ExportAssets (56)Timeline Frame 16Symbol 127 as "lava"
ExportAssets (56)Timeline Frame 16Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 16Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 16Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 16Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 16Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 16Symbol 150 as "Actions"
ExportAssets (56)Timeline Frame 16Symbol 150 as "Actions"
ExportAssets (56)Timeline Frame 16Symbol 85 as "flapTarget"
ExportAssets (56)Timeline Frame 16Symbol 2 as "Mainfont"
ExportAssets (56)Timeline Frame 17Symbol 185 as "player"
ExportAssets (56)Timeline Frame 17Symbol 127 as "lava"
ExportAssets (56)Timeline Frame 17Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 17Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 17Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 17Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 17Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 17Symbol 150 as "Actions"
ExportAssets (56)Timeline Frame 17Symbol 185 as "player"
ExportAssets (56)Timeline Frame 17Symbol 85 as "flapTarget"
ExportAssets (56)Timeline Frame 18Symbol 185 as "player"
ExportAssets (56)Timeline Frame 18Symbol 127 as "lava"
ExportAssets (56)Timeline Frame 18Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 18Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 18Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 18Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 18Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 18Symbol 150 as "Actions"
ExportAssets (56)Timeline Frame 18Symbol 85 as "flapTarget"
ExportAssets (56)Timeline Frame 18Symbol 2 as "Mainfont"
ExportAssets (56)Timeline Frame 18Symbol 2 as "Mainfont"
ExportAssets (56)Timeline Frame 19Symbol 1 as "scoreFont"
ExportAssets (56)Timeline Frame 19Symbol 1 as "scoreFont"
ExportAssets (56)Timeline Frame 19Symbol 127 as "lava"
ExportAssets (56)Timeline Frame 19Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 19Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 19Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 19Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 19Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 19Symbol 150 as "Actions"
ExportAssets (56)Timeline Frame 19Symbol 2 as "Mainfont"
ExportAssets (56)Timeline Frame 19Symbol 4 as "COIN4"
ExportAssets (56)Timeline Frame 20Symbol 127 as "lava"
ExportAssets (56)Timeline Frame 20Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 20Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 20Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 20Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 20Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 20Symbol 150 as "Actions"
ExportAssets (56)Timeline Frame 21Symbol 127 as "lava"
ExportAssets (56)Timeline Frame 21Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 21Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 21Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 21Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 21Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 21Symbol 150 as "Actions"
ExportAssets (56)Timeline Frame 22Symbol 127 as "lava"
ExportAssets (56)Timeline Frame 22Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 22Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 22Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 22Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 22Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 22Symbol 150 as "Actions"
ExportAssets (56)Timeline Frame 23Symbol 127 as "lava"
ExportAssets (56)Timeline Frame 23Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 23Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 23Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 23Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 23Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 23Symbol 150 as "Actions"
ExportAssets (56)Timeline Frame 24Symbol 127 as "lava"
ExportAssets (56)Timeline Frame 24Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 24Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 24Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 24Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 24Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 24Symbol 150 as "Actions"
ExportAssets (56)Timeline Frame 25Symbol 127 as "lava"
ExportAssets (56)Timeline Frame 25Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 25Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 25Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 25Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 25Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 25Symbol 150 as "Actions"
ExportAssets (56)Timeline Frame 26Symbol 127 as "lava"
ExportAssets (56)Timeline Frame 26Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 26Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 26Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 26Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 26Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 26Symbol 150 as "Actions"
ExportAssets (56)Timeline Frame 27Symbol 127 as "lava"
ExportAssets (56)Timeline Frame 27Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 27Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 27Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 27Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 27Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 27Symbol 150 as "Actions"
ExportAssets (56)Timeline Frame 28Symbol 127 as "lava"
ExportAssets (56)Timeline Frame 28Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 28Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 28Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 28Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 28Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 28Symbol 150 as "Actions"
ExportAssets (56)Timeline Frame 29Symbol 127 as "lava"
ExportAssets (56)Timeline Frame 29Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 29Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 29Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 29Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 29Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 29Symbol 150 as "Actions"
ExportAssets (56)Timeline Frame 30Symbol 127 as "lava"
ExportAssets (56)Timeline Frame 30Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 30Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 30Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 30Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 30Symbol 87 as "lives"
ExportAssets (56)Timeline Frame 30Symbol 150 as "Actions"
ExportAssets (56)Timeline Frame 30Symbol 2 as "Mainfont"

Labels

"loading"Frame 4
"start"Frame 14
"init"Frame 15
"play"Frame 16
"lost life"Frame 17
"new level"Frame 18
"game over"Frame 19
"standRight"Symbol 70 MovieClip [enemy] Frame 17
"standLeft"Symbol 70 MovieClip [enemy] Frame 18
"flap1"Symbol 70 MovieClip [enemy] Frame 23
"flap2"Symbol 70 MovieClip [enemy] Frame 25
"flap3"Symbol 70 MovieClip [enemy] Frame 27
"flap4"Symbol 70 MovieClip [enemy] Frame 29
"standRight"Symbol 185 MovieClip [player] Frame 27
"standLeft"Symbol 185 MovieClip [player] Frame 28
"flap1"Symbol 185 MovieClip [player] Frame 33
"flap2"Symbol 185 MovieClip [player] Frame 34
"flap3"Symbol 185 MovieClip [player] Frame 35
"flap4"Symbol 185 MovieClip [player] Frame 36

Dynamic Text Variables

scoreSymbol 213 EditableText""
lifeSymbol 215 EditableText""
hitCountSymbol 220 EditableText""
waveNumSymbol 221 EditableText""
playerDeadSymbol 222 EditableText""
enemyDeadSymbol 223 EditableText""
waveNumSymbol 225 EditableText""
goPlaySymbol 227 EditableText""
hitCountSymbol 233 EditableText""
waveNumSymbol 241 EditableText""
enemyDeadSymbol 242 EditableText""
playerDeadSymbol 243 EditableText""
playerDeadSymbol 244 EditableText""
enemyDeadSymbol 245 EditableText""
playerDeadSymbol 246 EditableText""
enemyDeadSymbol 247 EditableText""
waveNumSymbol 248 EditableText""
goPlaySymbol 249 EditableText""
displaySymbol 250 EditableText""
scoreSymbol 251 EditableText""
lifeSymbol 252 EditableText""
hitCountSymbol 254 EditableText""




http://swfchan.com/39/190086/info.shtml
Created: 15/10 -2018 08:59:47 Last modified: 15/10 -2018 08:59:47 Server time: 28/04 -2024 15:18:53