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

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

Crapcar Racing.swf

This is the info page for
Flash #61237

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


Text
By Ouandyoi 2004/07

Quality

Sounds

PLAY

INSTRUCTION

Crapcar Racing

Crapcar Racing

Crapcar Racing

Crapcar Racing

By Ouandyoi

Up

Down

Reverse

Forward

Quality

Music

INSTRUCTIONS

Remaining Time

REPLAY

Congratulation!!

SCORE

You finished the game

(Time X Time X Strength)

You Sucked!!

You ran out of time

Your car has broken down

ActionScript [AS1/AS2]

Frame 1
quality._visible = false; soundsControls._visible = false; music = "start"; stop(); stopAllSounds(); Stage.showMenu = false;
Instance of Symbol 23 MovieClip "quality" in Frame 1
onClipEvent (load) { if (Key.isToggled(81)) { toggledQ = true; } if (!Key.isToggled(81)) { toggledQ = false; } } onClipEvent (enterFrame) { if ((Key.isToggled(81) && (toggledQ == false)) || ((!Key.isToggled(81)) && (toggledQ == true))) { if (_root._quality == "HIGH") { _root._quality = "LOW"; } else if (_root._quality == "MEDIUM") { _root._quality = "HIGH"; } else if (_root._quality == "LOW") { _root._quality = "MEDIUM"; } if (toggledQ == false) { toggledQ = true; } else if (toggledQ == true) { toggledQ = false; } } }
Instance of Symbol 25 MovieClip "soundsControls" in Frame 1
onClipEvent (load) { function soundControl() { if ((Key.isToggled(77) && (toggledM == false)) || ((!Key.isToggled(77)) && (toggledM == true))) { if (_root.music == "start") { _root.music = "stop"; } else if (_root.music == "stop") { _root.music = "start"; } if (toggledM == false) { toggledM = true; } else if (toggledM == true) { toggledM = false; } } } if (Key.isToggled(77)) { toggledM = true; } if (!Key.isToggled(77)) { toggledM = false; } } onClipEvent (enterFrame) { soundControl(); }
Frame 2
quality._visible = false; soundsControls._visible = false; stop();
Instance of Symbol 46 MovieClip "soundsControls" in Frame 2
onClipEvent (load) { function soundControl() { if ((Key.isToggled(77) && (toggledM == false)) || ((!Key.isToggled(77)) && (toggledM == true))) { if (_root.music == "start") { stopAllSounds(); _root.soundsControls.gotoAndStop(2); _root.music = "stop"; } else if (_root.music == "stop") { stopAllSounds(); _root.soundsControls.gotoAndStop(1); _root.music = "start"; } if (toggledM == false) { toggledM = true; } else if (toggledM == true) { toggledM = false; } } } if (Key.isToggled(77)) { toggledM = true; } if (!Key.isToggled(77)) { toggledM = false; } if (_root.music == "start") { _root.soundsControls.gotoAndStop(2); stopAllSounds(); _root.soundsControls.gotoAndStop(1); } else if (_root.music == "stop") { _root.soundsControls.gotoAndStop(1); stopAllSounds(); _root.soundsControls.gotoAndStop(2); } } onClipEvent (enterFrame) { soundControl(); }
Frame 3
stop();
Frame 4
function carAppear(a, b) { luck = Math.round(random(300) + 1); if ((luck % 3) == 0) { if (i >= 15) { i = 0; } i++; _root.car1.duplicateMovieClip("car1" + i, 10 + i); _root["car1" + i]._x = random(100) + a; _root["car1" + i]._y = random(180) + b; } else if ((luck % 3) == 1) { if (j >= 15) { j = 0; } j++; _root.car2.duplicateMovieClip("car2" + j, 30 + j); _root["car2" + j]._x = random(100) + a; _root["car2" + j]._y = random(180) + b; } else if ((luck % 3) == 2) { if (k >= 15) { k = 0; } k++; _root.car3.duplicateMovieClip("car3" + k, 50 + k); _root["car3" + k]._x = random(100) + a; _root["car3" + k]._y = random(180) + b; } } stop(); _root.carModel.duplicateMovieClip("car", 3); _root.car._y = 300; _root.car._x = 100; _root.car.upKey = 38; _root.car.downKey = 40; _root.car.leftKey = 37; _root.car.rightKey = 39; _root._quality = "MEDIUM"; Stage.showMenu = false; Mouse.hide(); hp = 100; timeLeft = 2400; distance = 0; totalCar = 0; gameEnd = false; soundsControls._visible = false; _root.carModel._visible = true; _root.car1._visible = false; _root.car2._visible = false; _root.car3._visible = false; _root.end._visible = false;
Instance of Symbol 58 MovieClip "allBG" in Frame 4
onClipEvent (load) { BGrondStartx = this._x; } onClipEvent (enterFrame) { BGround.duplicateMovieClip("BGround1", 1); BGround.duplicateMovieClip("BGround2", 2); _root.distText = ("Distance : " + _root.distance) + "/50"; if (0 < _root.timeLeft) { _root.timeLeft--; } _root.tlText = Math.round(_root.timeLeft / 20); if (((_root.car.direction == "right") || (_root.car.direction == "upRight")) || (_root.car.direction == "downRight")) { BGround1._x = BGround._x + (BGround._width - 2); BGround2._x = BGround._x - (BGround._width - 2); this._x = this._x - _root.car.speed; if ((BGrondStartx - BGround._width) >= this._x) { this._x = BGrondStartx - _root.car.speed; _root.distance = _root.distance + 1; } } else if (_root.car.direction == "left") { BGround1._x = BGround._x - (BGround._width - 2); BGround2._x = BGround._x + (BGround._width - 2); this._x = this._x - _root.car.speed; if (this._x >= (BGrondStartx + BGround._width)) { this._x = BGrondStartx - _root.car.speed; _root.distance = _root.distance - 1; } } }
Instance of Symbol 60 MovieClip "end" in Frame 4
onClipEvent (enterFrame) { if (((_root.car.direction == "right") || (_root.car.direction == "upRight")) || (_root.car.direction == "downRight")) { this._x = this._x - _root.car.speed; } else if (_root.car.direction == "left") { this._x = this._x - _root.car.speed; } if ((_root.distance >= 49) && (this._visible == false)) { this._visible = true; this._x = 1500; this._y = 220; } else if (_root.distance < 49) { this._visible = false; } }
Instance of Symbol 62 MovieClip "start" in Frame 4
onClipEvent (enterFrame) { if (((_root.car.direction == "right") || (_root.car.direction == "upRight")) || (_root.car.direction == "downRight")) { this._x = this._x - _root.car.speed; } else if (_root.car.direction == "left") { this._x = this._x - _root.car.speed; } }
Instance of Symbol 67 MovieClip "carModel" in Frame 4
onClipEvent (load) { function soundControl() { if ((Key.isToggled(77) && (toggledM == false)) || ((!Key.isToggled(77)) && (toggledM == true))) { if (_root.music == "start") { stopAllSounds(); _root.soundsControls.gotoAndStop(2); _root.music = "stop"; } else if (_root.music == "stop") { stopAllSounds(); _root.soundsControls.gotoAndStop(1); _root.music = "start"; } if (toggledM == false) { toggledM = true; } else if (toggledM == true) { toggledM = false; } } } if (Key.isToggled(77)) { toggledM = true; } if (!Key.isToggled(77)) { toggledM = false; } if (Key.isToggled(81)) { toggledQ = true; } if (!Key.isToggled(81)) { toggledQ = false; } if (_root.music == "start") { _root.soundsControls.gotoAndStop(2); stopAllSounds(); _root.soundsControls.gotoAndStop(1); } else if (_root.music == "stop") { _root.soundsControls.gotoAndStop(1); stopAllSounds(); _root.soundsControls.gotoAndStop(2); } var direction:String; var velocity; a = 0.2; speed = 0; maxSpeed = 50; reSpeed = 15; direction = "right"; _root.heath = ("Strength : " + _root.hp) + "%"; } onClipEvent (enterFrame) { if (this._name != "carModel") { velocity = Math.round(speed * 5); if (velocity < 0) { velocity = velocity * -1; } this.swapDepths(this._y); _root.veloText = ("Speed : " + _root.car.velocity) + " Mph"; if (Key.isDown(rightKey)) { if (Key.isDown(upKey)) { direction = "upRight"; ((speed < maxSpeed) ? ((speed = speed + a)) : ((speed = maxSpeed))); this._y = this._y - (speed / 3); gotoAndPlay(_currentframe +3); soundControl(); } else if (Key.isDown(downKey)) { direction = "downRight"; ((speed < maxSpeed) ? ((speed = speed + a)) : ((speed = maxSpeed))); this._y = this._y + (speed / 3); gotoAndPlay(_currentframe +3); soundControl(); } else { direction = "right"; if (speed < 0) { speed = speed + (7 * a); } else { ((speed < maxSpeed) ? ((speed = speed + a)) : ((speed = maxSpeed))); } gotoAndPlay(_currentframe +3); soundControl(); } } else if (Key.isDown(leftKey)) { direction = "left"; if (0 < speed) { speed = speed - (7 * a); brSound.start(); } else { (((-reSpeed) < speed) ? ((speed = speed - a)) : ((speed = -reSpeed))); } gotoAndPlay(_currentframe +3); soundControl(); } else { if (1 < speed) { speed--; } else if (speed < -1) { speed++; } else { speed = 0; } gotoAndStop(_currentframe +3); soundControl(); } if (this._y >= 360) { this._y = 360; } else if (200 >= this._y) { this._y = 200; } soundControl(); if (speed != 0) { _root.car.egSound.start(3, 0); } else { _root.car.egSound.stop(); } if ((Key.isToggled(81) && (toggledQ == false)) || ((!Key.isToggled(81)) && (toggledQ == true))) { if (_root._quality == "HIGH") { _root._quality = "LOW"; } else if (_root._quality == "MEDIUM") { _root._quality = "HIGH"; } else if (_root._quality == "LOW") { _root._quality = "MEDIUM"; } if (toggledQ == false) { toggledQ = true; } else if (toggledQ == true) { toggledQ = false; } } if (500 < counter) { counter = 0; } else { counter++; } if (((_root.totalCar < 5) && (speed >= 25)) && ((counter % (20 - (speed / 5))) < 1)) { _root.carAppear(600, 190); _root.totalCar++; } else if (((_root.totalCar < 5) && (24 >= speed)) && ((counter % (20 - (speed / 5))) < 1)) { _root.carAppear(-180, 190); _root.totalCar++; } if (((_root.distance == 50) || (0 >= _root.hp)) || (0 >= _root.timeLeft)) { ((0 < speed) ? ((speed = speed - 2)) : ((speed = 0))); if (speed == 0) { stopAllSounds(); if (_root.distance == 50) { _root.gotoAndStop(5); } else if (0 >= _root.timeLeft) { _root.gotoAndStop(6); } else { _root.gotoAndStop(7); } _root.gameEnd = true; this.removeMovieClip(); } } } }
Instance of Symbol 70 MovieClip "car1" in Frame 4
onClipEvent (load) { function carCrash() { ydist = this._y - _root.car._y; xdist = this._x - _root.car._x; if (ydist < 0) { ydist = ydist * -1; } if (xdist < 0) { xdist = xdist * -1; } yCrashChk = ydist - 20; xCrashChk = xdist - 128; if (((20 >= ydist) && (128 >= xdist)) && (xCrashChk >= yCrashChk)) { if ((_root.car._x < this._x) && (this.speed < _root.car.speed)) { _root.hp = _root.hp - Math.round(_root.car.speed - this.speed); this._x = this._x + ((_root.car.speed - this.speed) * 2); _root.car.speed = _root.car.speed - ((_root.car.speed - this.speed) + 2); } else if ((this._x < _root.car._x) && (_root.car.speed < this.speed)) { _root.hp = _root.hp - Math.round((this.speed - _root.car.speed) / 3); _root.car.speed = _root.car.speed + (this.speed - _root.car.speed); this._x = this._x - (this.speed - _root.car.speed); this.speed = 0; } } else if (((20 >= ydist) && (128 >= xdist)) && (xCrashChk < yCrashChk)) { if (_root.car._y < this._y) { this._y = this._y + (_root.car.speed / 5); this.speed = this.speed - (_root.car.speed / 10); _root.car._y = _root.car._y - (this.speed / 5); _root.car.speed = _root.car.speed - (_root.car.speed / 10); _root.hp--; } else if (this._y < _root.car._y) { this._y = this._y - (_root.car.speed / 5); this.speed = this.speed - (_root.car.speed / 10); _root.car._y = _root.car._y + (this.speed / 5); _root.car.speed = _root.car.speed - (_root.car.speed / 10); _root.hp--; } } } maxSpeed = Math.random(10) + 30; } onClipEvent (enterFrame) { if ((((this._name != "car") && (this._name != "car1")) && (this._name != "car2")) && (this._name != "car3")) { speed = maxSpeed; if ((((_root.distance == 50) || (0 >= _root.hp)) || (0 >= _root.timeLeft)) && (_root.gameEnd == true)) { this.removeMovieClip(); } if ((this._x >= 750) || (-200 >= this._x)) { _root.totalCar--; this.removeMovieClip(); } else if ((600 >= this._x) && (this._x >= -50)) { this._visible = true; } else { this._visible = false; } this.swapDepths(this._y); if (((_root.distance < 50) && (0 < _root.hp)) && (0 < _root.timeLeft)) { carCrash(); } if (speed < maxSpeed) { speed++; } else { speed = maxSpeed; } this._x = this._x + (speed - _root.car.speed); _root.heath = ("Strength : " + _root.hp) + "%"; } if (this._y >= 370) { this._y = 370; } else if (190 >= this._y) { this._y = 190; } }
Instance of Symbol 73 MovieClip "car2" in Frame 4
onClipEvent (load) { function carCrash() { ydist = this._y - _root.car._y; xdist = this._x - _root.car._x; if (ydist < 0) { ydist = ydist * -1; } if (xdist < 0) { xdist = xdist * -1; } yCrashChk = ydist - 20; xCrashChk = xdist - 128; if (((20 >= ydist) && (128 >= xdist)) && (xCrashChk >= yCrashChk)) { if ((_root.car._x < this._x) && (this.speed < _root.car.speed)) { _root.hp = _root.hp - Math.round(_root.car.speed - this.speed); this._x = this._x + ((_root.car.speed - this.speed) * 2); _root.car.speed = _root.car.speed - ((_root.car.speed - this.speed) + 2); } else if ((this._x < _root.car._x) && (_root.car.speed < this.speed)) { _root.hp = _root.hp - Math.round((this.speed - _root.car.speed) / 3); _root.car.speed = _root.car.speed + (this.speed - _root.car.speed); this._x = this._x - (this.speed - _root.car.speed); this.speed = 0; } } else if (((20 >= ydist) && (128 >= xdist)) && (xCrashChk < yCrashChk)) { if (_root.car._y < this._y) { this._y = this._y + (_root.car.speed / 5); this.speed = this.speed - (_root.car.speed / 10); _root.car._y = _root.car._y - (this.speed / 5); _root.car.speed = _root.car.speed - (_root.car.speed / 10); _root.hp--; } else if (this._y < _root.car._y) { this._y = this._y - (_root.car.speed / 5); this.speed = this.speed - (_root.car.speed / 10); _root.car._y = _root.car._y + (this.speed / 5); _root.car.speed = _root.car.speed - (_root.car.speed / 10); _root.hp--; } } } maxSpeed = Math.random(10) + 30; } onClipEvent (enterFrame) { if ((((this._name != "car") && (this._name != "car1")) && (this._name != "car2")) && (this._name != "car3")) { speed = maxSpeed; if ((((_root.distance == 50) || (0 >= _root.hp)) || (0 >= _root.timeLeft)) && (_root.gameEnd == true)) { this.removeMovieClip(); } if ((this._x >= 750) || (-200 >= this._x)) { _root.totalCar--; this.removeMovieClip(); } else if ((600 >= this._x) && (this._x >= -50)) { this._visible = true; } else { this._visible = false; } this.swapDepths(this._y); if (((_root.distance < 50) && (0 < _root.hp)) && (0 < _root.timeLeft)) { carCrash(); } if (speed < maxSpeed) { speed++; } else { speed = maxSpeed; } this._x = this._x + (speed - _root.car.speed); _root.heath = ("Strength : " + _root.hp) + "%"; } if (this._y >= 370) { this._y = 370; } else if (190 >= this._y) { this._y = 190; } }
Instance of Symbol 76 MovieClip "car3" in Frame 4
onClipEvent (load) { function carCrash() { ydist = this._y - _root.car._y; xdist = this._x - _root.car._x; if (ydist < 0) { ydist = ydist * -1; } if (xdist < 0) { xdist = xdist * -1; } yCrashChk = ydist - 20; xCrashChk = xdist - 128; if (((20 >= ydist) && (128 >= xdist)) && (xCrashChk >= yCrashChk)) { if ((_root.car._x < this._x) && (this.speed < _root.car.speed)) { _root.hp = _root.hp - Math.round(_root.car.speed - this.speed); this._x = this._x + ((_root.car.speed - this.speed) * 2); _root.car.speed = _root.car.speed - ((_root.car.speed - this.speed) + 2); } else if ((this._x < _root.car._x) && (_root.car.speed < this.speed)) { _root.hp = _root.hp - Math.round((this.speed - _root.car.speed) / 3); _root.car.speed = _root.car.speed + (this.speed - _root.car.speed); this._x = this._x - (this.speed - _root.car.speed); this.speed = 0; } } else if (((20 >= ydist) && (128 >= xdist)) && (xCrashChk < yCrashChk)) { if (_root.car._y < this._y) { this._y = this._y + (_root.car.speed / 5); this.speed = this.speed - (_root.car.speed / 10); _root.car._y = _root.car._y - (this.speed / 5); _root.car.speed = _root.car.speed - (_root.car.speed / 10); _root.hp--; } else if (this._y < _root.car._y) { this._y = this._y - (_root.car.speed / 5); this.speed = this.speed - (_root.car.speed / 10); _root.car._y = _root.car._y + (this.speed / 5); _root.car.speed = _root.car.speed - (_root.car.speed / 10); _root.hp--; } } } maxSpeed = Math.random(10) + 30; } onClipEvent (enterFrame) { if ((((this._name != "car") && (this._name != "car1")) && (this._name != "car2")) && (this._name != "car3")) { speed = maxSpeed; if ((((_root.distance == 50) || (0 >= _root.hp)) || (0 >= _root.timeLeft)) && (_root.gameEnd == true)) { this.removeMovieClip(); } if ((this._x >= 750) || (-200 >= this._x)) { _root.totalCar--; this.removeMovieClip(); } else if ((600 >= this._x) && (this._x >= -50)) { this._visible = true; } else { this._visible = false; } this.swapDepths(this._y); if (((_root.distance < 50) && (0 < _root.hp)) && (0 < _root.timeLeft)) { carCrash(); } if (speed < maxSpeed) { speed++; } else { speed = maxSpeed; } this._x = this._x + (speed - _root.car.speed); _root.heath = ("Strength : " + _root.hp) + "%"; } if (this._y >= 370) { this._y = 370; } else if (190 >= this._y) { this._y = 190; } }
Frame 5
quality._visible = false; soundsControls._visible = false; _root.score = Math.round((((_root.timeLeft / 20) + 1) * ((_root.timeLeft / 20) + 1)) * (_root.hp + 2)); Mouse.show();
Instance of Symbol 23 MovieClip "quality" in Frame 5
onClipEvent (load) { if (Key.isToggled(81)) { toggledQ = true; } if (!Key.isToggled(81)) { toggledQ = false; } } onClipEvent (enterFrame) { if ((Key.isToggled(81) && (toggledQ == false)) || ((!Key.isToggled(81)) && (toggledQ == true))) { if (_root._quality == "HIGH") { _root._quality = "LOW"; } else if (_root._quality == "MEDIUM") { _root._quality = "HIGH"; } else if (_root._quality == "LOW") { _root._quality = "MEDIUM"; } if (toggledQ == false) { toggledQ = true; } else if (toggledQ == true) { toggledQ = false; } } }
Instance of Symbol 94 MovieClip "soundsControls" in Frame 5
onClipEvent (load) { function soundControl() { if ((Key.isToggled(77) && (toggledM == false)) || ((!Key.isToggled(77)) && (toggledM == true))) { if (_root.music == "start") { stopAllSounds(); _root.soundsControls.gotoAndStop(2); _root.music = "stop"; } else if (_root.music == "stop") { stopAllSounds(); _root.soundsControls.gotoAndStop(1); _root.music = "start"; } if (toggledM == false) { toggledM = true; } else if (toggledM == true) { toggledM = false; } } } if (Key.isToggled(77)) { toggledM = true; } if (!Key.isToggled(77)) { toggledM = false; } if (_root.music == "start") { _root.soundsControls.gotoAndStop(4); stopAllSounds(); _root.soundsControls.gotoAndStop(3); } else if (_root.music == "stop") { _root.soundsControls.gotoAndStop(3); stopAllSounds(); _root.soundsControls.gotoAndStop(4); } } onClipEvent (enterFrame) { soundControl(); }
Frame 6
stop(); quality._visible = false; soundsControls._visible = false; Mouse.show();
Instance of Symbol 94 MovieClip "soundsControls" in Frame 6
onClipEvent (load) { function soundControl() { if ((Key.isToggled(77) && (toggledM == false)) || ((!Key.isToggled(77)) && (toggledM == true))) { if (_root.music == "start") { stopAllSounds(); _root.soundsControls.gotoAndStop(2); _root.music = "stop"; } else if (_root.music == "stop") { stopAllSounds(); _root.soundsControls.gotoAndStop(1); _root.music = "start"; } if (toggledM == false) { toggledM = true; } else if (toggledM == true) { toggledM = false; } } } if (Key.isToggled(77)) { toggledM = true; } if (!Key.isToggled(77)) { toggledM = false; } if (_root.music == "start") { _root.soundsControls.gotoAndStop(2); stopAllSounds(); _root.soundsControls.gotoAndStop(1); } else if (_root.music == "stop") { _root.soundsControls.gotoAndStop(1); stopAllSounds(); _root.soundsControls.gotoAndStop(2); } } onClipEvent (enterFrame) { soundControl(); }
Frame 7
stop(); quality._visible = false; soundsControls._visible = false; Mouse.show();
Symbol 12 Button
on (release) { _root.play(); }
Symbol 13 MovieClip Frame 1
_root.stop(); PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100; if (PercentLoaded != 100) { setProperty(bar, _xscale , PercentLoaded); } else { gotoAndStop (3); }
Symbol 13 MovieClip Frame 2
gotoAndPlay (1);
Symbol 32 Button
on (release) { stopAllSounds(); gotoAndStop (4); }
Symbol 34 Button
on (release) { gotoAndStop (3); }
Symbol 43 MovieClip Frame 1
Symbol 46 MovieClip Frame 1
stop();
Symbol 46 MovieClip Frame 2
stop();
Symbol 67 MovieClip Frame 1
brSound = new Sound(this); brSound.attachSound("break"); egSound = new Sound(this); egSound.attachSound("engine"); stop();
Symbol 84 MovieClip Frame 1
stop();
Symbol 84 MovieClip Frame 2
stop();
Symbol 86 Button
on (release) { _root.hp = 200; _root.timeLeft = 2400; _root.distance = 0; _root.totalCar = 0; gotoAndStop (2); }
Symbol 94 MovieClip Frame 1
stop();
Symbol 94 MovieClip Frame 2
stop();
Symbol 94 MovieClip Frame 3
stop();
Symbol 94 MovieClip Frame 4
stop();

Library Items

Symbol 1 Sound [engine]
Symbol 2 Sound [break]
Symbol 3 GraphicUsed by:4  Timeline
Symbol 4 MovieClipUses:3Used by:13
Symbol 5 GraphicUsed by:13
Symbol 6 BitmapUsed by:7
Symbol 7 GraphicUses:6Used by:13
Symbol 8 GraphicUsed by:12
Symbol 9 GraphicUsed by:12
Symbol 10 GraphicUsed by:12
Symbol 11 GraphicUsed by:12
Symbol 12 ButtonUses:8 9 10 11Used by:13
Symbol 13 MovieClipUses:4 5 7 12Used by:Timeline
Symbol 14 GraphicUsed by:Timeline
Symbol 15 GraphicUsed by:19
Symbol 16 FontUsed by:17 81
Symbol 17 TextUses:16Used by:18
Symbol 18 ButtonUses:17Used by:19
Symbol 19 ButtonUses:15 18Used by:Timeline
Symbol 20 GraphicUsed by:23 25 46 84 94
Symbol 21 FontUsed by:22 24 48 49 50 51 52 53 77 78 79 80
Symbol 22 TextUses:21Used by:23
Symbol 23 MovieClipUses:20 22Used by:Timeline
Symbol 24 TextUses:21Used by:25 46 84 94
Symbol 25 MovieClipUses:20 24Used by:Timeline
Symbol 26 GraphicUsed by:32 34 86
Symbol 27 FontUsed by:28 33 85
Symbol 28 TextUses:27Used by:32
Symbol 29 GraphicUsed by:32 34 86
Symbol 30 SoundUsed by:32 34 86
Symbol 31 SoundUsed by:32 34 86
Symbol 32 ButtonUses:26 28 29 30 31Used by:Timeline
Symbol 33 TextUses:27Used by:34
Symbol 34 ButtonUses:26 33 29 30 31Used by:Timeline
Symbol 35 FontUsed by:36 37 38 39 44
Symbol 36 TextUses:35Used by:43
Symbol 37 TextUses:35Used by:43
Symbol 38 TextUses:35Used by:43
Symbol 39 TextUses:35Used by:43
Symbol 40 GraphicUsed by:41
Symbol 41 MovieClipUses:40Used by:42
Symbol 42 MovieClipUses:41Used by:43
Symbol 43 MovieClipUses:36 37 38 39 42Used by:Timeline
Symbol 44 TextUses:35Used by:Timeline
Symbol 45 SoundUsed by:46
Symbol 46 MovieClipUses:20 24 45Used by:Timeline
Symbol 47 GraphicUsed by:Timeline
Symbol 48 TextUses:21Used by:Timeline
Symbol 49 TextUses:21Used by:Timeline
Symbol 50 TextUses:21Used by:Timeline
Symbol 51 TextUses:21Used by:Timeline
Symbol 52 TextUses:21Used by:Timeline
Symbol 53 TextUses:21Used by:Timeline
Symbol 54 FontUsed by:55 87 91 95 96 97
Symbol 55 TextUses:54Used by:Timeline
Symbol 56 GraphicUsed by:57
Symbol 57 MovieClipUses:56Used by:58
Symbol 58 MovieClipUses:57Used by:Timeline
Symbol 59 GraphicUsed by:60
Symbol 60 MovieClipUses:59Used by:Timeline
Symbol 61 GraphicUsed by:62
Symbol 62 MovieClipUses:61Used by:Timeline
Symbol 63 GraphicUsed by:64
Symbol 64 MovieClipUses:63Used by:67
Symbol 65 GraphicUsed by:66
Symbol 66 MovieClipUses:65Used by:67 70 73 76
Symbol 67 MovieClipUses:64 66Used by:Timeline
Symbol 68 GraphicUsed by:69
Symbol 69 MovieClipUses:68Used by:70
Symbol 70 MovieClipUses:69 66Used by:Timeline
Symbol 71 GraphicUsed by:72
Symbol 72 MovieClipUses:71Used by:73
Symbol 73 MovieClipUses:72 66Used by:Timeline
Symbol 74 GraphicUsed by:75
Symbol 75 MovieClipUses:74Used by:76
Symbol 76 MovieClipUses:75 66Used by:Timeline
Symbol 77 EditableTextUses:21Used by:Timeline
Symbol 78 EditableTextUses:21Used by:Timeline
Symbol 79 EditableTextUses:21Used by:Timeline
Symbol 80 EditableTextUses:21Used by:Timeline
Symbol 81 TextUses:16Used by:Timeline
Symbol 82 SoundUsed by:84 94
Symbol 83 SoundUsed by:84
Symbol 84 MovieClipUses:20 24 82 83Used by:Timeline
Symbol 85 TextUses:27Used by:86
Symbol 86 ButtonUses:26 85 29 30 31Used by:Timeline
Symbol 87 TextUses:54Used by:Timeline
Symbol 88 FontUsed by:89 90 92
Symbol 89 TextUses:88Used by:Timeline
Symbol 90 EditableTextUses:88Used by:Timeline
Symbol 91 TextUses:54Used by:Timeline
Symbol 92 TextUses:88Used by:Timeline
Symbol 93 SoundUsed by:94
Symbol 94 MovieClipUses:20 24 82 93Used by:Timeline
Symbol 95 TextUses:54Used by:Timeline
Symbol 96 TextUses:54Used by:Timeline
Symbol 97 TextUses:54Used by:Timeline

Instance Names

"quality"Frame 1Symbol 23 MovieClip
"soundsControls"Frame 1Symbol 25 MovieClip
"soundsControls"Frame 2Symbol 46 MovieClip
"allBG"Frame 4Symbol 58 MovieClip
"end"Frame 4Symbol 60 MovieClip
"start"Frame 4Symbol 62 MovieClip
"carModel"Frame 4Symbol 67 MovieClip
"car1"Frame 4Symbol 70 MovieClip
"car2"Frame 4Symbol 73 MovieClip
"car3"Frame 4Symbol 76 MovieClip
"soundsControls"Frame 4Symbol 84 MovieClip
"quality"Frame 5Symbol 23 MovieClip
"soundsControls"Frame 5Symbol 94 MovieClip
"soundsControls"Frame 6Symbol 94 MovieClip
"bar"Symbol 13 MovieClip Frame 1Symbol 4 MovieClip
"BGround"Symbol 58 MovieClip Frame 1Symbol 57 MovieClip

Special Tags

Protect (24)Timeline Frame 131 bytes "..$1$Aq$kZD57Soh3o9znhBe8iHf20."
ExportAssets (56)Timeline Frame 1Symbol 1 as "engine"
ExportAssets (56)Timeline Frame 1Symbol 2 as "break"

Labels

"loaded"Symbol 13 MovieClip Frame 3

Dynamic Text Variables

distTextSymbol 77 EditableText""
veloTextSymbol 78 EditableText""
tlTextSymbol 79 EditableText""
heathSymbol 80 EditableText""
scoreSymbol 90 EditableText""




http://swfchan.com/13/61237/info.shtml
Created: 15/4 -2019 16:41:54 Last modified: 15/4 -2019 16:41:54 Server time: 14/05 -2024 19:03:36