STORY LOOP FURRY PORN GAMES C SERVICES [?] [R] RND POPULAR | Archived flashes: 229494 |
/disc/ · /res/ — /show/ · /fap/ · /gg/ · /swf/ | P0001 · P2575 · P5149 |
This is the info page for Flash #190086 |
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>>></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><<</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 5var 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 14stop();Frame 15function 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 15onClipEvent (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 15onClipEvent (enterFrame) { if (_root.life < 6) { this._visible = false; } else { this._visible = true; } }Instance of Symbol 87 MovieClip [lives] "lives1" in Frame 15onClipEvent (enterFrame) { if (_root.life < 5) { this._visible = false; } else { this._visible = true; } }Instance of Symbol 87 MovieClip [lives] "lives2" in Frame 15onClipEvent (enterFrame) { if (_root.life < 4) { this._visible = false; } else { this._visible = true; } }Instance of Symbol 87 MovieClip [lives] "lives3" in Frame 15onClipEvent (enterFrame) { if (_root.life < 3) { this._visible = false; } else { this._visible = true; } }Instance of Symbol 87 MovieClip [lives] "lives4" in Frame 15onClipEvent (enterFrame) { if (_root.life <= 1) { this._visible = false; } else { this._visible = true; } }Instance of Symbol 150 MovieClip [Actions] in Frame 15onClipEvent (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 16stop(); 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 16onClipEvent (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 16onClipEvent (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 17Instance of Symbol 150 MovieClip [Actions] in Frame 17onClipEvent (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 17onClipEvent (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 18stop(); 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 18onClipEvent (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 19onClipEvent (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 30i = 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 1stop();Symbol 35 MovieClip [enemyRider ] Frame 2stop();Symbol 50 MovieClip [enemyWalkRight] Frame 5stop();Symbol 61 MovieClip [enemyWalkLeft ] Frame 5stop();Symbol 70 MovieClip [enemy] Frame 1Symbol 70 MovieClip [enemy] Frame 16enemySafe = false;Symbol 70 MovieClip [enemy] Frame 17stop();Symbol 70 MovieClip [enemy] Frame 18stop();Symbol 70 MovieClip [enemy] Frame 19stop();Symbol 70 MovieClip [enemy] Frame 20stop();Symbol 70 MovieClip [enemy] Frame 21stop();Symbol 70 MovieClip [enemy] Frame 22stop();Symbol 70 MovieClip [enemy] Frame 26gotoAndPlay (23);Symbol 70 MovieClip [enemy] Frame 30gotoAndPlay (27);Instance of Symbol 81 MovieClip [borderColor copy] in Symbol 83 MovieClip [bordersides2] Frame 1onClipEvent (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 1stop();Symbol 94 MovieClip [bubble] Frame 1stop();Symbol 103 MovieClip [topBubble] Frame 1stop();Symbol 127 MovieClip [lava] Frame 1stop();Instance of Symbol 103 MovieClip [topBubble] in Symbol 127 MovieClip [lava] Frame 1onClipEvent (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 1onClipEvent (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 1onClipEvent (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 1onClipEvent (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 1onClipEvent (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 1onClipEvent (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 1onClipEvent (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 1onClipEvent (load) { topBubble = 0; } onClipEvent (enterFrame) { topBubble++; if (topBubble == 18) { this.gotoAndPlay(2); topBubble = 0; } }Symbol 127 MovieClip [lava] Frame 28stop(); _root.gotoAndPlay(16);Instance of Symbol 94 MovieClip [bubble] "bubble0" in Symbol 127 MovieClip [lava] Frame 28onClipEvent (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 28onClipEvent (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 28onClipEvent (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 28onClipEvent (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 28onClipEvent (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 28onClipEvent (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 28onClipEvent (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 28onClipEvent (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 28onClipEvent (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 28onClipEvent (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 28onClipEvent (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 28onClipEvent (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 28onClipEvent (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 28onClipEvent (load) { topBubble = 0; } onClipEvent (enterFrame) { topBubble++; if (topBubble == 18) { this.gotoAndPlay(2); topBubble = 0; } }Symbol 127 MovieClip [lava] Frame 45stop(); _root.gotoAndPlay(16);Instance of Symbol 94 MovieClip [bubble] "bubble0" in Symbol 127 MovieClip [lava] Frame 45onClipEvent (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 45onClipEvent (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 45onClipEvent (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 45onClipEvent (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 45onClipEvent (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 45onClipEvent (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 45onClipEvent (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 45onClipEvent (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 45onClipEvent (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 45onClipEvent (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 45onClipEvent (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 45onClipEvent (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 45onClipEvent (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 45onClipEvent (load) { topBubble = 0; } onClipEvent (enterFrame) { topBubble++; if (topBubble == 18) { this.gotoAndPlay(2); topBubble = 0; } }Symbol 127 MovieClip [lava] Frame 60stop(); _root.gotoAndPlay(16);Symbol 138 MovieClip [walkSlowLeft] Frame 5stop();Symbol 149 MovieClip [walkSlowRight] Frame 5stop();Symbol 165 MovieClip [playerRider] Frame 1stop();Instance of Symbol 150 MovieClip [Actions] in Symbol 165 MovieClip [playerRider] Frame 1/* no clip actions */Symbol 165 MovieClip [playerRider] Frame 14stop();Symbol 185 MovieClip [player] Frame 1if (!_root.playerSafe) { this.gotoAndPlay(27); } else { this.play(); }Symbol 185 MovieClip [player] Frame 26if (!_root.playerSafe) { this.gotoAndPlay(27); } else { this.gotoAndPlay(17); }Symbol 185 MovieClip [player] Frame 27stop();Symbol 185 MovieClip [player] Frame 28stop();Symbol 185 MovieClip [player] Frame 29stop();Symbol 185 MovieClip [player] Frame 30stop();Symbol 185 MovieClip [player] Frame 31stop();Symbol 185 MovieClip [player] Frame 32stop();Symbol 185 MovieClip [player] Frame 33Symbol 185 MovieClip [player] Frame 34stop();Symbol 185 MovieClip [player] Frame 35Symbol 185 MovieClip [player] Frame 36stop();Symbol 192 Button [play]on (release) { gotoAndPlay (15); }Instance of Symbol 193 MovieClip [borderColor] in Symbol 194 MovieClip [borderColors] Frame 1onClipEvent (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 1onClipEvent (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 1onClipEvent (enterFrame) { if (_root.waveNum == "WAVE3") { this._width = 504.1; } }Instance of Symbol 189 MovieClip [groundLeft] in Symbol 212 MovieClip Frame 1onClipEvent (enterFrame) { if (_root.waveNum == "WAVE3") { this._width--; } }Instance of Symbol 187 MovieClip [groundRight] in Symbol 212 MovieClip Frame 1onClipEvent (enterFrame) { if (_root.waveNum == "WAVE3") { this._width--; } }Symbol 240 MovieClip Frame 1stop();Symbol 240 MovieClip Frame 15removeMovieClip("");
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 Bitmap | Used by:6 | |
Symbol 6 Graphic | Uses:5 | Used by:70 71 185 |
Symbol 7 Sound | Used by:70 71 185 | |
Symbol 8 Bitmap | Used by:9 | |
Symbol 9 Graphic | Uses:8 | Used by:70 71 185 |
Symbol 10 Bitmap | Used by:11 | |
Symbol 11 Graphic | Uses:10 | Used by:70 71 185 |
Symbol 12 Bitmap | Used by:13 | |
Symbol 13 Graphic | Uses:12 | Used by:70 71 185 |
Symbol 14 Bitmap | Used by:15 | |
Symbol 15 Graphic | Uses:14 | Used by:70 71 185 |
Symbol 16 Bitmap | Used by:17 | |
Symbol 17 Graphic | Uses:16 | Used by:70 71 185 |
Symbol 18 Bitmap | Used by:19 | |
Symbol 19 Graphic | Uses:18 | Used by:70 71 185 |
Symbol 20 Bitmap | Used by:21 | |
Symbol 21 Graphic | Uses:20 | Used by:70 71 185 |
Symbol 22 Bitmap | Used by:23 | |
Symbol 23 Graphic | Uses:22 | Used by:70 71 185 |
Symbol 24 Bitmap | Used by:25 | |
Symbol 25 Graphic | Uses:24 | Used by:70 71 185 |
Symbol 26 Bitmap | Used by:27 | |
Symbol 27 Graphic | Uses:26 | Used by:70 71 185 |
Symbol 28 Bitmap | Used by:29 | |
Symbol 29 Graphic | Uses:28 | Used by:70 71 185 |
Symbol 30 Bitmap | Used by:31 | |
Symbol 31 Graphic | Uses:30 | Used by:70 71 185 |
Symbol 32 Bitmap | Used by:33 | |
Symbol 33 Graphic | Uses:32 | Used by:35 |
Symbol 34 Sound | Used by:35 165 | |
Symbol 35 MovieClip [enemyRider ] | Uses:33 34 | Used by:70 |
Symbol 36 Bitmap | Used by:37 | |
Symbol 37 Graphic | Uses:36 | Used by:70 |
Symbol 38 Bitmap | Used by:39 | |
Symbol 39 Graphic | Uses:38 | Used by:70 |
Symbol 40 Bitmap | Used by:41 | |
Symbol 41 Graphic | Uses:40 | Used by:50 |
Symbol 42 Bitmap | Used by:43 | |
Symbol 43 Graphic | Uses:42 | Used by:50 |
Symbol 44 Bitmap | Used by:45 | |
Symbol 45 Graphic | Uses:44 | Used by:50 |
Symbol 46 Bitmap | Used by:47 | |
Symbol 47 Graphic | Uses:46 | Used by:50 |
Symbol 48 Bitmap | Used by:49 | |
Symbol 49 Graphic | Uses:48 | Used by:50 |
Symbol 50 MovieClip [enemyWalkRight] | Uses:41 43 45 47 49 | Used by:70 |
Symbol 51 Bitmap | Used by:52 | |
Symbol 52 Graphic | Uses:51 | Used by:61 |
Symbol 53 Bitmap | Used by:54 | |
Symbol 54 Graphic | Uses:53 | Used by:61 |
Symbol 55 Bitmap | Used by:56 | |
Symbol 56 Graphic | Uses:55 | Used by:61 |
Symbol 57 Bitmap | Used by:58 | |
Symbol 58 Graphic | Uses:57 | Used by:61 |
Symbol 59 Bitmap | Used by:60 | |
Symbol 60 Graphic | Uses:59 | Used by:61 |
Symbol 61 MovieClip [enemyWalkLeft ] | Uses:52 54 56 58 60 | Used by:70 |
Symbol 62 Bitmap | Used by:63 | |
Symbol 63 Graphic | Uses:62 | Used by:70 |
Symbol 64 Bitmap | Used by:65 | |
Symbol 65 Graphic | Uses:64 | Used by:70 |
Symbol 66 Bitmap | Used by:67 | |
Symbol 67 Graphic | Uses:66 | Used by:70 |
Symbol 68 Bitmap | Used by:69 | |
Symbol 69 Graphic | Uses:68 | Used 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 Graphic | Used by:80 192 | |
Symbol 73 Text | Uses:2 | Used by:80 192 |
Symbol 74 Graphic | Used by:75 80 81 192 193 | |
Symbol 75 MovieClip [BLINKING] | Uses:74 | Used by:80 192 |
Symbol 76 Graphic | Used by:80 192 | |
Symbol 77 Text | Uses:2 | Used by:80 192 |
Symbol 78 Text | Uses:2 | Used by:80 192 |
Symbol 79 Graphic | Used by:80 192 | |
Symbol 80 Button [play] | Uses:72 73 75 76 77 78 79 74 | |
Symbol 81 MovieClip [borderColor copy] | Uses:74 | Used by:83 195 |
Symbol 82 Graphic | Used by:83 194 195 | |
Symbol 83 MovieClip [bordersides2] | Uses:81 82 | |
Symbol 84 Graphic | Used by:85 | |
Symbol 85 MovieClip [flapTarget] | Uses:84 | Used by:Timeline |
Symbol 86 Graphic | Used by:87 | |
Symbol 87 MovieClip [lives] | Uses:86 | Used by:Timeline |
Symbol 88 Bitmap | Used by:89 | |
Symbol 89 Graphic | Uses:88 | Used by:94 |
Symbol 90 Bitmap | Used by:91 | |
Symbol 91 Graphic | Uses:90 | Used by:94 |
Symbol 92 Bitmap | Used by:93 | |
Symbol 93 Graphic | Uses:92 | Used by:94 |
Symbol 94 MovieClip [bubble] | Uses:89 91 93 | Used by:127 |
Symbol 95 Bitmap | Used by:96 | |
Symbol 96 Graphic | Uses:95 | Used by:103 |
Symbol 97 Bitmap | Used by:98 | |
Symbol 98 Graphic | Uses:97 | Used by:103 |
Symbol 99 Bitmap | Used by:100 | |
Symbol 100 Graphic | Uses:99 | Used by:103 |
Symbol 101 Bitmap | Used by:102 | |
Symbol 102 Graphic | Uses:101 | Used by:103 |
Symbol 103 MovieClip [topBubble] | Uses:96 98 100 102 | Used by:127 |
Symbol 104 Graphic | Used by:127 | |
Symbol 105 Sound | Used by:127 | |
Symbol 106 Graphic | Used by:127 | |
Symbol 107 Graphic | Used by:127 | |
Symbol 108 Graphic | Used by:127 | |
Symbol 109 Graphic | Used by:127 | |
Symbol 110 Graphic | Used by:127 | |
Symbol 111 Graphic | Used by:127 | |
Symbol 112 Graphic | Used by:127 | |
Symbol 113 Graphic | Used by:127 | |
Symbol 114 Graphic | Used by:127 | |
Symbol 115 Graphic | Used by:127 | |
Symbol 116 Graphic | Used by:127 | |
Symbol 117 Graphic | Used by:127 | |
Symbol 118 Graphic | Used by:127 | |
Symbol 119 Graphic | Used by:127 | |
Symbol 120 Graphic | Used by:127 | |
Symbol 121 Graphic | Used by:127 | |
Symbol 122 Graphic | Used by:127 | |
Symbol 123 Graphic | Used by:127 | |
Symbol 124 Graphic | Used by:127 | |
Symbol 125 Graphic | Used by:127 | |
Symbol 126 Graphic | Used 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 126 | Used by:Timeline |
Symbol 128 Bitmap | Used by:129 | |
Symbol 129 Graphic | Uses:128 | Used by:138 |
Symbol 130 Bitmap | Used by:131 | |
Symbol 131 Graphic | Uses:130 | Used by:138 |
Symbol 132 Bitmap | Used by:133 | |
Symbol 133 Graphic | Uses:132 | Used by:138 |
Symbol 134 Bitmap | Used by:135 | |
Symbol 135 Graphic | Uses:134 | Used by:138 |
Symbol 136 Bitmap | Used by:137 | |
Symbol 137 Graphic | Uses:136 | Used by:138 |
Symbol 138 MovieClip [walkSlowLeft] | Uses:129 131 133 135 137 | Used by:185 |
Symbol 139 Bitmap | Used by:140 | |
Symbol 140 Graphic | Uses:139 | Used by:149 |
Symbol 141 Bitmap | Used by:142 | |
Symbol 142 Graphic | Uses:141 | Used by:149 |
Symbol 143 Bitmap | Used by:144 | |
Symbol 144 Graphic | Uses:143 | Used by:149 |
Symbol 145 Bitmap | Used by:146 | |
Symbol 146 Graphic | Uses:145 | Used by:149 |
Symbol 147 Bitmap | Used by:148 | |
Symbol 148 Graphic | Uses:147 | Used by:149 |
Symbol 149 MovieClip [walkSlowRight] | Uses:140 142 144 146 148 | Used by:185 |
Symbol 150 MovieClip [Actions] | Used by:165 240 Timeline | |
Symbol 151 Bitmap | Used by:152 | |
Symbol 152 Graphic | Uses:151 | Used by:165 |
Symbol 153 Bitmap | Used by:154 | |
Symbol 154 Graphic | Uses:153 | Used by:165 |
Symbol 155 Bitmap | Used by:156 | |
Symbol 156 Graphic | Uses:155 | Used by:165 |
Symbol 157 Bitmap | Used by:158 | |
Symbol 158 Graphic | Uses:157 | Used by:165 |
Symbol 159 Bitmap | Used by:160 | |
Symbol 160 Graphic | Uses:159 | Used by:165 |
Symbol 161 Bitmap | Used by:162 | |
Symbol 162 Graphic | Uses:161 | Used by:165 |
Symbol 163 Bitmap | Used by:164 | |
Symbol 164 Graphic | Uses:163 | Used by:165 |
Symbol 165 MovieClip [playerRider] | Uses:152 150 154 34 156 158 160 162 164 | Used by:185 |
Symbol 166 Sound | Used by:185 | |
Symbol 167 Bitmap | Used by:168 | |
Symbol 168 Graphic | Uses:167 | Used by:185 |
Symbol 169 Bitmap | Used by:170 | |
Symbol 170 Graphic | Uses:169 | Used by:185 |
Symbol 171 Graphic | Used by:185 | |
Symbol 172 Bitmap | Used by:173 | |
Symbol 173 Graphic | Uses:172 | Used by:185 |
Symbol 174 Bitmap | Used by:175 | |
Symbol 175 Graphic | Uses:174 | Used by:185 |
Symbol 176 Bitmap | Used by:177 | |
Symbol 177 Graphic | Uses:176 | Used by:185 |
Symbol 178 Sound | Used by:185 | |
Symbol 179 Bitmap | Used by:180 | |
Symbol 180 Graphic | Uses:179 | Used by:185 |
Symbol 181 Bitmap | Used by:182 | |
Symbol 182 Graphic | Uses:181 | Used by:185 |
Symbol 183 Bitmap | Used by:184 | |
Symbol 184 Graphic | Uses:183 | Used 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 184 | Used by:Timeline |
Symbol 186 Graphic | Used by:187 | |
Symbol 187 MovieClip [groundRight] | Uses:186 | Used by:212 |
Symbol 188 Graphic | Used by:189 | |
Symbol 189 MovieClip [groundLeft] | Uses:188 | Used by:212 |
Symbol 190 Graphic | Used by:191 | |
Symbol 191 MovieClip [bkgBottom] | Uses:190 | Used by:212 |
Symbol 192 Button [play] | Uses:72 73 75 76 77 78 79 74 | Used by:Timeline |
Symbol 193 MovieClip [borderColor] | Uses:74 | Used by:194 |
Symbol 194 MovieClip [borderColors] | Uses:193 82 | Used by:Timeline |
Symbol 195 MovieClip [bordersides] | Uses:81 82 | Used by:Timeline |
Symbol 196 Font | Used by:198 199 | |
Symbol 197 Font | Used by:198 | |
Symbol 198 EditableText | Uses:196 214 226 197 | Used by:Timeline |
Symbol 199 EditableText | Uses:196 214 226 | Used by:Timeline |
Symbol 200 Graphic | Used by:Timeline | |
Symbol 201 Text | Uses:2 | Used by:Timeline |
Symbol 202 Text | Uses:2 | Used by:Timeline |
Symbol 203 Text | Uses:2 | Used by:Timeline |
Symbol 204 Text | Uses:2 | Used by:Timeline |
Symbol 205 Font | Used by:206 | |
Symbol 206 Text | Uses:205 | Used by:Timeline |
Symbol 207 Text | Uses:1 | Used by:Timeline |
Symbol 208 Text | Uses:2 | Used by:Timeline |
Symbol 209 Sound | Used by:Timeline | |
Symbol 210 Graphic | Used by:Timeline | |
Symbol 211 Graphic | Used by:212 | |
Symbol 212 MovieClip | Uses:211 191 189 187 | Used by:Timeline |
Symbol 213 EditableText | Uses:1 | Used by:Timeline |
Symbol 214 Font | Used by:198 199 215 220 221 222 223 252 | |
Symbol 215 EditableText | Uses:214 | Used by:Timeline |
Symbol 216 Font | Used by:218 253 | |
Symbol 217 Font | Used by:218 253 | |
Symbol 218 Text | Uses:1 216 217 | Used by:Timeline |
Symbol 219 Graphic | Used by:Timeline | |
Symbol 220 EditableText | Uses:214 | Used by:Timeline |
Symbol 221 EditableText | Uses:214 | Used by:Timeline |
Symbol 222 EditableText | Uses:214 | Used by:Timeline |
Symbol 223 EditableText | Uses:214 | Used by:Timeline |
Symbol 224 Text | Uses:2 | Used by:Timeline |
Symbol 225 EditableText | Uses:2 | Used by:Timeline |
Symbol 226 Font | Used by:198 199 227 249 | |
Symbol 227 EditableText | Uses:226 | Used by:Timeline |
Symbol 228 Font | Used by:230 237 238 | |
Symbol 229 Font | Used by:230 | |
Symbol 230 Text | Uses:2 228 229 | Used by:Timeline |
Symbol 231 Sound | Used by:Timeline | |
Symbol 232 Font | Used by:233 242 243 244 245 246 247 254 | |
Symbol 233 EditableText | Uses:232 | Used by:Timeline |
Symbol 234 Bitmap | Used by:235 | |
Symbol 235 Graphic | Uses:234 | Used by:240 |
Symbol 236 MovieClip | Used by:240 | |
Symbol 237 Text | Uses:228 | Used by:240 |
Symbol 238 Text | Uses:228 | Used by:240 |
Symbol 239 Sound | Used by:240 | |
Symbol 240 MovieClip | Uses:235 150 236 237 238 239 | Used by:Timeline |
Symbol 241 EditableText | Uses:2 | Used by:Timeline |
Symbol 242 EditableText | Uses:232 | Used by:Timeline |
Symbol 243 EditableText | Uses:232 | Used by:Timeline |
Symbol 244 EditableText | Uses:232 | Used by:Timeline |
Symbol 245 EditableText | Uses:232 | Used by:Timeline |
Symbol 246 EditableText | Uses:232 | Used by:Timeline |
Symbol 247 EditableText | Uses:232 | Used by:Timeline |
Symbol 248 EditableText | Uses:2 | Used by:Timeline |
Symbol 249 EditableText | Uses:226 | Used by:Timeline |
Symbol 250 EditableText | Uses:2 | Used by:Timeline |
Symbol 251 EditableText | Uses:1 | Used by:Timeline |
Symbol 252 EditableText | Uses:214 | Used by:Timeline |
Symbol 253 Text | Uses:1 216 217 | Used by:Timeline |
Symbol 254 EditableText | Uses:232 | Used by:Timeline |
Symbol 255 Text | Uses:2 | Used by:Timeline |
Symbol 256 Text | Uses:2 | Used by:Timeline |
Instance Names
"bkg" | Frame 15 | Symbol 212 MovieClip |
"player" | Frame 15 | Symbol 185 MovieClip [player] |
"lava" | Frame 15 | Symbol 127 MovieClip [lava] |
"lives0" | Frame 15 | Symbol 87 MovieClip [lives] |
"lives1" | Frame 15 | Symbol 87 MovieClip [lives] |
"lives2" | Frame 15 | Symbol 87 MovieClip [lives] |
"lives3" | Frame 15 | Symbol 87 MovieClip [lives] |
"lives4" | Frame 15 | Symbol 87 MovieClip [lives] |
"egg" | Frame 16 | Symbol 240 MovieClip |
"flapTarget" | Frame 16 | Symbol 85 MovieClip [flapTarget] |
"player" | Frame 17 | Symbol 185 MovieClip [player] |
"egg1" | Frame 19 | Symbol 240 MovieClip |
"enemyRider" | Symbol 70 MovieClip [enemy] Frame 17 | Symbol 35 MovieClip [enemyRider ] |
"bubble0" | Symbol 127 MovieClip [lava] Frame 28 | Symbol 94 MovieClip [bubble] |
"bubble1" | Symbol 127 MovieClip [lava] Frame 28 | Symbol 94 MovieClip [bubble] |
"bubble2" | Symbol 127 MovieClip [lava] Frame 28 | Symbol 94 MovieClip [bubble] |
"bubble3" | Symbol 127 MovieClip [lava] Frame 28 | Symbol 94 MovieClip [bubble] |
"bubble4" | Symbol 127 MovieClip [lava] Frame 28 | Symbol 94 MovieClip [bubble] |
"bubble5" | Symbol 127 MovieClip [lava] Frame 28 | Symbol 94 MovieClip [bubble] |
"bubble0" | Symbol 127 MovieClip [lava] Frame 45 | Symbol 94 MovieClip [bubble] |
"bubble1" | Symbol 127 MovieClip [lava] Frame 45 | Symbol 94 MovieClip [bubble] |
"bubble2" | Symbol 127 MovieClip [lava] Frame 45 | Symbol 94 MovieClip [bubble] |
"bubble3" | Symbol 127 MovieClip [lava] Frame 45 | Symbol 94 MovieClip [bubble] |
"bubble4" | Symbol 127 MovieClip [lava] Frame 45 | Symbol 94 MovieClip [bubble] |
"bubble5" | Symbol 127 MovieClip [lava] Frame 45 | Symbol 94 MovieClip [bubble] |
"playerRider" | Symbol 185 MovieClip [player] Frame 27 | Symbol 165 MovieClip [playerRider] |
"follow" | Symbol 240 MovieClip Frame 2 | Symbol 236 MovieClip |
Special Tags
Protect (24) | Timeline Frame 1 | 31 bytes "..$1$XA$hORsSz2ulvK5FlApvzLIE/." |
ExportAssets (56) | Timeline Frame 1 | Symbol 1 as "scoreFont" |
ExportAssets (56) | Timeline Frame 1 | Symbol 2 as "Mainfont" |
ExportAssets (56) | Timeline Frame 1 | Symbol 3 as "INSERT" |
ExportAssets (56) | Timeline Frame 1 | Symbol 4 as "COIN4" |
ExportAssets (56) | Timeline Frame 1 | Symbol 35 as "enemyRider " |
ExportAssets (56) | Timeline Frame 1 | Symbol 35 as "enemyRider " |
ExportAssets (56) | Timeline Frame 1 | Symbol 35 as "enemyRider " |
ExportAssets (56) | Timeline Frame 1 | Symbol 50 as "enemyWalkRight" |
ExportAssets (56) | Timeline Frame 1 | Symbol 35 as "enemyRider " |
ExportAssets (56) | Timeline Frame 1 | Symbol 35 as "enemyRider " |
ExportAssets (56) | Timeline Frame 1 | Symbol 61 as "enemyWalkLeft " |
ExportAssets (56) | Timeline Frame 1 | Symbol 35 as "enemyRider " |
ExportAssets (56) | Timeline Frame 1 | Symbol 35 as "enemyRider " |
ExportAssets (56) | Timeline Frame 1 | Symbol 35 as "enemyRider " |
ExportAssets (56) | Timeline Frame 1 | Symbol 35 as "enemyRider " |
ExportAssets (56) | Timeline Frame 1 | Symbol 35 as "enemyRider " |
ExportAssets (56) | Timeline Frame 1 | Symbol 35 as "enemyRider " |
ExportAssets (56) | Timeline Frame 1 | Symbol 35 as "enemyRider " |
ExportAssets (56) | Timeline Frame 1 | Symbol 35 as "enemyRider " |
ExportAssets (56) | Timeline Frame 1 | Symbol 35 as "enemyRider " |
ExportAssets (56) | Timeline Frame 1 | Symbol 70 as "enemy" |
ExportAssets (56) | Timeline Frame 1 | Symbol 61 as "enemyWalkLeft " |
ExportAssets (56) | Timeline Frame 1 | Symbol 50 as "enemyWalkRight" |
ExportAssets (56) | Timeline Frame 1 | Symbol 35 as "enemyRider " |
ExportAssets (56) | Timeline Frame 1 | Symbol 71 as "playerStart" |
ExportAssets (56) | Timeline Frame 1 | Symbol 2 as "Mainfont" |
ExportAssets (56) | Timeline Frame 1 | Symbol 75 as "BLINKING" |
ExportAssets (56) | Timeline Frame 1 | Symbol 2 as "Mainfont" |
ExportAssets (56) | Timeline Frame 1 | Symbol 2 as "Mainfont" |
ExportAssets (56) | Timeline Frame 1 | Symbol 80 as "play" |
ExportAssets (56) | Timeline Frame 1 | Symbol 81 as "borderColor copy" |
ExportAssets (56) | Timeline Frame 1 | Symbol 81 as "borderColor copy" |
ExportAssets (56) | Timeline Frame 1 | Symbol 81 as "borderColor copy" |
ExportAssets (56) | Timeline Frame 1 | Symbol 81 as "borderColor copy" |
ExportAssets (56) | Timeline Frame 1 | Symbol 81 as "borderColor copy" |
ExportAssets (56) | Timeline Frame 1 | Symbol 81 as "borderColor copy" |
ExportAssets (56) | Timeline Frame 1 | Symbol 83 as "bordersides2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 85 as "flapTarget" |
ExportAssets (56) | Timeline Frame 1 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "topBubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 127 as "lava" |
ExportAssets (56) | Timeline Frame 1 | Symbol 138 as "walkSlowLeft" |
ExportAssets (56) | Timeline Frame 1 | Symbol 149 as "walkSlowRight" |
ExportAssets (56) | Timeline Frame 1 | Symbol 150 as "Actions" |
ExportAssets (56) | Timeline Frame 1 | Symbol 150 as "Actions" |
ExportAssets (56) | Timeline Frame 1 | Symbol 165 as "playerRider" |
ExportAssets (56) | Timeline Frame 1 | Symbol 165 as "playerRider" |
ExportAssets (56) | Timeline Frame 1 | Symbol 165 as "playerRider" |
ExportAssets (56) | Timeline Frame 1 | Symbol 165 as "playerRider" |
ExportAssets (56) | Timeline Frame 1 | Symbol 149 as "walkSlowRight" |
ExportAssets (56) | Timeline Frame 1 | Symbol 165 as "playerRider" |
ExportAssets (56) | Timeline Frame 1 | Symbol 165 as "playerRider" |
ExportAssets (56) | Timeline Frame 1 | Symbol 138 as "walkSlowLeft" |
ExportAssets (56) | Timeline Frame 1 | Symbol 165 as "playerRider" |
ExportAssets (56) | Timeline Frame 1 | Symbol 165 as "playerRider" |
ExportAssets (56) | Timeline Frame 1 | Symbol 165 as "playerRider" |
ExportAssets (56) | Timeline Frame 1 | Symbol 165 as "playerRider" |
ExportAssets (56) | Timeline Frame 1 | Symbol 165 as "playerRider" |
ExportAssets (56) | Timeline Frame 1 | Symbol 185 as "player" |
ExportAssets (56) | Timeline Frame 1 | Symbol 187 as "groundRight" |
ExportAssets (56) | Timeline Frame 1 | Symbol 189 as "groundLeft" |
ExportAssets (56) | Timeline Frame 1 | Symbol 191 as "bkgBottom" |
ExportAssets (56) | Timeline Frame 1 | Symbol 75 as "BLINKING" |
ExportAssets (56) | Timeline Frame 1 | Symbol 75 as "BLINKING" |
ExportAssets (56) | Timeline Frame 1 | Symbol 192 as "play" |
ExportAssets (56) | Timeline Frame 1 | Symbol 193 as "borderColor" |
ExportAssets (56) | Timeline Frame 1 | Symbol 193 as "borderColor" |
ExportAssets (56) | Timeline Frame 1 | Symbol 193 as "borderColor" |
ExportAssets (56) | Timeline Frame 1 | Symbol 193 as "borderColor" |
ExportAssets (56) | Timeline Frame 1 | Symbol 193 as "borderColor" |
ExportAssets (56) | Timeline Frame 1 | Symbol 193 as "borderColor" |
ExportAssets (56) | Timeline Frame 1 | Symbol 193 as "borderColor" |
ExportAssets (56) | Timeline Frame 1 | Symbol 194 as "borderColors" |
ExportAssets (56) | Timeline Frame 1 | Symbol 81 as "borderColor copy" |
ExportAssets (56) | Timeline Frame 1 | Symbol 81 as "borderColor copy" |
ExportAssets (56) | Timeline Frame 1 | Symbol 81 as "borderColor copy" |
ExportAssets (56) | Timeline Frame 1 | Symbol 81 as "borderColor copy" |
ExportAssets (56) | Timeline Frame 1 | Symbol 81 as "borderColor copy" |
ExportAssets (56) | Timeline Frame 1 | Symbol 81 as "borderColor copy" |
ExportAssets (56) | Timeline Frame 1 | Symbol 81 as "borderColor copy" |
ExportAssets (56) | Timeline Frame 1 | Symbol 195 as "bordersides" |
ExportAssets (56) | Timeline Frame 1 | Symbol 195 as "bordersides" |
ExportAssets (56) | Timeline Frame 1 | Symbol 194 as "borderColors" |
ExportAssets (56) | Timeline Frame 1 | Symbol 194 as "borderColors" |
ExportAssets (56) | Timeline Frame 1 | Symbol 195 as "bordersides" |
ExportAssets (56) | Timeline Frame 1 | Symbol 2 as "Mainfont" |
ExportAssets (56) | Timeline Frame 1 | Symbol 2 as "Mainfont" |
ExportAssets (56) | Timeline Frame 1 | Symbol 2 as "Mainfont" |
ExportAssets (56) | Timeline Frame 1 | Symbol 2 as "Mainfont" |
ExportAssets (56) | Timeline Frame 1 | Symbol 2 as "Mainfont" |
ExportAssets (56) | Timeline Frame 1 | Symbol 2 as "Mainfont" |
ExportAssets (56) | Timeline Frame 1 | Symbol 2 as "Mainfont" |
ExportAssets (56) | Timeline Frame 2 | Symbol 195 as "bordersides" |
ExportAssets (56) | Timeline Frame 2 | Symbol 194 as "borderColors" |
ExportAssets (56) | Timeline Frame 2 | Symbol 194 as "borderColors" |
ExportAssets (56) | Timeline Frame 2 | Symbol 195 as "bordersides" |
ExportAssets (56) | Timeline Frame 3 | Symbol 195 as "bordersides" |
ExportAssets (56) | Timeline Frame 3 | Symbol 194 as "borderColors" |
ExportAssets (56) | Timeline Frame 3 | Symbol 194 as "borderColors" |
ExportAssets (56) | Timeline Frame 3 | Symbol 195 as "bordersides" |
ExportAssets (56) | Timeline Frame 4 | Symbol 195 as "bordersides" |
ExportAssets (56) | Timeline Frame 4 | Symbol 194 as "borderColors" |
ExportAssets (56) | Timeline Frame 4 | Symbol 194 as "borderColors" |
ExportAssets (56) | Timeline Frame 4 | Symbol 195 as "bordersides" |
ExportAssets (56) | Timeline Frame 5 | Symbol 195 as "bordersides" |
ExportAssets (56) | Timeline Frame 5 | Symbol 194 as "borderColors" |
ExportAssets (56) | Timeline Frame 5 | Symbol 194 as "borderColors" |
ExportAssets (56) | Timeline Frame 5 | Symbol 195 as "bordersides" |
ExportAssets (56) | Timeline Frame 6 | Symbol 195 as "bordersides" |
ExportAssets (56) | Timeline Frame 6 | Symbol 194 as "borderColors" |
ExportAssets (56) | Timeline Frame 6 | Symbol 194 as "borderColors" |
ExportAssets (56) | Timeline Frame 6 | Symbol 195 as "bordersides" |
ExportAssets (56) | Timeline Frame 7 | Symbol 195 as "bordersides" |
ExportAssets (56) | Timeline Frame 7 | Symbol 194 as "borderColors" |
ExportAssets (56) | Timeline Frame 7 | Symbol 194 as "borderColors" |
ExportAssets (56) | Timeline Frame 7 | Symbol 195 as "bordersides" |
ExportAssets (56) | Timeline Frame 8 | Symbol 195 as "bordersides" |
ExportAssets (56) | Timeline Frame 8 | Symbol 194 as "borderColors" |
ExportAssets (56) | Timeline Frame 8 | Symbol 194 as "borderColors" |
ExportAssets (56) | Timeline Frame 8 | Symbol 195 as "bordersides" |
ExportAssets (56) | Timeline Frame 9 | Symbol 195 as "bordersides" |
ExportAssets (56) | Timeline Frame 9 | Symbol 194 as "borderColors" |
ExportAssets (56) | Timeline Frame 9 | Symbol 194 as "borderColors" |
ExportAssets (56) | Timeline Frame 9 | Symbol 195 as "bordersides" |
ExportAssets (56) | Timeline Frame 10 | Symbol 195 as "bordersides" |
ExportAssets (56) | Timeline Frame 10 | Symbol 194 as "borderColors" |
ExportAssets (56) | Timeline Frame 10 | Symbol 194 as "borderColors" |
ExportAssets (56) | Timeline Frame 10 | Symbol 195 as "bordersides" |
ExportAssets (56) | Timeline Frame 11 | Symbol 195 as "bordersides" |
ExportAssets (56) | Timeline Frame 11 | Symbol 194 as "borderColors" |
ExportAssets (56) | Timeline Frame 11 | Symbol 194 as "borderColors" |
ExportAssets (56) | Timeline Frame 11 | Symbol 195 as "bordersides" |
ExportAssets (56) | Timeline Frame 12 | Symbol 195 as "bordersides" |
ExportAssets (56) | Timeline Frame 12 | Symbol 194 as "borderColors" |
ExportAssets (56) | Timeline Frame 12 | Symbol 194 as "borderColors" |
ExportAssets (56) | Timeline Frame 12 | Symbol 195 as "bordersides" |
ExportAssets (56) | Timeline Frame 13 | Symbol 195 as "bordersides" |
ExportAssets (56) | Timeline Frame 13 | Symbol 194 as "borderColors" |
ExportAssets (56) | Timeline Frame 13 | Symbol 194 as "borderColors" |
ExportAssets (56) | Timeline Frame 13 | Symbol 195 as "bordersides" |
ExportAssets (56) | Timeline Frame 14 | Symbol 195 as "bordersides" |
ExportAssets (56) | Timeline Frame 14 | Symbol 194 as "borderColors" |
ExportAssets (56) | Timeline Frame 14 | Symbol 194 as "borderColors" |
ExportAssets (56) | Timeline Frame 14 | Symbol 195 as "bordersides" |
ExportAssets (56) | Timeline Frame 14 | Symbol 192 as "play" |
ExportAssets (56) | Timeline Frame 14 | Symbol 1 as "scoreFont" |
ExportAssets (56) | Timeline Frame 14 | Symbol 2 as "Mainfont" |
ExportAssets (56) | Timeline Frame 14 | Symbol 2 as "Mainfont" |
ExportAssets (56) | Timeline Frame 14 | Symbol 2 as "Mainfont" |
ExportAssets (56) | Timeline Frame 15 | Symbol 191 as "bkgBottom" |
ExportAssets (56) | Timeline Frame 15 | Symbol 189 as "groundLeft" |
ExportAssets (56) | Timeline Frame 15 | Symbol 187 as "groundRight" |
ExportAssets (56) | Timeline Frame 15 | Symbol 1 as "scoreFont" |
ExportAssets (56) | Timeline Frame 15 | Symbol 1 as "scoreFont" |
ExportAssets (56) | Timeline Frame 15 | Symbol 185 as "player" |
ExportAssets (56) | Timeline Frame 15 | Symbol 127 as "lava" |
ExportAssets (56) | Timeline Frame 15 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 15 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 15 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 15 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 15 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 15 | Symbol 150 as "Actions" |
ExportAssets (56) | Timeline Frame 15 | Symbol 2 as "Mainfont" |
ExportAssets (56) | Timeline Frame 15 | Symbol 2 as "Mainfont" |
ExportAssets (56) | Timeline Frame 15 | Symbol 2 as "Mainfont" |
ExportAssets (56) | Timeline Frame 15 | Symbol 2 as "Mainfont" |
ExportAssets (56) | Timeline Frame 15 | Symbol 2 as "Mainfont" |
ExportAssets (56) | Timeline Frame 16 | Symbol 185 as "player" |
ExportAssets (56) | Timeline Frame 16 | Symbol 127 as "lava" |
ExportAssets (56) | Timeline Frame 16 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 16 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 16 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 16 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 16 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 16 | Symbol 150 as "Actions" |
ExportAssets (56) | Timeline Frame 16 | Symbol 150 as "Actions" |
ExportAssets (56) | Timeline Frame 16 | Symbol 85 as "flapTarget" |
ExportAssets (56) | Timeline Frame 16 | Symbol 2 as "Mainfont" |
ExportAssets (56) | Timeline Frame 17 | Symbol 185 as "player" |
ExportAssets (56) | Timeline Frame 17 | Symbol 127 as "lava" |
ExportAssets (56) | Timeline Frame 17 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 17 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 17 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 17 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 17 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 17 | Symbol 150 as "Actions" |
ExportAssets (56) | Timeline Frame 17 | Symbol 185 as "player" |
ExportAssets (56) | Timeline Frame 17 | Symbol 85 as "flapTarget" |
ExportAssets (56) | Timeline Frame 18 | Symbol 185 as "player" |
ExportAssets (56) | Timeline Frame 18 | Symbol 127 as "lava" |
ExportAssets (56) | Timeline Frame 18 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 18 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 18 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 18 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 18 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 18 | Symbol 150 as "Actions" |
ExportAssets (56) | Timeline Frame 18 | Symbol 85 as "flapTarget" |
ExportAssets (56) | Timeline Frame 18 | Symbol 2 as "Mainfont" |
ExportAssets (56) | Timeline Frame 18 | Symbol 2 as "Mainfont" |
ExportAssets (56) | Timeline Frame 19 | Symbol 1 as "scoreFont" |
ExportAssets (56) | Timeline Frame 19 | Symbol 1 as "scoreFont" |
ExportAssets (56) | Timeline Frame 19 | Symbol 127 as "lava" |
ExportAssets (56) | Timeline Frame 19 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 19 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 19 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 19 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 19 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 19 | Symbol 150 as "Actions" |
ExportAssets (56) | Timeline Frame 19 | Symbol 2 as "Mainfont" |
ExportAssets (56) | Timeline Frame 19 | Symbol 4 as "COIN4" |
ExportAssets (56) | Timeline Frame 20 | Symbol 127 as "lava" |
ExportAssets (56) | Timeline Frame 20 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 20 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 20 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 20 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 20 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 20 | Symbol 150 as "Actions" |
ExportAssets (56) | Timeline Frame 21 | Symbol 127 as "lava" |
ExportAssets (56) | Timeline Frame 21 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 21 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 21 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 21 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 21 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 21 | Symbol 150 as "Actions" |
ExportAssets (56) | Timeline Frame 22 | Symbol 127 as "lava" |
ExportAssets (56) | Timeline Frame 22 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 22 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 22 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 22 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 22 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 22 | Symbol 150 as "Actions" |
ExportAssets (56) | Timeline Frame 23 | Symbol 127 as "lava" |
ExportAssets (56) | Timeline Frame 23 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 23 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 23 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 23 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 23 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 23 | Symbol 150 as "Actions" |
ExportAssets (56) | Timeline Frame 24 | Symbol 127 as "lava" |
ExportAssets (56) | Timeline Frame 24 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 24 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 24 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 24 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 24 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 24 | Symbol 150 as "Actions" |
ExportAssets (56) | Timeline Frame 25 | Symbol 127 as "lava" |
ExportAssets (56) | Timeline Frame 25 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 25 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 25 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 25 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 25 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 25 | Symbol 150 as "Actions" |
ExportAssets (56) | Timeline Frame 26 | Symbol 127 as "lava" |
ExportAssets (56) | Timeline Frame 26 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 26 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 26 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 26 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 26 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 26 | Symbol 150 as "Actions" |
ExportAssets (56) | Timeline Frame 27 | Symbol 127 as "lava" |
ExportAssets (56) | Timeline Frame 27 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 27 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 27 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 27 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 27 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 27 | Symbol 150 as "Actions" |
ExportAssets (56) | Timeline Frame 28 | Symbol 127 as "lava" |
ExportAssets (56) | Timeline Frame 28 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 28 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 28 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 28 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 28 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 28 | Symbol 150 as "Actions" |
ExportAssets (56) | Timeline Frame 29 | Symbol 127 as "lava" |
ExportAssets (56) | Timeline Frame 29 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 29 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 29 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 29 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 29 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 29 | Symbol 150 as "Actions" |
ExportAssets (56) | Timeline Frame 30 | Symbol 127 as "lava" |
ExportAssets (56) | Timeline Frame 30 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 30 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 30 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 30 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 30 | Symbol 87 as "lives" |
ExportAssets (56) | Timeline Frame 30 | Symbol 150 as "Actions" |
ExportAssets (56) | Timeline Frame 30 | Symbol 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
score | Symbol 213 EditableText | "" |
life | Symbol 215 EditableText | "" |
hitCount | Symbol 220 EditableText | "" |
waveNum | Symbol 221 EditableText | "" |
playerDead | Symbol 222 EditableText | "" |
enemyDead | Symbol 223 EditableText | "" |
waveNum | Symbol 225 EditableText | "" |
goPlay | Symbol 227 EditableText | "" |
hitCount | Symbol 233 EditableText | "" |
waveNum | Symbol 241 EditableText | "" |
enemyDead | Symbol 242 EditableText | "" |
playerDead | Symbol 243 EditableText | "" |
playerDead | Symbol 244 EditableText | "" |
enemyDead | Symbol 245 EditableText | "" |
playerDead | Symbol 246 EditableText | "" |
enemyDead | Symbol 247 EditableText | "" |
waveNum | Symbol 248 EditableText | "" |
goPlay | Symbol 249 EditableText | "" |
display | Symbol 250 EditableText | "" |
score | Symbol 251 EditableText | "" |
life | Symbol 252 EditableText | "" |
hitCount | Symbol 254 EditableText | "" |
|