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

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

Cruno.swf

This is the info page for
Flash #49697

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


Text
0

%

x2

9

9

9

9

9

9

9

9

9

Cruno

Cruno

Play

Play

Play

Instructions

Instructions

Cruno

by Jacob Roseland

1) Use the mouse to control your card

2) Collect cards of the same number or same
color for points

for example:              +               or              +

3) Avoid cards not of the same number or color

4) 3 bonus cards:

x2 score
per card

reduce
enemy
speed

1up

0

speed

_Game Over

0

Play
Again?

0

score

high score

ActionScript [AS1/AS2]

Frame 2
function startMusic() { this.createEmptyMovieClip("sndHolder1_mc", this.getNextHighestDepth()); this.createEmptyMovieClip("sndHolder2_mc", this.getNextHighestDepth()); var music1 = new Sound(sndHolder1_mc); music2 = new Sound(sndHolder2_mc); music1.attachSound("not_playing_music"); music2.attachSound("playing_music"); music1.start(0.04, 9999); music2.start(0.04, 9999); music1.setVolume(100); music2.setVolume(0); } startMusic();
Instance of Symbol 41 MovieClip [card] in Frame 2
onClipEvent (load) { this.number = 2; this.color.tint = "green"; }
Instance of Symbol 41 MovieClip [card] in Frame 2
onClipEvent (load) { this.number = 7; this.color.tint = "yellow"; }
Instance of Symbol 41 MovieClip [card] in Frame 2
onClipEvent (load) { this.number = 2; this.color.tint = "red"; }
Instance of Symbol 41 MovieClip [card] in Frame 2
onClipEvent (load) { this.number = 2; this.color.tint = "blue"; }
Instance of Symbol 41 MovieClip [card] in Frame 2
onClipEvent (load) { this.number = 2; this.color.tint = "red"; }
Instance of Symbol 41 MovieClip [card] in Frame 2
onClipEvent (load) { this.number = 2; this.color.tint = "yellow"; }
Instance of Symbol 41 MovieClip [card] in Frame 2
onClipEvent (load) { this.number = 2; this.color.tint = "green"; }
Instance of Symbol 41 MovieClip [card] in Frame 2
onClipEvent (load) { this.number = 2; this.color.tint = "yellow"; }
Instance of Symbol 41 MovieClip [card] in Frame 2
onClipEvent (load) { this.number = 2; this.color.tint = "yellow"; }
Instance of Symbol 41 MovieClip [card] in Frame 2
onClipEvent (load) { this.number = 2; this.color.tint = "red"; }
Instance of Symbol 41 MovieClip [card] in Frame 2
onClipEvent (load) { this.number = 2; this.color.tint = "blue"; }
Instance of Symbol 40 MovieClip in Frame 2
onClipEvent (load) { this._alpha = 50; }
Frame 21
stop(); webData = new LoadVars(); webData.load("Cruno_High_Score.txt"); webData.onLoad = function (success) { if (success) { _root.score_high = webData.score; } else { trace("Error!"); _root.score_high = 469; } };
Instance of Symbol 88 MovieClip "Instructions" in Frame 21
onClipEvent (load) { this._visible = false; this._alpha = 85; }
Frame 22
this.createEmptyMovieClip("theScene", 1); theScene._x = 275; theScene._y = 200; objectsInScene = new Array(); focalLength = 500; spin = 0; displayPane = function () { var angle = (this.angle + spin); var x = (Math.cos(angle) * this.radius); var z = (Math.sin(angle) * this.radius); var y = this.y; var scaleRatio = (focalLength / (focalLength + z)); this._x = x * scaleRatio; this._y = y * scaleRatio; this._xscale = (this._yscale = 100 * scaleRatio); this._xscale = this._xscale * Math.abs(Math.sin(angle)); this.swapDepths(Math.round(-z)); this.number = Player.number; this.color.tint = Player.color.tint; }; angleStep = (Math.PI/4); i = 0; while (i < 8) { attachedObj = theScene.attachMovie("card", "card" + i, i); attachedObj._xscale = 300; attachedObj._yscale = 300; attachedObj._alpha = 50; attachedObj.angle = angleStep * i; attachedObj.radius = 100; attachedObj.x = Math.cos(attachedObj.angle) * attachedObj.radius; attachedObj.z = Math.sin(attachedObj.angle) * attachedObj.radius; attachedObj.y = 40; attachedObj.display = displayPane; objectsInScene.push(attachedObj); i++; } neg = -1; panCamera = function () { spin = spin - (this._xmouse / 1000); var i = 0; while (i < objectsInScene.length) { objectsInScene[i].display(); i++; } neg = neg * -1; if (Key.isDown(38)) { if (focalLength < 2000) { focalLength = focalLength + 10; } } if (Key.isDown(40)) { if (focalLength > 100) { focalLength = focalLength - 10; } } }; theScene.onEnterFrame = panCamera; function initializeEnemies() { var i = 0; while (i < MAXENEMIES) { attachMovie("card", "Enemy" + i, 9000 + i); var badGuy = _root["Enemy" + i]; initializeDirection(badGuy); setColorandNumber(badGuy); badGuy.alive = false; badGuy._visible = false; i++; } } function moveEnemies() { var i = 0; while (i < MAXENEMIES) { var badGuy = _root["Enemy" + i]; if ((!badGuy.alive) && (random(badGuy_randomizer) == 0)) { badGuy.alive = true; badGuy._visible = true; break; } i++; } var i = 0; while (i < MAXENEMIES) { var badGuy = _root["Enemy" + i]; if (badGuy.alive) { badGuy._x = badGuy._x + badGuy.xv; badGuy._y = badGuy._y + badGuy.yv; if (badGuy.hitTest(Player)) { if ((Player.number != Badguy.number) && (Player.color.tint != Badguy.color.tint)) { wrongGuy(); var i = 0; while (i < maxCoins) { var missile = _root["missile" + i]; if (!missile.fired) { missile.fired = true; missile._visible = true; missile._x = Player._x; missile._y = Player._y; missile.coins_display = -5 * bonus; score = score + (-5 * bonus); break; } i++; } if (background._currentframe > 24) { unLoadGame(); gotoAndStop (23); } background.gotoAndPlay(background._currentframe + 8); } if (Player.number == Badguy.number) { badGuy_dead(); Player.color.tint = Badguy.color.tint; var i = 0; while (i < maxCoins) { var missile = _root["missile" + i]; if (!missile.fired) { missile.fired = true; missile._visible = true; missile._x = Player._x; missile._y = Player._y; missile.coins_display = "+" + (9 * bonus); score = score + (9 * bonus); break; } i++; } } if (Player.color.tint == Badguy.color.tint) { badGuy_dead(); Player.number = Badguy.number; var i = 0; while (i < maxCoins) { var missile = _root["missile" + i]; if (!missile.fired) { missile.fired = true; missile._visible = true; missile._x = Player._x; missile._y = Player._y; missile.coins_display = "+" + (3 * bonus); score = score + (3 * bonus); break; } i++; } } badGuy.alive = false; badGuy._visible = false; setColorandNumber(badGuy); initializeDirection(badGuy); if (score < 0) { score = 0; } } if (((((badGuy._x + badGuy._width) < 0) || ((badGuy._y + badGuy._height) < 0)) || (badGuy._x > stage_width)) || (badGuy._y > stage_height)) { badGuy.alive = false; badGuy._visible = false; initializeDirection(badGuy); setColorandNumber(badGuy); } } i++; } } function initializePlayer() { attachMovie("card", "Player", 100); if (!mouse_mode) { Player._x = 100; Player._y = 240; Player.yv = 0; Player.xv = 0; Player.ya = 4; } setColorandNumber(Player); } function movePlayer() { if (mouse_mode) { Mouse.hide(); Player._x = _xmouse; Player._y = _ymouse; } else { if (Key.isDown(38)) { Player.yv = Player.yv + (-Player.ya); } if (Key.isDown(40)) { Player.yv = Player.yv + Player.ya; } if (Key.isDown(37)) { Player.xv = Player.xv + (-Player.ya); } if (Key.isDown(39)) { Player.xv = Player.xv + Player.ya; } var MAXVEL = 20; if (Player.yv > MAXVEL) { Player.yv = MAXVEL; } if (Player.xv > MAXVEL) { Player.xv = MAXVEL; } if (Player.yv < (-MAXVEL)) { Player.yv = -MAXVEL; } if (Player.xv < (-MAXVEL)) { Player.xv = -MAXVEL; } Player._y = Player._y + Player.yv; Player._x = Player._x + Player.xv; if (Player.yv > 0) { Player.yv--; } if (Player.xv > 0) { Player.xv--; } if (Player.yv < 0) { Player.yv++; } if (Player.xv < 0) { Player.xv++; } } if (Player._y < 0) { Player._y = 0; } if (Player._x < 0) { Player._x = 0; } if (Player._y > (stage_height - Player._height)) { Player._y = stage_height - Player._height; } if (Player._x > (stage_width - Player._width)) { Player._x = stage_width - Player._width; } Player.number_color = Player.number; } function initializeCoins() { var i = 0; while (i < (maxCoins + 1)) { attachMovie("Coin", "missile" + i, 7000 + i); var missile = _root["missile" + i]; missile._xscale = 50; missile._yscale = 50; missile._visible = false; missile.fired = false; i++; } } function moveCoins() { var i = 0; while (i < (maxCoins + 1)) { var missile = _root["missile" + i]; if (missile.fired) { missile._y = missile._y - (missile._height / 8); if (missile._y < (-(missile._height / 2))) { missile.fired = false; missile._visible = false; } } i++; } } function initializeSpecialCards() { attachMovie("card", "Special", 9100); var special = _root.Special; setSpecialProperty(special); initializeDirection(special); special.alive = false; special._visible = false; bonus_ctr = 0; bonus = 1; } function moveSpecialCards() { if (bonus_ctr == 0) { bonus = 1; } else { bonus_ctr--; } var special = _root.Special; if ((!special.alive) && (random(special_randomizer) == 0)) { special.alive = true; special._visible = true; } if (special.alive) { special.color.tint = Player.color.tint; special._x = special._x + special.xv; special._y = special._y + special.yv; if (special.hitTest(Player)) { if (special.number_color != "S") { badGuy_dead(); } else { oneUp(); } var missile = _root["missile" + maxCoins]; if (!missile.fired) { if (special.number_color == "D") { missile.coins_display = "x2"; bonus = bonus * 2; bonus_ctr = 300; } if (special.number_color == "R") { missile.coins_display = "xS"; speed = speed - 2; } if (special.number_color == "S") { missile.coins_display = "1up"; _root.power.multiplier = "1up"; if (background._currentframe > 8) { background.gotoAndPlay(background._currentframe - 8); } } missile.fired = true; missile._visible = true; missile._x = Player._x; missile._y = Player._y; } special.alive = false; special._visible = false; setSpecialProperty(special); initializeDirection(special); } if (((((special._x + special._width) < 0) || ((special._y + special._height) < 0)) || (special._x > stage_width)) || (special._y > stage_height)) { special.alive = false; special._visible = false; initializeDirection(special); setSpecialProperty(special); } } } stop(); function badGuy_dead() { var dead = new Sound(); dead.attachSound("badGuy_dead"); dead.start(0, 1); } function wrongGuy() { var wrong = new Sound(); wrong.attachSound("wrongGuy"); wrong.start(0, 1); } function oneUp() { var oneup = new Sound(); oneup.attachSound("oneUp"); oneup.start(0, 1); } function unLoadGame() { var i = 0; while (i < MAXENEMIES) { var Enemy = _root["Enemy" + i]; Enemy.removeMovieClip(); i++; } var i = 0; while (i < 30) { var Enemy = _root["missile" + i]; Enemy.removeMovieClip(); i++; } _root.theScene.removeMovieClip(); var special = _root.Special; special.removeMovieClip(); Player.removeMovieClip(); Power.removeMovieClip(); end = new Sound(); stopAllSounds(); end.attachSound("gameOver"); end.start(); Mouse.show(); } function initializeDirection(mc) { direction = random(4); switch (direction) { case 0 : mc._x = Math.round((Math.random() * (stage_width - 40)) + 40); mc._y = -badGuy._height; mc.xv = 0; mc.yv = (random(5) + 2) + speed; return; case 1 : mc._x = Math.round((Math.random() * (stage_width - 40)) + 40); mc._y = badGuy._height + stage_height; mc.xv = 0; mc.yv = -((random(5) + 2) + speed); return; case 2 : mc._x = -badGuy._width; mc._y = Math.round((Math.random() * (stage_height - 40)) + 40); mc.xv = (random(5) + 2) + speed; mc.yv = 0; return; case 3 : mc._x = badGuy._width + 550; mc._y = Math.round((Math.random() * (stage_height - 40)) + 40); mc.xv = -((random(5) + 2) + speed); mc.yv = 0; } } function setColorandNumber(mc) { var col = Math.round(random(4)); switch (col) { case 0 : mc.color.tint = "blue"; break; case 1 : mc.color.tint = "red"; break; case 2 : mc.color.tint = "green"; break; case 3 : mc.color.tint = "yellow"; } var num = Math.round(random(10)); mc.number = num; mc.number_color = mc.number; } function setSpecialProperty(mc) { var col = random(3); switch (col) { case 0 : mc.number = "D"; break; case 1 : if (background._currentframe <= 8) { setSpecialProperty(mc); break; } mc.number = "S"; break; case 2 : if (speed <= 2) { setSpecialProperty(mc); } else { mc.number = "R"; } } mc.number_color = mc.number; }
Instance of Symbol 95 MovieClip in Frame 22
onClipEvent (load) { this.gotoAndStop(random(this._totalframes) + 1); } onClipEvent (enterFrame) { if ((_root.timer % 30) == 0) { this.gotoAndStop(random(this._totalframes) + 1); var colorful = new Color(this); colorful.setRGB(16580608); this._alpha = random(100) + 1; this._height = random(_root.stage_height) + 1; this._width = random(_root.stage_width) + 1; this._rotation = random(360) + 1; colorful.setRGB(Math.round(Math.random() * 16777215)); } }
Instance of Symbol 7 MovieClip [Uno] in Frame 22
onClipEvent (load) { _root.stage_height = 400; _root.stage_width = 550; _root.badGuy_randomizer = 400; _root.special_randomizer = 700; _root.score = 0; _root.timer = -19; _root.speed = 0; _root.bonus = 1; _root.MAXENEMIES = 15; _root.maxCoins = 10; _root.mouse_mode = true; _root.new_game = false; _root.initializeEnemies(); _root.initializePlayer(); _root.initializeCoins(); _root.initializeSpecialCards(); music2 = Sound(_root.sndHolder2_mc); _root.music2.setVolume(100); } onClipEvent (enterFrame) { if ((_root.timer % 30) == 0) { if (_root.special_randomizer > 1) { _root.special_randomizer--; } if (_root.badGuy_randomizer > 1) { _root.badGuy_randomizer--; } _root.score++; } if ((_root.timer % 300) == 0) { _root.speed++; } _root.score_keeper = Math.round(_root.score); _root.moveEnemies(); _root.movePlayer(); _root.moveCoins(); _root.moveSpecialCards(); _root.speed_meter = _root.speed; _root.timer++; }
Frame 23
stop(); if (_root.score_high < _root.score_keeper) { _root.score_high = _root.score_keeper; } _root.score_kept = _root.score_keeper; onLoad = function () { Mouse.show(); };
Instance of Symbol 29 MovieClip [Coin] in Frame 23
onClipEvent (load) { if (_root.score_keeper < 100) { this.coins_display = "nub"; } else if (_root.score_keeper < 200) { this.coins_display = "ok"; } else if (_root.score_keeper < 300) { this.coins_display = "joe"; } else if (_root.score_keeper < 400) { this.coins_display = "wtf"; } else if (_root.score_keeper < 500) { this.coins_display = "pro"; } else if (_root.score_keeper < 600) { this.coins_display = "jedi"; } else if (_root.score_keeper >= 600) { this.coins_display = "1337"; } }
Instance of Symbol 10 MovieClip in Symbol 17 MovieClip [PowerBar] Frame 1
onClipEvent (load) { this._visible = false; _parent.percent = 0; } onClipEvent (enterFrame) { if (_root.bonus_ctr == 300) { this._visible = false; _parent.percent = 0; _parent.multiplier = ""; } else { this._visible = true; _parent.percent = Math.floor(this._xscale); _parent.multiplier = "x" + (1 * _root.bonus); } this._xscale = _root.bonus_ctr / 3; }
Symbol 29 MovieClip [Coin] Frame 12
gotoAndPlay (1);
Symbol 41 MovieClip [card] Frame 1
onLoad = function () { }; onEnterFrame = function () { };
Instance of Symbol 31 MovieClip [color] "color" in Symbol 41 MovieClip [card] Frame 1
onClipEvent (load) { var colorful = new Color(num_color); if (tint == "red") { colorful.setRGB(16580608); } if (tint == "blue") { colorful.setRGB(294839); } if (tint == "green") { colorful.setRGB(1676620); } if (tint == "yellow") { colorful.setRGB(16772610); } } onClipEvent (enterFrame) { var colorful = new Color(this); if (tint == "red") { colorful.setRGB(16580608); } if (tint == "blue") { colorful.setRGB(294839); } if (tint == "green") { colorful.setRGB(1676620); } if (tint == "yellow") { colorful.setRGB(16772610); } }
Instance of Symbol 40 MovieClip "card_back" in Symbol 41 MovieClip [card] Frame 1
onClipEvent (load) { var turned = false; } onClipEvent (enterFrame) { this._visible = turned; }
Symbol 51 MovieClip Frame 1
_root.stop(); PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100; if (PercentLoaded != 100) { bar._xscale = PercentLoaded; } else { gotoAndPlay (5); }
Symbol 51 MovieClip Frame 2
gotoAndPlay (1);
Symbol 51 MovieClip Frame 40
_root.play();
Symbol 74 Button
on (press) { gotoAndPlay (22); }
Symbol 79 Button
on (press) { if (Instructions._visible == false) { Instructions._visible = true; } else { Instructions._visible = false; } }
Instance of Symbol 41 MovieClip [card] in Symbol 88 MovieClip Frame 1
onClipEvent (load) { this.number = 7; this.color.tint = "red"; }
Instance of Symbol 41 MovieClip [card] in Symbol 88 MovieClip Frame 1
onClipEvent (load) { this.number = 7; this.color.tint = "blue"; }
Instance of Symbol 41 MovieClip [card] in Symbol 88 MovieClip Frame 1
onClipEvent (load) { this.number = 6; this.color.tint = "green"; }
Instance of Symbol 41 MovieClip [card] in Symbol 88 MovieClip Frame 1
onClipEvent (load) { this.number = 5; this.color.tint = "green"; }
Instance of Symbol 41 MovieClip [card] in Symbol 88 MovieClip Frame 1
onClipEvent (load) { this.number = "D"; this.color.tint = "yellow"; }
Instance of Symbol 41 MovieClip [card] in Symbol 88 MovieClip Frame 1
onClipEvent (load) { this.number = "R"; this.color.tint = "green"; }
Instance of Symbol 41 MovieClip [card] in Symbol 88 MovieClip Frame 1
onClipEvent (load) { this.number = "S"; this.color.tint = "blue"; }
Instance of Symbol 29 MovieClip [Coin] in Symbol 88 MovieClip Frame 1
onClipEvent (load) { this.coins_display = "+9"; }
Instance of Symbol 29 MovieClip [Coin] in Symbol 88 MovieClip Frame 1
onClipEvent (load) { this.coins_display = "+3"; }
Symbol 95 MovieClip Frame 1
stop();
Symbol 120 MovieClip Frame 8
gotoAndPlay (1);
Symbol 120 MovieClip Frame 16
gotoAndPlay (9);
Symbol 120 MovieClip Frame 24
gotoAndPlay (17);
Symbol 120 MovieClip Frame 32
gotoAndPlay (25);
Symbol 129 Button
on (release) { stopAllSounds(); gotoAndStop (22); new_game = true; this.createEmptyMovieClip("sndHolder1_mc", this.getNextHighestDepth()); this.createEmptyMovieClip("sndHolder2_mc", this.getNextHighestDepth()); music2 = new Sound(sndHolder2_mc); music2.attachSound("playing_music"); music2.start(0.04, 9999); music2.setVolume(100); }

Library Items

Symbol 1 Sound [playing_music]
Symbol 2 Sound [not_playing_music]
Symbol 3 Sound [wrongGuy]
Symbol 4 Sound [gameOver]
Symbol 5 Sound [badGuy_dead]
Symbol 6 Sound [oneUp]
Symbol 7 MovieClip [Uno]Used by:Timeline
Symbol 8 GraphicUsed by:17
Symbol 9 GraphicUsed by:10
Symbol 10 MovieClipUses:9Used by:17
Symbol 11 FontUsed by:12
Symbol 12 EditableTextUses:11Used by:17
Symbol 13 FontUsed by:14
Symbol 14 TextUses:13Used by:17
Symbol 15 FontUsed by:16
Symbol 16 EditableTextUses:15Used by:17
Symbol 17 MovieClip [PowerBar]Uses:8 10 12 14 16Used by:Timeline
Symbol 18 GraphicUsed by:29
Symbol 19 FontUsed by:20 22 24 26 27 28
Symbol 20 EditableTextUses:19Used by:29
Symbol 21 GraphicUsed by:29
Symbol 22 EditableTextUses:19Used by:29
Symbol 23 GraphicUsed by:29
Symbol 24 EditableTextUses:19Used by:29
Symbol 25 GraphicUsed by:29
Symbol 26 EditableTextUses:19Used by:29
Symbol 27 EditableTextUses:19Used by:29
Symbol 28 EditableTextUses:19Used by:29
Symbol 29 MovieClip [Coin]Uses:18 20 21 22 23 24 25 26 27 28Used by:88  Timeline
Symbol 30 GraphicUsed by:31
Symbol 31 MovieClip [color]Uses:30Used by:41
Symbol 32 GraphicUsed by:41
Symbol 33 GraphicUsed by:41
Symbol 34 FontUsed by:35
Symbol 35 EditableTextUses:34Used by:41
Symbol 36 FontUsed by:37 38
Symbol 37 EditableTextUses:36Used by:41
Symbol 38 EditableTextUses:36Used by:41
Symbol 39 GraphicUsed by:40
Symbol 40 MovieClipUses:39Used by:41  Timeline
Symbol 41 MovieClip [card]Uses:32 31 33 35 37 38 40Used by:88  Timeline
Symbol 42 GraphicUsed by:51
Symbol 43 GraphicUsed by:51
Symbol 44 GraphicUsed by:45
Symbol 45 MovieClipUses:44Used by:51
Symbol 46 GraphicUsed by:47
Symbol 47 MovieClipUses:46Used by:51
Symbol 48 ShapeTweeningUsed by:51
Symbol 49 ShapeTweeningUsed by:51
Symbol 50 GraphicUsed by:51
Symbol 51 MovieClipUses:42 43 45 47 48 49 50Used by:Timeline
Symbol 52 GraphicUsed by:Timeline
Symbol 53 GraphicUsed by:58
Symbol 54 GraphicUsed by:58
Symbol 55 GraphicUsed by:58
Symbol 56 GraphicUsed by:58
Symbol 57 GraphicUsed by:58
Symbol 58 MovieClipUses:53 54 55 56 57Used by:Timeline
Symbol 59 BitmapUsed by:60
Symbol 60 GraphicUses:59Used by:Timeline
Symbol 61 BitmapUsed by:62
Symbol 62 GraphicUses:61Used by:63
Symbol 63 MovieClipUses:62Used by:Timeline
Symbol 64 GraphicUsed by:Timeline
Symbol 65 FontUsed by:66 67 69 70 72 75 76 81 82 84 85 86 87
Symbol 66 EditableTextUses:65Used by:Timeline
Symbol 67 EditableTextUses:65Used by:Timeline
Symbol 68 GraphicUsed by:74 79
Symbol 69 TextUses:65Used by:74
Symbol 70 TextUses:65Used by:74
Symbol 71 GraphicUsed by:74
Symbol 72 TextUses:65Used by:74
Symbol 73 SoundUsed by:74 79
Symbol 74 ButtonUses:68 69 70 71 72 73Used by:Timeline
Symbol 75 TextUses:65Used by:79
Symbol 76 TextUses:65Used by:79
Symbol 77 GraphicUsed by:79
Symbol 78 SoundUsed by:79
Symbol 79 ButtonUses:68 75 76 77 73 78Used by:Timeline
Symbol 80 GraphicUsed by:Timeline
Symbol 81 EditableTextUses:65Used by:Timeline
Symbol 82 TextUses:65Used by:Timeline
Symbol 83 GraphicUsed by:88
Symbol 84 EditableTextUses:65Used by:88
Symbol 85 EditableTextUses:65Used by:88
Symbol 86 EditableTextUses:65Used by:88
Symbol 87 EditableTextUses:65Used by:88
Symbol 88 MovieClipUses:83 41 29 84 85 86 87Used by:Timeline
Symbol 89 GraphicUsed by:95
Symbol 90 GraphicUsed by:95
Symbol 91 GraphicUsed by:95
Symbol 92 GraphicUsed by:95
Symbol 93 GraphicUsed by:95
Symbol 94 GraphicUsed by:95
Symbol 95 MovieClipUses:89 90 91 92 93 94Used by:Timeline
Symbol 96 FontUsed by:97
Symbol 97 EditableTextUses:96Used by:Timeline
Symbol 98 FontUsed by:99 122 123 127 130 131 132
Symbol 99 EditableTextUses:98Used by:Timeline
Symbol 100 GraphicUsed by:120
Symbol 101 GraphicUsed by:120
Symbol 102 GraphicUsed by:120
Symbol 103 GraphicUsed by:120
Symbol 104 GraphicUsed by:120
Symbol 105 GraphicUsed by:120
Symbol 106 GraphicUsed by:120
Symbol 107 GraphicUsed by:120
Symbol 108 GraphicUsed by:120
Symbol 109 GraphicUsed by:120
Symbol 110 GraphicUsed by:120
Symbol 111 GraphicUsed by:120
Symbol 112 GraphicUsed by:120
Symbol 113 GraphicUsed by:120
Symbol 114 GraphicUsed by:120
Symbol 115 GraphicUsed by:120
Symbol 116 GraphicUsed by:120
Symbol 117 GraphicUsed by:120
Symbol 118 GraphicUsed by:120
Symbol 119 GraphicUsed by:120
Symbol 120 MovieClipUses:100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119Used by:Timeline
Symbol 121 GraphicUsed by:Timeline
Symbol 122 EditableTextUses:98Used by:Timeline
Symbol 123 EditableTextUses:98Used by:Timeline
Symbol 124 GraphicUsed by:129
Symbol 125 GraphicUsed by:129
Symbol 126 GraphicUsed by:129
Symbol 127 EditableTextUses:98Used by:129
Symbol 128 GraphicUsed by:129
Symbol 129 ButtonUses:124 125 126 127 128Used by:Timeline
Symbol 130 EditableTextUses:98Used by:Timeline
Symbol 131 EditableTextUses:98Used by:Timeline
Symbol 132 EditableTextUses:98Used by:Timeline

Instance Names

"Instructions"Frame 21Symbol 88 MovieClip
"speed_meter"Frame 22Symbol 99 EditableText
"background"Frame 22Symbol 120 MovieClip
"power"Frame 22Symbol 17 MovieClip [PowerBar]
"percent"Symbol 17 MovieClip [PowerBar] Frame 1Symbol 12 EditableText
"multiplier"Symbol 17 MovieClip [PowerBar] Frame 1Symbol 16 EditableText
"coins_display"Symbol 29 MovieClip [Coin] Frame 1Symbol 20 EditableText
"coins_display"Symbol 29 MovieClip [Coin] Frame 3Symbol 22 EditableText
"coins_display"Symbol 29 MovieClip [Coin] Frame 5Symbol 24 EditableText
"coins_display"Symbol 29 MovieClip [Coin] Frame 7Symbol 26 EditableText
"coins_display"Symbol 29 MovieClip [Coin] Frame 9Symbol 27 EditableText
"coins_display"Symbol 29 MovieClip [Coin] Frame 11Symbol 28 EditableText
"color"Symbol 41 MovieClip [card] Frame 1Symbol 31 MovieClip [color]
"number"Symbol 41 MovieClip [card] Frame 1Symbol 35 EditableText
"number"Symbol 41 MovieClip [card] Frame 1Symbol 37 EditableText
"number"Symbol 41 MovieClip [card] Frame 1Symbol 38 EditableText
"card_back"Symbol 41 MovieClip [card] Frame 1Symbol 40 MovieClip
"bar"Symbol 51 MovieClip Frame 1Symbol 45 MovieClip

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 1 as "playing_music"
ExportAssets (56)Timeline Frame 1Symbol 2 as "not_playing_music"
ExportAssets (56)Timeline Frame 1Symbol 3 as "wrongGuy"
ExportAssets (56)Timeline Frame 1Symbol 4 as "gameOver"
ExportAssets (56)Timeline Frame 1Symbol 5 as "badGuy_dead"
ExportAssets (56)Timeline Frame 1Symbol 6 as "oneUp"
ExportAssets (56)Timeline Frame 1Symbol 7 as "Uno"
ExportAssets (56)Timeline Frame 1Symbol 17 as "PowerBar"
ExportAssets (56)Timeline Frame 1Symbol 29 as "Coin"
ExportAssets (56)Timeline Frame 1Symbol 31 as "color"
ExportAssets (56)Timeline Frame 1Symbol 31 as "color"
ExportAssets (56)Timeline Frame 1Symbol 41 as "card"
ExportAssets (56)Timeline Frame 2Symbol 41 as "card"
ExportAssets (56)Timeline Frame 2Symbol 41 as "card"
ExportAssets (56)Timeline Frame 2Symbol 41 as "card"
ExportAssets (56)Timeline Frame 2Symbol 41 as "card"
ExportAssets (56)Timeline Frame 2Symbol 41 as "card"
ExportAssets (56)Timeline Frame 2Symbol 41 as "card"
ExportAssets (56)Timeline Frame 2Symbol 41 as "card"
ExportAssets (56)Timeline Frame 2Symbol 41 as "card"
ExportAssets (56)Timeline Frame 2Symbol 41 as "card"
ExportAssets (56)Timeline Frame 2Symbol 41 as "card"
ExportAssets (56)Timeline Frame 2Symbol 41 as "card"
ExportAssets (56)Timeline Frame 3Symbol 41 as "card"
ExportAssets (56)Timeline Frame 3Symbol 41 as "card"
ExportAssets (56)Timeline Frame 3Symbol 41 as "card"
ExportAssets (56)Timeline Frame 3Symbol 41 as "card"
ExportAssets (56)Timeline Frame 3Symbol 41 as "card"
ExportAssets (56)Timeline Frame 3Symbol 41 as "card"
ExportAssets (56)Timeline Frame 3Symbol 41 as "card"
ExportAssets (56)Timeline Frame 3Symbol 41 as "card"
ExportAssets (56)Timeline Frame 3Symbol 41 as "card"
ExportAssets (56)Timeline Frame 3Symbol 41 as "card"
ExportAssets (56)Timeline Frame 3Symbol 41 as "card"
ExportAssets (56)Timeline Frame 4Symbol 41 as "card"
ExportAssets (56)Timeline Frame 4Symbol 41 as "card"
ExportAssets (56)Timeline Frame 4Symbol 41 as "card"
ExportAssets (56)Timeline Frame 4Symbol 41 as "card"
ExportAssets (56)Timeline Frame 4Symbol 41 as "card"
ExportAssets (56)Timeline Frame 4Symbol 41 as "card"
ExportAssets (56)Timeline Frame 4Symbol 41 as "card"
ExportAssets (56)Timeline Frame 4Symbol 41 as "card"
ExportAssets (56)Timeline Frame 4Symbol 41 as "card"
ExportAssets (56)Timeline Frame 4Symbol 41 as "card"
ExportAssets (56)Timeline Frame 4Symbol 41 as "card"
ExportAssets (56)Timeline Frame 5Symbol 41 as "card"
ExportAssets (56)Timeline Frame 5Symbol 41 as "card"
ExportAssets (56)Timeline Frame 5Symbol 41 as "card"
ExportAssets (56)Timeline Frame 5Symbol 41 as "card"
ExportAssets (56)Timeline Frame 5Symbol 41 as "card"
ExportAssets (56)Timeline Frame 5Symbol 41 as "card"
ExportAssets (56)Timeline Frame 5Symbol 41 as "card"
ExportAssets (56)Timeline Frame 5Symbol 41 as "card"
ExportAssets (56)Timeline Frame 5Symbol 41 as "card"
ExportAssets (56)Timeline Frame 5Symbol 41 as "card"
ExportAssets (56)Timeline Frame 5Symbol 41 as "card"
ExportAssets (56)Timeline Frame 6Symbol 41 as "card"
ExportAssets (56)Timeline Frame 6Symbol 41 as "card"
ExportAssets (56)Timeline Frame 6Symbol 41 as "card"
ExportAssets (56)Timeline Frame 6Symbol 41 as "card"
ExportAssets (56)Timeline Frame 6Symbol 41 as "card"
ExportAssets (56)Timeline Frame 6Symbol 41 as "card"
ExportAssets (56)Timeline Frame 6Symbol 41 as "card"
ExportAssets (56)Timeline Frame 6Symbol 41 as "card"
ExportAssets (56)Timeline Frame 6Symbol 41 as "card"
ExportAssets (56)Timeline Frame 6Symbol 41 as "card"
ExportAssets (56)Timeline Frame 6Symbol 41 as "card"
ExportAssets (56)Timeline Frame 7Symbol 41 as "card"
ExportAssets (56)Timeline Frame 7Symbol 41 as "card"
ExportAssets (56)Timeline Frame 7Symbol 41 as "card"
ExportAssets (56)Timeline Frame 7Symbol 41 as "card"
ExportAssets (56)Timeline Frame 7Symbol 41 as "card"
ExportAssets (56)Timeline Frame 7Symbol 41 as "card"
ExportAssets (56)Timeline Frame 7Symbol 41 as "card"
ExportAssets (56)Timeline Frame 7Symbol 41 as "card"
ExportAssets (56)Timeline Frame 7Symbol 41 as "card"
ExportAssets (56)Timeline Frame 7Symbol 41 as "card"
ExportAssets (56)Timeline Frame 7Symbol 41 as "card"
ExportAssets (56)Timeline Frame 8Symbol 41 as "card"
ExportAssets (56)Timeline Frame 8Symbol 41 as "card"
ExportAssets (56)Timeline Frame 8Symbol 41 as "card"
ExportAssets (56)Timeline Frame 8Symbol 41 as "card"
ExportAssets (56)Timeline Frame 8Symbol 41 as "card"
ExportAssets (56)Timeline Frame 8Symbol 41 as "card"
ExportAssets (56)Timeline Frame 8Symbol 41 as "card"
ExportAssets (56)Timeline Frame 8Symbol 41 as "card"
ExportAssets (56)Timeline Frame 8Symbol 41 as "card"
ExportAssets (56)Timeline Frame 8Symbol 41 as "card"
ExportAssets (56)Timeline Frame 8Symbol 41 as "card"
ExportAssets (56)Timeline Frame 9Symbol 41 as "card"
ExportAssets (56)Timeline Frame 9Symbol 41 as "card"
ExportAssets (56)Timeline Frame 9Symbol 41 as "card"
ExportAssets (56)Timeline Frame 9Symbol 41 as "card"
ExportAssets (56)Timeline Frame 9Symbol 41 as "card"
ExportAssets (56)Timeline Frame 9Symbol 41 as "card"
ExportAssets (56)Timeline Frame 9Symbol 41 as "card"
ExportAssets (56)Timeline Frame 9Symbol 41 as "card"
ExportAssets (56)Timeline Frame 9Symbol 41 as "card"
ExportAssets (56)Timeline Frame 9Symbol 41 as "card"
ExportAssets (56)Timeline Frame 9Symbol 41 as "card"
ExportAssets (56)Timeline Frame 10Symbol 41 as "card"
ExportAssets (56)Timeline Frame 10Symbol 41 as "card"
ExportAssets (56)Timeline Frame 10Symbol 41 as "card"
ExportAssets (56)Timeline Frame 10Symbol 41 as "card"
ExportAssets (56)Timeline Frame 10Symbol 41 as "card"
ExportAssets (56)Timeline Frame 10Symbol 41 as "card"
ExportAssets (56)Timeline Frame 10Symbol 41 as "card"
ExportAssets (56)Timeline Frame 10Symbol 41 as "card"
ExportAssets (56)Timeline Frame 10Symbol 41 as "card"
ExportAssets (56)Timeline Frame 10Symbol 41 as "card"
ExportAssets (56)Timeline Frame 10Symbol 41 as "card"
ExportAssets (56)Timeline Frame 11Symbol 41 as "card"
ExportAssets (56)Timeline Frame 11Symbol 41 as "card"
ExportAssets (56)Timeline Frame 11Symbol 41 as "card"
ExportAssets (56)Timeline Frame 11Symbol 41 as "card"
ExportAssets (56)Timeline Frame 11Symbol 41 as "card"
ExportAssets (56)Timeline Frame 11Symbol 41 as "card"
ExportAssets (56)Timeline Frame 11Symbol 41 as "card"
ExportAssets (56)Timeline Frame 11Symbol 41 as "card"
ExportAssets (56)Timeline Frame 11Symbol 41 as "card"
ExportAssets (56)Timeline Frame 11Symbol 41 as "card"
ExportAssets (56)Timeline Frame 11Symbol 41 as "card"
ExportAssets (56)Timeline Frame 12Symbol 41 as "card"
ExportAssets (56)Timeline Frame 12Symbol 41 as "card"
ExportAssets (56)Timeline Frame 12Symbol 41 as "card"
ExportAssets (56)Timeline Frame 12Symbol 41 as "card"
ExportAssets (56)Timeline Frame 12Symbol 41 as "card"
ExportAssets (56)Timeline Frame 12Symbol 41 as "card"
ExportAssets (56)Timeline Frame 12Symbol 41 as "card"
ExportAssets (56)Timeline Frame 12Symbol 41 as "card"
ExportAssets (56)Timeline Frame 12Symbol 41 as "card"
ExportAssets (56)Timeline Frame 12Symbol 41 as "card"
ExportAssets (56)Timeline Frame 12Symbol 41 as "card"
ExportAssets (56)Timeline Frame 13Symbol 41 as "card"
ExportAssets (56)Timeline Frame 13Symbol 41 as "card"
ExportAssets (56)Timeline Frame 13Symbol 41 as "card"
ExportAssets (56)Timeline Frame 13Symbol 41 as "card"
ExportAssets (56)Timeline Frame 13Symbol 41 as "card"
ExportAssets (56)Timeline Frame 13Symbol 41 as "card"
ExportAssets (56)Timeline Frame 13Symbol 41 as "card"
ExportAssets (56)Timeline Frame 13Symbol 41 as "card"
ExportAssets (56)Timeline Frame 13Symbol 41 as "card"
ExportAssets (56)Timeline Frame 13Symbol 41 as "card"
ExportAssets (56)Timeline Frame 13Symbol 41 as "card"
ExportAssets (56)Timeline Frame 14Symbol 41 as "card"
ExportAssets (56)Timeline Frame 14Symbol 41 as "card"
ExportAssets (56)Timeline Frame 14Symbol 41 as "card"
ExportAssets (56)Timeline Frame 14Symbol 41 as "card"
ExportAssets (56)Timeline Frame 14Symbol 41 as "card"
ExportAssets (56)Timeline Frame 14Symbol 41 as "card"
ExportAssets (56)Timeline Frame 14Symbol 41 as "card"
ExportAssets (56)Timeline Frame 14Symbol 41 as "card"
ExportAssets (56)Timeline Frame 14Symbol 41 as "card"
ExportAssets (56)Timeline Frame 14Symbol 41 as "card"
ExportAssets (56)Timeline Frame 14Symbol 41 as "card"
ExportAssets (56)Timeline Frame 15Symbol 41 as "card"
ExportAssets (56)Timeline Frame 15Symbol 41 as "card"
ExportAssets (56)Timeline Frame 15Symbol 41 as "card"
ExportAssets (56)Timeline Frame 15Symbol 41 as "card"
ExportAssets (56)Timeline Frame 15Symbol 41 as "card"
ExportAssets (56)Timeline Frame 15Symbol 41 as "card"
ExportAssets (56)Timeline Frame 15Symbol 41 as "card"
ExportAssets (56)Timeline Frame 15Symbol 41 as "card"
ExportAssets (56)Timeline Frame 15Symbol 41 as "card"
ExportAssets (56)Timeline Frame 15Symbol 41 as "card"
ExportAssets (56)Timeline Frame 15Symbol 41 as "card"
ExportAssets (56)Timeline Frame 16Symbol 41 as "card"
ExportAssets (56)Timeline Frame 16Symbol 41 as "card"
ExportAssets (56)Timeline Frame 16Symbol 41 as "card"
ExportAssets (56)Timeline Frame 16Symbol 41 as "card"
ExportAssets (56)Timeline Frame 16Symbol 41 as "card"
ExportAssets (56)Timeline Frame 16Symbol 41 as "card"
ExportAssets (56)Timeline Frame 16Symbol 41 as "card"
ExportAssets (56)Timeline Frame 16Symbol 41 as "card"
ExportAssets (56)Timeline Frame 16Symbol 41 as "card"
ExportAssets (56)Timeline Frame 16Symbol 41 as "card"
ExportAssets (56)Timeline Frame 16Symbol 41 as "card"
ExportAssets (56)Timeline Frame 17Symbol 41 as "card"
ExportAssets (56)Timeline Frame 17Symbol 41 as "card"
ExportAssets (56)Timeline Frame 17Symbol 41 as "card"
ExportAssets (56)Timeline Frame 17Symbol 41 as "card"
ExportAssets (56)Timeline Frame 17Symbol 41 as "card"
ExportAssets (56)Timeline Frame 17Symbol 41 as "card"
ExportAssets (56)Timeline Frame 17Symbol 41 as "card"
ExportAssets (56)Timeline Frame 17Symbol 41 as "card"
ExportAssets (56)Timeline Frame 17Symbol 41 as "card"
ExportAssets (56)Timeline Frame 17Symbol 41 as "card"
ExportAssets (56)Timeline Frame 17Symbol 41 as "card"
ExportAssets (56)Timeline Frame 18Symbol 41 as "card"
ExportAssets (56)Timeline Frame 18Symbol 41 as "card"
ExportAssets (56)Timeline Frame 18Symbol 41 as "card"
ExportAssets (56)Timeline Frame 18Symbol 41 as "card"
ExportAssets (56)Timeline Frame 18Symbol 41 as "card"
ExportAssets (56)Timeline Frame 18Symbol 41 as "card"
ExportAssets (56)Timeline Frame 18Symbol 41 as "card"
ExportAssets (56)Timeline Frame 18Symbol 41 as "card"
ExportAssets (56)Timeline Frame 18Symbol 41 as "card"
ExportAssets (56)Timeline Frame 18Symbol 41 as "card"
ExportAssets (56)Timeline Frame 18Symbol 41 as "card"
ExportAssets (56)Timeline Frame 19Symbol 41 as "card"
ExportAssets (56)Timeline Frame 19Symbol 41 as "card"
ExportAssets (56)Timeline Frame 19Symbol 41 as "card"
ExportAssets (56)Timeline Frame 19Symbol 41 as "card"
ExportAssets (56)Timeline Frame 19Symbol 41 as "card"
ExportAssets (56)Timeline Frame 19Symbol 41 as "card"
ExportAssets (56)Timeline Frame 19Symbol 41 as "card"
ExportAssets (56)Timeline Frame 19Symbol 41 as "card"
ExportAssets (56)Timeline Frame 19Symbol 41 as "card"
ExportAssets (56)Timeline Frame 19Symbol 41 as "card"
ExportAssets (56)Timeline Frame 19Symbol 41 as "card"
ExportAssets (56)Timeline Frame 20Symbol 41 as "card"
ExportAssets (56)Timeline Frame 20Symbol 41 as "card"
ExportAssets (56)Timeline Frame 20Symbol 41 as "card"
ExportAssets (56)Timeline Frame 20Symbol 41 as "card"
ExportAssets (56)Timeline Frame 20Symbol 41 as "card"
ExportAssets (56)Timeline Frame 20Symbol 41 as "card"
ExportAssets (56)Timeline Frame 20Symbol 41 as "card"
ExportAssets (56)Timeline Frame 20Symbol 41 as "card"
ExportAssets (56)Timeline Frame 20Symbol 41 as "card"
ExportAssets (56)Timeline Frame 20Symbol 41 as "card"
ExportAssets (56)Timeline Frame 20Symbol 41 as "card"
ExportAssets (56)Timeline Frame 21Symbol 41 as "card"
ExportAssets (56)Timeline Frame 21Symbol 41 as "card"
ExportAssets (56)Timeline Frame 21Symbol 41 as "card"
ExportAssets (56)Timeline Frame 21Symbol 41 as "card"
ExportAssets (56)Timeline Frame 21Symbol 41 as "card"
ExportAssets (56)Timeline Frame 21Symbol 41 as "card"
ExportAssets (56)Timeline Frame 21Symbol 41 as "card"
ExportAssets (56)Timeline Frame 21Symbol 41 as "card"
ExportAssets (56)Timeline Frame 21Symbol 41 as "card"
ExportAssets (56)Timeline Frame 21Symbol 41 as "card"
ExportAssets (56)Timeline Frame 21Symbol 41 as "card"
ExportAssets (56)Timeline Frame 21Symbol 41 as "card"
ExportAssets (56)Timeline Frame 21Symbol 41 as "card"
ExportAssets (56)Timeline Frame 21Symbol 41 as "card"
ExportAssets (56)Timeline Frame 21Symbol 41 as "card"
ExportAssets (56)Timeline Frame 21Symbol 41 as "card"
ExportAssets (56)Timeline Frame 21Symbol 41 as "card"
ExportAssets (56)Timeline Frame 21Symbol 41 as "card"
ExportAssets (56)Timeline Frame 21Symbol 29 as "Coin"
ExportAssets (56)Timeline Frame 21Symbol 29 as "Coin"
ExportAssets (56)Timeline Frame 22Symbol 17 as "PowerBar"
ExportAssets (56)Timeline Frame 22Symbol 7 as "Uno"
ExportAssets (56)Timeline Frame 23Symbol 29 as "Coin"

Labels

"loaded"Symbol 51 MovieClip Frame 5

Dynamic Text Variables

percentSymbol 12 EditableText"0"
multiplierSymbol 16 EditableText"x2"
coins_displaySymbol 20 EditableText"9"
coins_displaySymbol 22 EditableText"9"
coins_displaySymbol 24 EditableText"9"
coins_displaySymbol 26 EditableText"9"
coins_displaySymbol 27 EditableText"9"
coins_displaySymbol 28 EditableText"9"
numberSymbol 35 EditableText"9"
numberSymbol 37 EditableText"9"
numberSymbol 38 EditableText"9"
score_keeperSymbol 97 EditableText"0"
speedSymbol 99 EditableText"speed"
score_keptSymbol 123 EditableText"0"
score_highSymbol 130 EditableText"0"




http://swfchan.com/10/49697/info.shtml
Created: 27/4 -2019 16:21:16 Last modified: 27/4 -2019 16:21:16 Server time: 29/04 -2024 22:01:29