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

swfchan turned sixteen years old yesterday! (5may2024)

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

Destruction Derby.swf

This is the info page for
Flash #4718

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


Text
THEM

YOUR CAR

100%

[www.fourinchesofego.com]

[www.fourinchesofego.com]

your goal is quite simply to demolish the other cars
so you won't have to share the world with anyone else.
use front of your car to hit other cars.
avoid being hit from behind; it will damage you.
like all demolition, sometimes the best hit hurts you.
[left arrow = turn left]     [right arrow = turn right]
[up arrow = forward]         [down arrow = reverse]

IF THE WORLD WERE A DEMOLITION DERBY...
YOU WOULD HAVE TO GET OUT OF MY WAY

START

START

START

press start to enter or insert passcode
and press go to skip to specified level

[

GO

GO

OR INSERT PASSCODE

go ahead take a test drive
[just start using the arrow keys]

L

LE

LEV

LEVE

LEVEL

LEVEL O

LEVEL ON

LEVEL ONE

LEVEL ONE:

TO THE FLOWER SHOP

this is a simple trip to the flower shop.

there is only one other car in the parking lot,
but that is one too many.

you must eliminate that car.

the world is a demolition derby.

[hit enter]

YOU

100

%

90

80

70

60

50

40

30

20

10

0

THEM

100

CONGRATULATIONS
but there are still more people out there

level one passcode: florist
[insert this at start to skip this level]

LEVEL T

LEVEL TW

LEVEL TWO

LEVEL TWO:

THE RESTAURANT

now you are ready to have a go at a restaurant.

two other people have the audacity to want a meal,
the selfish bastards.

you must eliminate them both.

level two passcode: restaurant
[insert this at start to skip this level]

B

BO

BON

BONU

BONUS

BONUS R

BONUS RO

BONUS ROU

BONUS ROUN

BONUS ROUND

your reckless driving has pissed everyone off.
things have escalated to fisticuffs.
you had better defend yourself.

use left and right arrow keys to move
use spacebar to punch

PLAY

PLAY

KERPOW

YOU LOSE

[now back to the car]

3

2

1

GO

BIFF

POW

BASH

BOFF

BAM

BLAM

YOU WIN

bonus level passcode: bonus
[insert this at start to skip this level]

LEVEL TH

LEVEL THR

LEVEL THRE

LEVEL THREE

LEVEL THREE:

AT THE GROCERY

you need to make a run to the grocery store.

three people actually want to go to the
grocery while you are there, the SOBs.

you must eliminate them all.

level three passcode: grocery
[insert this at start to skip this level]

LEVEL F

LEVEL FO

LEVEL FOU

LEVEL FOUR

LEVEL FOUR:

OUT TO THE MALL

dear god, you have to go out to the mall.

this is the final showdown; everybody and
his grandmother's dog is there in your way.

[hit enter]

95

85

75

65

55

45

35

25

15

5

PLAY AGAIN

PLAY AGAIN

well... the rat bastards got to you.
you are obviously not bitter enough.
you have two choices:
hide in your apartment and never come out again,
or play again and make the bastards pay.

C

CO

CON

CONG

CONGR

CONGRA

CONGRAT

CONGRATU

CONGRATUL

CONGRATULA

CONGRATULAT

CONGRATULATI

CONGRATULATIO

CONGRATULATION

CONGRATULATIONS

you have driven everybody from the streets.
you no longer have to share with the masses and rabble.
you are finally alone.

enjoy your solitude.

[this game is dedicated to the person who cut me off]

ActionScript [AS1/AS2]

Frame 3
loadedFrames = _root.getBytesLoaded(); totalFrames = _root.getBytesTotal(); if (loadedFrames < totalFrames) { percentageOutput = int((loadedFrames / totalFrames) * 100) + "%"; gotoAndPlay (2); } else if (loadedFrames == totalFrames) { percentageOutput = "100%"; gotoAndPlay (4); }
Frame 5
passcode = "entercode";
Frame 8
stop();
Instance of Symbol 22 MovieClip "mycar" in Frame 8
onClipEvent (enterFrame) { _root.speed = speed; _root.mph = Number(speed) * 2; _root.mph = _root.mph - (_root.mph % 1); if (_root.mph < 1) { _root.mph = 1; } if (Key.isDown(38)) { speed = speed + 10; } if (Key.isDown(40)) { speed = speed - 1; } if (Math.abs(speed) > 20) { speed = speed * 0.7; } if (Key.isDown(37)) { _rotation = (_rotation - 14); } if (Key.isDown(39)) { _rotation = (_rotation + 14); } speed = speed * 0.98; x = Math.sin(_rotation * (Math.PI/180)) * speed; y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1; if (!_root.boundary.hitTest(_x + x, _y + y, true)) { _x = (_x + x); _y = (_y + y); } else { speed = speed * -0.6; } } onClipEvent (enterFrame) { if (this._x > 720) { this._x = -50; } } onClipEvent (enterFrame) { if (this._y > 480) { this._y = -50; } } onClipEvent (enterFrame) { if (this._x < -50) { this._x = 720; } } onClipEvent (enterFrame) { if (this._y < -50) { this._y = 480; } } onClipEvent (load) { _root.mescore.menumbers = "100"; }
Frame 9
stop();
Instance of Symbol 13 MovieClip "other" in Frame 9
onClipEvent (enterFrame) { _root.speed = speed; _root.mph = Number(speed) * 2; _root.mph = _root.mph - (_root.mph % 1); if (_root.mph < 1) { _root.mph = 1; } if (_root.dir_other.other == "go") { speed = speed + 12; } if (_root.dir_other.other == "slow") { speed = speed - 1; } if (Math.abs(speed) > 20) { speed = speed * 0.7; } if (_root.dir_other.other == "left") { _rotation = (_rotation - 14); } if (_root.dir_other.other == "right") { _rotation = (_rotation + 14); } speed = speed * 0.98; x = Math.sin(_rotation * (Math.PI/180)) * speed; y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1; if (!_root.boundary.hitTest(_x + x, _y + y, true)) { _x = (_x + x); _y = (_y + y); } else { speed = speed * -0.6; } } onClipEvent (enterFrame) { if (this._x > 720) { this._x = -50; } } onClipEvent (enterFrame) { if (this._y > 480) { this._y = -50; } } onClipEvent (enterFrame) { if (this._x < -50) { this._x = 720; } } onClipEvent (enterFrame) { if (this._y < -50) { this._y = 480; } } onClipEvent (enterFrame) { if (this.hitTest(_root.mycar.winhit)) { tellTarget ("_root.mycar") { gotoAndPlay ("back"); tellTarget ("_root.other") { gotoAndPlay ("spin"); }; }; } } onClipEvent (enterFrame) { if (this.hitTest(_root.mycar.losehit)) { tellTarget ("_root.mycar") { gotoAndPlay ("spin"); tellTarget ("_root.other") { gotoAndPlay ("side"); }; }; } }
Frame 10
stopAllSounds();
Frame 84
stopAllSounds();
Frame 137
stop();
Frame 138
stop(); test = false;
Instance of Symbol 22 MovieClip "mycar" in Frame 138
onClipEvent (enterFrame) { _root.speed = speed; _root.mph = Number(speed) * 2; _root.mph = _root.mph - (_root.mph % 1); if (_root.mph < 1) { _root.mph = 1; } if (Key.isDown(38)) { speed = speed + 10; } if (Key.isDown(40)) { speed = speed - 1; } if (Math.abs(speed) > 20) { speed = speed * 0.7; } if (Key.isDown(37)) { _rotation = (_rotation - 14); } if (Key.isDown(39)) { _rotation = (_rotation + 14); } speed = speed * 0.98; x = Math.sin(_rotation * (Math.PI/180)) * speed; y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1; if (!_root.boundary.hitTest(_x + x, _y + y, true)) { _x = (_x + x); _y = (_y + y); } else { speed = speed * -0.6; } } onClipEvent (enterFrame) { if (this._x > 720) { this._x = -50; } } onClipEvent (enterFrame) { if (this._y > 480) { this._y = -50; } } onClipEvent (enterFrame) { if (this._x < -50) { this._x = 720; } } onClipEvent (enterFrame) { if (this._y < -50) { this._y = 480; } } onClipEvent (load) { _root.mescore.menumbers = "100"; }
Instance of Symbol 13 MovieClip "other" in Frame 138
onClipEvent (enterFrame) { _root.speed = speed; _root.mph = Number(speed) * 2; _root.mph = _root.mph - (_root.mph % 1); if (_root.mph < 1) { _root.mph = 1; } if (_root.dir_other.other == "go") { speed = speed + 12; } if (_root.dir_other.other == "slow") { speed = speed - 1; } if (Math.abs(speed) > 20) { speed = speed * 0.7; } if (_root.dir_other.other == "left") { _rotation = (_rotation - 14); } if (_root.dir_other.other == "right") { _rotation = (_rotation + 14); } speed = speed * 0.98; x = Math.sin(_rotation * (Math.PI/180)) * speed; y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1; if (!_root.boundary.hitTest(_x + x, _y + y, true)) { _x = (_x + x); _y = (_y + y); } else { speed = speed * -0.6; } } onClipEvent (enterFrame) { if (this._x > 720) { this._x = -50; } } onClipEvent (enterFrame) { if (this._y > 480) { this._y = -50; } } onClipEvent (enterFrame) { if (this._x < -50) { this._x = 720; } } onClipEvent (enterFrame) { if (this._y < -50) { this._y = 480; } } onClipEvent (enterFrame) { if (_root.test == false) { if (this.hitTest(_root.mycar.winhit)) { tellTarget ("_root.mycar") { gotoAndPlay ("back"); tellTarget ("_root.other") { gotoAndPlay ("spin"); tellTarget ("_root.them_cont") { gotoAndPlay (2); }; }; }; } } } onClipEvent (enterFrame) { if (_root.test == true) { if (this.hitTest(_root.mycar.winhit)) { tellTarget ("_root.mycar") { gotoAndPlay ("back"); tellTarget ("_root.them_cont") { gotoAndPlay (2); tellTarget ("_root.ricochet") { gotoAndPlay (2); }; }; }; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.mycar.losehit)) { tellTarget ("_root.mycar") { gotoAndPlay ("spin"); tellTarget ("_root.other") { gotoAndPlay ("side"); }; }; } } onClipEvent (load) { _root.themscore.themnumbers = "100"; }
Instance of Symbol 95 MovieClip "themscore" in Frame 138
onClipEvent (enterFrame) { if (_root.test == false) { if (themnumbers == 10) { _root.test = true; } } } onClipEvent (enterFrame) { if (_root.test == true) { if (themnumbers == 0) { tellTarget ("_root.other") { gotoAndPlay ("explode"); tellTarget ("_root.endtrigger") { gotoAndPlay (2); }; }; } } }
Frame 139
stop();
Frame 140
stopAllSounds();
Frame 214
stopAllSounds();
Frame 267
stop();
Frame 268
stop(); test = false;
Instance of Symbol 22 MovieClip "mycar" in Frame 268
onClipEvent (enterFrame) { _root.speed = speed; _root.mph = Number(speed) * 2; _root.mph = _root.mph - (_root.mph % 1); if (_root.mph < 1) { _root.mph = 1; } if (Key.isDown(38)) { speed = speed + 10; } if (Key.isDown(40)) { speed = speed - 1; } if (Math.abs(speed) > 20) { speed = speed * 0.7; } if (Key.isDown(37)) { _rotation = (_rotation - 14); } if (Key.isDown(39)) { _rotation = (_rotation + 14); } speed = speed * 0.98; x = Math.sin(_rotation * (Math.PI/180)) * speed; y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1; if (!_root.boundary.hitTest(_x + x, _y + y, true)) { _x = (_x + x); _y = (_y + y); } else { speed = speed * -0.6; } } onClipEvent (enterFrame) { if (this._x > 720) { this._x = -50; } } onClipEvent (enterFrame) { if (this._y > 480) { this._y = -50; } } onClipEvent (enterFrame) { if (this._x < -50) { this._x = 720; } } onClipEvent (enterFrame) { if (this._y < -50) { this._y = 480; } } onClipEvent (load) { _root.mescore.menumbers = "100"; }
Instance of Symbol 13 MovieClip "other" in Frame 268
onClipEvent (enterFrame) { _root.speed = speed; _root.mph = Number(speed) * 2; _root.mph = _root.mph - (_root.mph % 1); if (_root.mph < 1) { _root.mph = 1; } if (_root.dir_other.other == "go") { speed = speed + 17; } if (_root.dir_other.other == "slow") { speed = speed - 1; } if (Math.abs(speed) > 20) { speed = speed * 0.7; } if (_root.dir_other.other == "left") { _rotation = (_rotation - 14); } if (_root.dir_other.other == "right") { _rotation = (_rotation + 14); } speed = speed * 0.98; x = Math.sin(_rotation * (Math.PI/180)) * speed; y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1; if (!_root.boundary.hitTest(_x + x, _y + y, true)) { _x = (_x + x); _y = (_y + y); } else { speed = speed * -0.6; } } onClipEvent (enterFrame) { if (this._x > 720) { this._x = -50; } } onClipEvent (enterFrame) { if (this._y > 480) { this._y = -50; } } onClipEvent (enterFrame) { if (this._x < -50) { this._x = 720; } } onClipEvent (enterFrame) { if (this._y < -50) { this._y = 480; } } onClipEvent (enterFrame) { if (_root.test == false) { if (this.hitTest(_root.mycar.winhit)) { tellTarget ("_root.mycar") { gotoAndPlay ("back"); tellTarget ("_root.other") { gotoAndPlay ("spin"); tellTarget ("_root.them_cont") { gotoAndPlay (2); }; }; }; } } } onClipEvent (enterFrame) { if (_root.test == true) { if (this.hitTest(_root.mycar.winhit)) { tellTarget ("_root.mycar") { gotoAndPlay ("back"); tellTarget ("_root.them_cont") { gotoAndPlay (2); tellTarget ("_root.ricochet") { gotoAndPlay (2); }; }; }; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.mycar.losehit)) { tellTarget ("_root.mycar") { gotoAndPlay ("spin"); tellTarget ("_root.other") { gotoAndPlay ("side"); }; }; } } onClipEvent (load) { _root.themscore.themnumbers = "100"; }
Instance of Symbol 122 MovieClip "other2" in Frame 268
onClipEvent (enterFrame) { _root.speed = speed; _root.mph = Number(speed) * 2; _root.mph = _root.mph - (_root.mph % 1); if (_root.mph < 1) { _root.mph = 1; } if (_root.dir_other2.other2 == "go") { speed = speed + 13; } if (_root.dir_other2.other2 == "slow") { speed = speed - 1; } if (Math.abs(speed) > 20) { speed = speed * 0.7; } if (_root.dir_other2.other2 == "left") { _rotation = (_rotation - 14); } if (_root.dir_other2.other2 == "right") { _rotation = (_rotation + 14); } speed = speed * 0.98; x = Math.sin(_rotation * (Math.PI/180)) * speed; y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1; if (!_root.boundary.hitTest(_x + x, _y + y, true)) { _x = (_x + x); _y = (_y + y); } else { speed = speed * -0.6; } } onClipEvent (enterFrame) { if (this._x > 720) { this._x = -50; } } onClipEvent (enterFrame) { if (this._y > 480) { this._y = -50; } } onClipEvent (enterFrame) { if (this._x < -50) { this._x = 720; } } onClipEvent (enterFrame) { if (this._y < -50) { this._y = 480; } } onClipEvent (enterFrame) { if (_root.test == false) { if (this.hitTest(_root.mycar.winhit)) { tellTarget ("_root.mycar") { gotoAndPlay ("back"); tellTarget ("_root.other2") { gotoAndPlay ("spin2"); tellTarget ("_root.them_cont") { gotoAndPlay (2); }; }; }; } } } onClipEvent (enterFrame) { if (_root.test == true) { if (this.hitTest(_root.mycar.winhit)) { tellTarget ("_root.mycar") { gotoAndPlay ("back"); tellTarget ("_root.them_cont") { gotoAndPlay (2); tellTarget ("_root.ricochet") { gotoAndPlay (2); }; }; }; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.mycar.losehit)) { tellTarget ("_root.mycar") { gotoAndPlay ("spin"); tellTarget ("_root.other2") { gotoAndPlay ("side"); }; }; } }
Instance of Symbol 95 MovieClip "themscore" in Frame 268
onClipEvent (enterFrame) { if (_root.test == false) { if (themnumbers == 5) { _root.test = true; } } } onClipEvent (enterFrame) { if (_root.test == true) { if (themnumbers == 0) { tellTarget ("_root.other2") { gotoAndPlay ("explode"); tellTarget ("_root.other") { gotoAndPlay ("explode"); tellTarget ("_root.endtrigger") { gotoAndPlay (2); }; }; }; } } }
Frame 269
stop();
Frame 270
stopAllSounds();
Frame 344
stopAllSounds();
Frame 391
stop();
Frame 392
stopAllSounds(); test = false;
Instance of Symbol 168 MovieClip "me" in Frame 392
onClipEvent (enterFrame) { if (_root.test == false) { if (Key.isDown(39)) { _x = (_x + 10); _root.me.gotoAndStop(1); } if (Key.isDown(37)) { _x = (_x - 10); _root.me.gotoAndStop(2); } if (Key.isDown(32)) { _root.me.mein.gotoAndPlay(2); } } }
Instance of Symbol 180 MovieClip "man1" in Frame 429
onClipEvent (enterFrame) { if (this.hitTest(_root.me.mein.mehit)) { _root.test = true; tellTarget ("_root.me.mein") { gotoAndPlay (10); tellTarget ("_root.me.mein.kerpow1") { gotoAndPlay (2); }; }; } }
Instance of Symbol 184 MovieClip "man2" in Frame 452
onClipEvent (enterFrame) { if (this.hitTest(_root.me.mein.mehit)) { _root.test = true; tellTarget ("_root.me.mein") { gotoAndPlay (10); tellTarget ("_root.me.mein.kerpow1") { gotoAndPlay (2); }; }; } }
Instance of Symbol 189 MovieClip "man3b" in Frame 481
onClipEvent (enterFrame) { if (this.hitTest(_root.me.mein.mehit)) { _root.test = true; tellTarget ("_root.me.mein") { gotoAndPlay (10); tellTarget ("_root.me.mein.kerpow2") { gotoAndPlay (2); }; }; } }
Instance of Symbol 192 MovieClip "man1b" in Frame 506
onClipEvent (enterFrame) { if (this.hitTest(_root.me.mein.mehit)) { _root.test = true; tellTarget ("_root.me.mein") { gotoAndPlay (10); tellTarget ("_root.me.mein.kerpow2") { gotoAndPlay (2); }; }; } }
Instance of Symbol 196 MovieClip "man3" in Frame 531
onClipEvent (enterFrame) { if (this.hitTest(_root.me.mein.mehit)) { _root.test = true; tellTarget ("_root.me.mein") { gotoAndPlay (10); tellTarget ("_root.me.mein.kerpow1") { gotoAndPlay (2); }; }; } }
Instance of Symbol 199 MovieClip "man2b" in Frame 556
onClipEvent (enterFrame) { if (this.hitTest(_root.me.mein.mehit)) { _root.test = true; tellTarget ("_root.me.mein") { gotoAndPlay (10); tellTarget ("_root.me.mein.kerpow2") { gotoAndPlay (2); }; }; } }
Instance of Symbol 180 MovieClip "man1" in Frame 582
onClipEvent (enterFrame) { if (this.hitTest(_root.me.mein.mehit)) { _root.test = true; tellTarget ("_root.me.mein") { gotoAndPlay (10); tellTarget ("_root.me.mein.kerpow1") { gotoAndPlay (2); }; }; } }
Instance of Symbol 184 MovieClip "man2" in Frame 601
onClipEvent (enterFrame) { if (this.hitTest(_root.me.mein.mehit)) { _root.test = true; tellTarget ("_root.me.mein") { gotoAndPlay (10); tellTarget ("_root.me.mein.kerpow1") { gotoAndPlay (2); }; }; } }
Instance of Symbol 189 MovieClip "man3b" in Frame 625
onClipEvent (enterFrame) { if (this.hitTest(_root.me.mein.mehit)) { _root.test = true; tellTarget ("_root.me.mein") { gotoAndPlay (10); tellTarget ("_root.me.mein.kerpow2") { gotoAndPlay (2); }; }; } }
Instance of Symbol 192 MovieClip "man1b" in Frame 645
onClipEvent (enterFrame) { if (this.hitTest(_root.me.mein.mehit)) { _root.test = true; tellTarget ("_root.me.mein") { gotoAndPlay (10); tellTarget ("_root.me.mein.kerpow2") { gotoAndPlay (2); }; }; } }
Instance of Symbol 196 MovieClip "man3" in Frame 665
onClipEvent (enterFrame) { if (this.hitTest(_root.me.mein.mehit)) { _root.test = true; tellTarget ("_root.me.mein") { gotoAndPlay (10); tellTarget ("_root.me.mein.kerpow1") { gotoAndPlay (2); }; }; } }
Instance of Symbol 199 MovieClip "man2b" in Frame 685
onClipEvent (enterFrame) { if (this.hitTest(_root.me.mein.mehit)) { _root.test = true; tellTarget ("_root.me.mein") { gotoAndPlay (10); tellTarget ("_root.me.mein.kerpow2") { gotoAndPlay (2); }; }; } }
Instance of Symbol 180 MovieClip "man1" in Frame 707
onClipEvent (enterFrame) { if (this.hitTest(_root.me.mein.mehit)) { _root.test = true; tellTarget ("_root.me.mein") { gotoAndPlay (10); tellTarget ("_root.me.mein.kerpow1") { gotoAndPlay (2); }; }; } }
Instance of Symbol 184 MovieClip "man2" in Frame 721
onClipEvent (enterFrame) { if (this.hitTest(_root.me.mein.mehit)) { _root.test = true; tellTarget ("_root.me.mein") { gotoAndPlay (10); tellTarget ("_root.me.mein.kerpow1") { gotoAndPlay (2); }; }; } }
Instance of Symbol 189 MovieClip "man3b" in Frame 740
onClipEvent (enterFrame) { if (this.hitTest(_root.me.mein.mehit)) { _root.test = true; tellTarget ("_root.me.mein") { gotoAndPlay (10); tellTarget ("_root.me.mein.kerpow2") { gotoAndPlay (2); }; }; } }
Instance of Symbol 192 MovieClip "man1b" in Frame 755
onClipEvent (enterFrame) { if (this.hitTest(_root.me.mein.mehit)) { _root.test = true; tellTarget ("_root.me.mein") { gotoAndPlay (10); tellTarget ("_root.me.mein.kerpow2") { gotoAndPlay (2); }; }; } }
Instance of Symbol 196 MovieClip "man3" in Frame 770
onClipEvent (enterFrame) { if (this.hitTest(_root.me.mein.mehit)) { _root.test = true; tellTarget ("_root.me.mein") { gotoAndPlay (10); tellTarget ("_root.me.mein.kerpow1") { gotoAndPlay (2); }; }; } }
Instance of Symbol 199 MovieClip "man2b" in Frame 785
onClipEvent (enterFrame) { if (this.hitTest(_root.me.mein.mehit)) { _root.test = true; tellTarget ("_root.me.mein") { gotoAndPlay (10); tellTarget ("_root.me.mein.kerpow2") { gotoAndPlay (2); }; }; } }
Frame 852
_root.gotoAndPlay("intro3a", "intro3a");
Frame 853
stopAllSounds();
Frame 927
stopAllSounds();
Frame 980
stop();
Frame 981
stop(); test = false;
Instance of Symbol 22 MovieClip "mycar" in Frame 981
onClipEvent (enterFrame) { _root.speed = speed; _root.mph = Number(speed) * 2; _root.mph = _root.mph - (_root.mph % 1); if (_root.mph < 1) { _root.mph = 1; } if (Key.isDown(38)) { speed = speed + 10; } if (Key.isDown(40)) { speed = speed - 1; } if (Math.abs(speed) > 20) { speed = speed * 0.7; } if (Key.isDown(37)) { _rotation = (_rotation - 14); } if (Key.isDown(39)) { _rotation = (_rotation + 14); } speed = speed * 0.98; x = Math.sin(_rotation * (Math.PI/180)) * speed; y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1; if (!_root.boundary.hitTest(_x + x, _y + y, true)) { _x = (_x + x); _y = (_y + y); } else { speed = speed * -0.6; } } onClipEvent (enterFrame) { if (this._x > 720) { this._x = -50; } } onClipEvent (enterFrame) { if (this._y > 480) { this._y = -50; } } onClipEvent (enterFrame) { if (this._x < -50) { this._x = 720; } } onClipEvent (enterFrame) { if (this._y < -50) { this._y = 480; } } onClipEvent (load) { _root.mescore.menumbers = "100"; }
Instance of Symbol 13 MovieClip "other" in Frame 981
onClipEvent (enterFrame) { _root.speed = speed; _root.mph = Number(speed) * 2; _root.mph = _root.mph - (_root.mph % 1); if (_root.mph < 1) { _root.mph = 1; } if (_root.dir_other.other == "go") { speed = speed + 19; } if (_root.dir_other.other == "slow") { speed = speed - 1; } if (Math.abs(speed) > 20) { speed = speed * 0.7; } if (_root.dir_other.other == "left") { _rotation = (_rotation - 14); } if (_root.dir_other.other == "right") { _rotation = (_rotation + 14); } speed = speed * 0.98; x = Math.sin(_rotation * (Math.PI/180)) * speed; y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1; if (!_root.boundary.hitTest(_x + x, _y + y, true)) { _x = (_x + x); _y = (_y + y); } else { speed = speed * -0.6; } } onClipEvent (enterFrame) { if (this._x > 720) { this._x = -50; } } onClipEvent (enterFrame) { if (this._y > 480) { this._y = -50; } } onClipEvent (enterFrame) { if (this._x < -50) { this._x = 720; } } onClipEvent (enterFrame) { if (this._y < -50) { this._y = 480; } } onClipEvent (enterFrame) { if (_root.test == false) { if (this.hitTest(_root.mycar.winhit)) { tellTarget ("_root.mycar") { gotoAndPlay ("back"); tellTarget ("_root.other") { gotoAndPlay ("spin"); tellTarget ("_root.them_cont") { gotoAndPlay (2); }; }; }; } } } onClipEvent (enterFrame) { if (_root.test == true) { if (this.hitTest(_root.mycar.winhit)) { tellTarget ("_root.mycar") { gotoAndPlay ("back"); tellTarget ("_root.them_cont") { gotoAndPlay (2); tellTarget ("_root.ricochet") { gotoAndPlay (2); }; }; }; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.mycar.losehit)) { tellTarget ("_root.mycar") { gotoAndPlay ("spin"); tellTarget ("_root.other") { gotoAndPlay ("side"); }; }; } } onClipEvent (load) { _root.themscore.themnumbers = "100"; }
Instance of Symbol 122 MovieClip "other2" in Frame 981
onClipEvent (enterFrame) { _root.speed = speed; _root.mph = Number(speed) * 2; _root.mph = _root.mph - (_root.mph % 1); if (_root.mph < 1) { _root.mph = 1; } if (_root.dir_other2.other2 == "go") { speed = speed + 12; } if (_root.dir_other2.other2 == "slow") { speed = speed - 1; } if (Math.abs(speed) > 20) { speed = speed * 0.7; } if (_root.dir_other2.other2 == "left") { _rotation = (_rotation - 14); } if (_root.dir_other2.other2 == "right") { _rotation = (_rotation + 14); } speed = speed * 0.98; x = Math.sin(_rotation * (Math.PI/180)) * speed; y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1; if (!_root.boundary.hitTest(_x + x, _y + y, true)) { _x = (_x + x); _y = (_y + y); } else { speed = speed * -0.6; } } onClipEvent (enterFrame) { if (this._x > 720) { this._x = -50; } } onClipEvent (enterFrame) { if (this._y > 480) { this._y = -50; } } onClipEvent (enterFrame) { if (this._x < -50) { this._x = 720; } } onClipEvent (enterFrame) { if (this._y < -50) { this._y = 480; } } onClipEvent (enterFrame) { if (_root.test == false) { if (this.hitTest(_root.mycar.winhit)) { tellTarget ("_root.mycar") { gotoAndPlay ("back"); tellTarget ("_root.other2") { gotoAndPlay ("spin2"); tellTarget ("_root.them_cont") { gotoAndPlay (2); }; }; }; } } } onClipEvent (enterFrame) { if (_root.test == true) { if (this.hitTest(_root.mycar.winhit)) { tellTarget ("_root.mycar") { gotoAndPlay ("back"); tellTarget ("_root.them_cont") { gotoAndPlay (2); tellTarget ("_root.ricochet") { gotoAndPlay (2); }; }; }; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.mycar.losehit)) { tellTarget ("_root.mycar") { gotoAndPlay ("spin"); tellTarget ("_root.other2") { gotoAndPlay ("side"); }; }; } }
Instance of Symbol 215 MovieClip "other3" in Frame 981
onClipEvent (enterFrame) { _root.speed = speed; _root.mph = Number(speed) * 2; _root.mph = _root.mph - (_root.mph % 1); if (_root.mph < 1) { _root.mph = 1; } if (_root.dir_other3.other3 == "go") { speed = speed + 16; } if (_root.dir_other3.other3 == "slow") { speed = speed - 1; } if (Math.abs(speed) > 20) { speed = speed * 0.7; } if (_root.dir_other3.other3 == "left") { _rotation = (_rotation - 14); } if (_root.dir_other3.other3 == "right") { _rotation = (_rotation + 14); } speed = speed * 0.98; x = Math.sin(_rotation * (Math.PI/180)) * speed; y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1; if (!_root.boundary.hitTest(_x + x, _y + y, true)) { _x = (_x + x); _y = (_y + y); } else { speed = speed * -0.6; } } onClipEvent (enterFrame) { if (this._x > 720) { this._x = -50; } } onClipEvent (enterFrame) { if (this._y > 480) { this._y = -50; } } onClipEvent (enterFrame) { if (this._x < -50) { this._x = 720; } } onClipEvent (enterFrame) { if (this._y < -50) { this._y = 480; } } onClipEvent (enterFrame) { if (_root.test == false) { if (this.hitTest(_root.mycar.winhit)) { tellTarget ("_root.mycar") { gotoAndPlay ("back"); tellTarget ("_root.other3") { gotoAndPlay ("spin3"); tellTarget ("_root.them_cont") { gotoAndPlay (2); }; }; }; } } } onClipEvent (enterFrame) { if (_root.test == true) { if (this.hitTest(_root.mycar.winhit)) { tellTarget ("_root.mycar") { gotoAndPlay ("back"); tellTarget ("_root.them_cont") { gotoAndPlay (2); tellTarget ("_root.ricochet") { gotoAndPlay (2); }; }; }; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.mycar.losehit)) { tellTarget ("_root.mycar") { gotoAndPlay ("spin"); tellTarget ("_root.other3") { gotoAndPlay ("side"); }; }; } }
Instance of Symbol 95 MovieClip "themscore" in Frame 981
onClipEvent (enterFrame) { if (_root.test == false) { if (themnumbers == 4) { _root.test = true; } } } onClipEvent (enterFrame) { if (_root.test == true) { if (themnumbers == 0) { tellTarget ("_root.other") { gotoAndPlay ("explode"); tellTarget ("_root.other2") { gotoAndPlay ("explode"); tellTarget ("_root.other3") { gotoAndPlay ("explode"); tellTarget ("_root.endtrigger") { gotoAndPlay (2); }; }; }; }; } } }
Frame 982
stop();
Frame 983
stopAllSounds();
Frame 1057
stopAllSounds();
Frame 1110
stop();
Frame 1111
stop(); test = false;
Instance of Symbol 22 MovieClip "mycar" in Frame 1111
onClipEvent (enterFrame) { _root.speed = speed; _root.mph = Number(speed) * 2; _root.mph = _root.mph - (_root.mph % 1); if (_root.mph < 1) { _root.mph = 1; } if (Key.isDown(38)) { speed = speed + 10; } if (Key.isDown(40)) { speed = speed - 1; } if (Math.abs(speed) > 20) { speed = speed * 0.7; } if (Key.isDown(37)) { _rotation = (_rotation - 14); } if (Key.isDown(39)) { _rotation = (_rotation + 14); } speed = speed * 0.98; x = Math.sin(_rotation * (Math.PI/180)) * speed; y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1; if (!_root.boundary.hitTest(_x + x, _y + y, true)) { _x = (_x + x); _y = (_y + y); } else { speed = speed * -0.6; } } onClipEvent (enterFrame) { if (this._x > 720) { this._x = -50; } } onClipEvent (enterFrame) { if (this._y > 480) { this._y = -50; } } onClipEvent (enterFrame) { if (this._x < -50) { this._x = 720; } } onClipEvent (enterFrame) { if (this._y < -50) { this._y = 480; } } onClipEvent (load) { _root.mescore.menumbers = "100"; }
Instance of Symbol 13 MovieClip "other" in Frame 1111
onClipEvent (enterFrame) { _root.speed = speed; _root.mph = Number(speed) * 2; _root.mph = _root.mph - (_root.mph % 1); if (_root.mph < 1) { _root.mph = 1; } if (_root.dir_other.other == "go") { speed = speed + 9; } if (_root.dir_other.other == "slow") { speed = speed - 1; } if (Math.abs(speed) > 20) { speed = speed * 0.7; } if (_root.dir_other.other == "left") { _rotation = (_rotation - 14); } if (_root.dir_other.other == "right") { _rotation = (_rotation + 14); } speed = speed * 0.98; x = Math.sin(_rotation * (Math.PI/180)) * speed; y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1; if (!_root.boundary.hitTest(_x + x, _y + y, true)) { _x = (_x + x); _y = (_y + y); } else { speed = speed * -0.6; } } onClipEvent (enterFrame) { if (this._x > 720) { this._x = -50; } } onClipEvent (enterFrame) { if (this._y > 480) { this._y = -50; } } onClipEvent (enterFrame) { if (this._x < -50) { this._x = 720; } } onClipEvent (enterFrame) { if (this._y < -50) { this._y = 480; } } onClipEvent (enterFrame) { if (_root.test == false) { if (this.hitTest(_root.mycar.winhit)) { tellTarget ("_root.mycar") { gotoAndPlay ("back"); tellTarget ("_root.other") { gotoAndPlay ("spin"); tellTarget ("_root.them_cont") { gotoAndPlay (2); }; }; }; } } } onClipEvent (enterFrame) { if (_root.test == true) { if (this.hitTest(_root.mycar.winhit)) { tellTarget ("_root.mycar") { gotoAndPlay ("back"); tellTarget ("_root.them_cont") { gotoAndPlay (2); tellTarget ("_root.ricochet") { gotoAndPlay (2); }; }; }; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.mycar.losehit)) { tellTarget ("_root.mycar") { gotoAndPlay ("spin"); tellTarget ("_root.other") { gotoAndPlay ("side"); }; }; } } onClipEvent (load) { _root.themscore.themnumbers = "100"; }
Instance of Symbol 122 MovieClip "other2" in Frame 1111
onClipEvent (enterFrame) { _root.speed = speed; _root.mph = Number(speed) * 2; _root.mph = _root.mph - (_root.mph % 1); if (_root.mph < 1) { _root.mph = 1; } if (_root.dir_other2.other2 == "go") { speed = speed + 11; } if (_root.dir_other2.other2 == "slow") { speed = speed - 1; } if (Math.abs(speed) > 20) { speed = speed * 0.7; } if (_root.dir_other2.other2 == "left") { _rotation = (_rotation - 14); } if (_root.dir_other2.other2 == "right") { _rotation = (_rotation + 14); } speed = speed * 0.98; x = Math.sin(_rotation * (Math.PI/180)) * speed; y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1; if (!_root.boundary.hitTest(_x + x, _y + y, true)) { _x = (_x + x); _y = (_y + y); } else { speed = speed * -0.6; } } onClipEvent (enterFrame) { if (this._x > 720) { this._x = -50; } } onClipEvent (enterFrame) { if (this._y > 480) { this._y = -50; } } onClipEvent (enterFrame) { if (this._x < -50) { this._x = 720; } } onClipEvent (enterFrame) { if (this._y < -50) { this._y = 480; } } onClipEvent (enterFrame) { if (_root.test == false) { if (this.hitTest(_root.mycar.winhit)) { tellTarget ("_root.mycar") { gotoAndPlay ("back"); tellTarget ("_root.other2") { gotoAndPlay ("spin2"); tellTarget ("_root.them_cont") { gotoAndPlay (2); }; }; }; } } } onClipEvent (enterFrame) { if (_root.test == true) { if (this.hitTest(_root.mycar.winhit)) { tellTarget ("_root.mycar") { gotoAndPlay ("back"); tellTarget ("_root.them_cont") { gotoAndPlay (2); tellTarget ("_root.ricochet") { gotoAndPlay (2); }; }; }; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.mycar.losehit)) { tellTarget ("_root.mycar") { gotoAndPlay ("spin"); tellTarget ("_root.other2") { gotoAndPlay ("side"); }; }; } }
Instance of Symbol 215 MovieClip "other3" in Frame 1111
onClipEvent (enterFrame) { _root.speed = speed; _root.mph = Number(speed) * 2; _root.mph = _root.mph - (_root.mph % 1); if (_root.mph < 1) { _root.mph = 1; } if (_root.dir_other3.other3 == "go") { speed = speed + 13; } if (_root.dir_other3.other3 == "slow") { speed = speed - 1; } if (Math.abs(speed) > 20) { speed = speed * 0.7; } if (_root.dir_other3.other3 == "left") { _rotation = (_rotation - 14); } if (_root.dir_other3.other3 == "right") { _rotation = (_rotation + 14); } speed = speed * 0.98; x = Math.sin(_rotation * (Math.PI/180)) * speed; y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1; if (!_root.boundary.hitTest(_x + x, _y + y, true)) { _x = (_x + x); _y = (_y + y); } else { speed = speed * -0.6; } } onClipEvent (enterFrame) { if (this._x > 720) { this._x = -50; } } onClipEvent (enterFrame) { if (this._y > 480) { this._y = -50; } } onClipEvent (enterFrame) { if (this._x < -50) { this._x = 720; } } onClipEvent (enterFrame) { if (this._y < -50) { this._y = 480; } } onClipEvent (enterFrame) { if (_root.test == false) { if (this.hitTest(_root.mycar.winhit)) { tellTarget ("_root.mycar") { gotoAndPlay ("back"); tellTarget ("_root.other3") { gotoAndPlay ("spin3"); tellTarget ("_root.them_cont") { gotoAndPlay (2); }; }; }; } } } onClipEvent (enterFrame) { if (_root.test == true) { if (this.hitTest(_root.mycar.winhit)) { tellTarget ("_root.mycar") { gotoAndPlay ("back"); tellTarget ("_root.them_cont") { gotoAndPlay (2); tellTarget ("_root.ricochet") { gotoAndPlay (2); }; }; }; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.mycar.losehit)) { tellTarget ("_root.mycar") { gotoAndPlay ("spin"); tellTarget ("_root.other3") { gotoAndPlay ("side"); }; }; } }
Instance of Symbol 232 MovieClip "other4" in Frame 1111
onClipEvent (enterFrame) { _root.speed = speed; _root.mph = Number(speed) * 2; _root.mph = _root.mph - (_root.mph % 1); if (_root.mph < 1) { _root.mph = 1; } if (_root.dir_other4.other4 == "go") { speed = speed + 15; } if (_root.dir_other4.other4 == "slow") { speed = speed - 1; } if (Math.abs(speed) > 20) { speed = speed * 0.7; } if (_root.dir_other4.other4 == "left") { _rotation = (_rotation - 14); } if (_root.dir_other4.other4 == "right") { _rotation = (_rotation + 14); } speed = speed * 0.98; x = Math.sin(_rotation * (Math.PI/180)) * speed; y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1; if (!_root.boundary.hitTest(_x + x, _y + y, true)) { _x = (_x + x); _y = (_y + y); } else { speed = speed * -0.6; } } onClipEvent (enterFrame) { if (this._x > 720) { this._x = -50; } } onClipEvent (enterFrame) { if (this._y > 480) { this._y = -50; } } onClipEvent (enterFrame) { if (this._x < -50) { this._x = 720; } } onClipEvent (enterFrame) { if (this._y < -50) { this._y = 480; } } onClipEvent (enterFrame) { if (_root.test == false) { if (this.hitTest(_root.mycar.winhit)) { tellTarget ("_root.mycar") { gotoAndPlay ("back"); tellTarget ("_root.other4") { gotoAndPlay ("spin4"); tellTarget ("_root.them_cont") { gotoAndPlay (2); }; }; }; } } } onClipEvent (enterFrame) { if (_root.test == true) { if (this.hitTest(_root.mycar.winhit)) { tellTarget ("_root.mycar") { gotoAndPlay ("back"); tellTarget ("_root.them_cont") { gotoAndPlay (2); tellTarget ("_root.ricochet") { gotoAndPlay (2); }; }; }; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.mycar.losehit)) { tellTarget ("_root.mycar") { gotoAndPlay ("spin"); tellTarget ("_root.other4") { gotoAndPlay ("side"); }; }; } }
Instance of Symbol 234 MovieClip "other5" in Frame 1111
onClipEvent (enterFrame) { _root.speed = speed; _root.mph = Number(speed) * 2; _root.mph = _root.mph - (_root.mph % 1); if (_root.mph < 1) { _root.mph = 1; } if (_root.dir_other5.other5 == "go") { speed = speed + 17; } if (_root.dir_other5.other5 == "slow") { speed = speed - 1; } if (Math.abs(speed) > 20) { speed = speed * 0.7; } if (_root.dir_other5.other5 == "left") { _rotation = (_rotation - 14); } if (_root.dir_other5.other5 == "right") { _rotation = (_rotation + 14); } speed = speed * 0.98; x = Math.sin(_rotation * (Math.PI/180)) * speed; y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1; if (!_root.boundary.hitTest(_x + x, _y + y, true)) { _x = (_x + x); _y = (_y + y); } else { speed = speed * -0.6; } } onClipEvent (enterFrame) { if (this._x > 720) { this._x = -50; } } onClipEvent (enterFrame) { if (this._y > 480) { this._y = -50; } } onClipEvent (enterFrame) { if (this._x < -50) { this._x = 720; } } onClipEvent (enterFrame) { if (this._y < -50) { this._y = 480; } } onClipEvent (enterFrame) { if (_root.test == false) { if (this.hitTest(_root.mycar.winhit)) { tellTarget ("_root.mycar") { gotoAndPlay ("back"); tellTarget ("_root.other5") { gotoAndPlay ("spin5"); tellTarget ("_root.them_cont") { gotoAndPlay (2); }; }; }; } } } onClipEvent (enterFrame) { if (_root.test == true) { if (this.hitTest(_root.mycar.winhit)) { tellTarget ("_root.mycar") { gotoAndPlay ("back"); tellTarget ("_root.them_cont") { gotoAndPlay (2); tellTarget ("_root.ricochet") { gotoAndPlay (2); }; }; }; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.mycar.losehit)) { tellTarget ("_root.mycar") { gotoAndPlay ("spin"); tellTarget ("_root.other5") { gotoAndPlay ("side"); }; }; } }
Instance of Symbol 236 MovieClip "other6" in Frame 1111
onClipEvent (enterFrame) { _root.speed = speed; _root.mph = Number(speed) * 2; _root.mph = _root.mph - (_root.mph % 1); if (_root.mph < 1) { _root.mph = 1; } if (_root.dir_other6.other6 == "go") { speed = speed + 19; } if (_root.dir_other6.other6 == "slow") { speed = speed - 1; } if (Math.abs(speed) > 20) { speed = speed * 0.7; } if (_root.dir_other6.other6 == "left") { _rotation = (_rotation - 14); } if (_root.dir_other6.other6 == "right") { _rotation = (_rotation + 14); } speed = speed * 0.98; x = Math.sin(_rotation * (Math.PI/180)) * speed; y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1; if (!_root.boundary.hitTest(_x + x, _y + y, true)) { _x = (_x + x); _y = (_y + y); } else { speed = speed * -0.6; } } onClipEvent (enterFrame) { if (this._x > 720) { this._x = -50; } } onClipEvent (enterFrame) { if (this._y > 480) { this._y = -50; } } onClipEvent (enterFrame) { if (this._x < -50) { this._x = 720; } } onClipEvent (enterFrame) { if (this._y < -50) { this._y = 480; } } onClipEvent (enterFrame) { if (_root.test == false) { if (this.hitTest(_root.mycar.winhit)) { tellTarget ("_root.mycar") { gotoAndPlay ("back"); tellTarget ("_root.other6") { gotoAndPlay ("spin6"); tellTarget ("_root.them_cont") { gotoAndPlay (2); }; }; }; } } } onClipEvent (enterFrame) { if (_root.test == true) { if (this.hitTest(_root.mycar.winhit)) { tellTarget ("_root.mycar") { gotoAndPlay ("back"); tellTarget ("_root.them_cont") { gotoAndPlay (2); tellTarget ("_root.ricochet") { gotoAndPlay (2); }; }; }; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.mycar.losehit)) { tellTarget ("_root.mycar") { gotoAndPlay ("spin"); tellTarget ("_root.other6") { gotoAndPlay ("side"); }; }; } }
Instance of Symbol 95 MovieClip "themscore" in Frame 1111
onClipEvent (enterFrame) { if (_root.test == false) { if (themnumbers == 4) { _root.test = true; } } } onClipEvent (enterFrame) { if (_root.test == true) { if (themnumbers == 0) { tellTarget ("_root.other") { gotoAndPlay ("explode"); tellTarget ("_root.other2") { gotoAndPlay ("explode"); tellTarget ("_root.other3") { gotoAndPlay ("explode"); tellTarget ("_root.other4") { gotoAndPlay ("explode"); tellTarget ("_root.other5") { gotoAndPlay ("explode"); tellTarget ("_root.other6") { gotoAndPlay ("explode"); tellTarget ("_root.endtrigger") { gotoAndPlay (2); }; }; }; }; }; }; }; } } }
Frame 1112
_root.gotoAndPlay("win", "win");
Frame 1113
stopAllSounds();
Frame 1114
stop();
Frame 1115
stopAllSounds();
Frame 1204
stop();
Symbol 6 MovieClip Frame 1
stop();
Symbol 6 MovieClip Frame 2
stop();
Symbol 13 MovieClip Frame 1
_root.other.stop();
Symbol 13 MovieClip Frame 22
_root.other.gotoAndStop(1);
Symbol 13 MovieClip Frame 34
_root.other.gotoAndStop(1);
Symbol 13 MovieClip Frame 37
_root.test = false;
Symbol 13 MovieClip Frame 46
stop();
Symbol 22 MovieClip Frame 3
_root.mycar.gotoAndPlay(1);
Symbol 22 MovieClip Frame 5
_root.mescore.nextFrame();
Symbol 22 MovieClip Frame 21
_root.mycar.gotoAndPlay(1);
Symbol 22 MovieClip Frame 36
_root.mycar.gotoAndPlay(1);
Symbol 22 MovieClip Frame 50
_root.mycar.gotoAndPlay(1);
Symbol 22 MovieClip Frame 62
_root.mycar.stop();
Symbol 27 Button
on (release) { getURL ("http://www.fourinchesofego.com", "_blank"); }
Symbol 42 Button
on (release) { if (passcode == "florist") { gotoAndPlay (140); } else if (passcode == "restaurant") { gotoAndPlay (270); } else if (passcode == "bonus") { gotoAndPlay (853); } else if (passcode == "grocery") { gotoAndPlay (983); } else { gotoAndPlay (10); } }
Symbol 45 Button
on (keyPress "<Up>") { nextFrame(); } on (keyPress "<Left>") { nextFrame(); } on (keyPress "<Right>") { nextFrame(); } on (keyPress "<Down>") { nextFrame(); }
Symbol 48 MovieClip Frame 1
other = "go"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 48 MovieClip Frame 2
other = "go"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 48 MovieClip Frame 3
other = "go"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 48 MovieClip Frame 4
other = "go"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 48 MovieClip Frame 5
other = "go"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 48 MovieClip Frame 6
other = "go"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 48 MovieClip Frame 7
other = "slow"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 48 MovieClip Frame 8
other = "slow"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 48 MovieClip Frame 9
other = "slow"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 48 MovieClip Frame 10
other = "slow"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 48 MovieClip Frame 11
other = "left"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 48 MovieClip Frame 12
other = "left"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 48 MovieClip Frame 13
other = "left"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 48 MovieClip Frame 14
other = "left"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 48 MovieClip Frame 15
other = "left"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 48 MovieClip Frame 16
other = "left"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 48 MovieClip Frame 17
other = "right"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 48 MovieClip Frame 18
other = "right"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 48 MovieClip Frame 19
other = "right"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 48 MovieClip Frame 20
other = "right"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 49 Button
on (release) { gotoAndPlay (10); }
Symbol 76 Button
on (release) { gotoAndPlay (138); }
Symbol 77 Button
on (release, keyPress "<Enter>") { gotoAndPlay (138); }
Symbol 92 MovieClip Frame 1
stop();
Symbol 92 MovieClip Frame 2
stop();
Symbol 92 MovieClip Frame 3
stop();
Symbol 92 MovieClip Frame 4
stop();
Symbol 92 MovieClip Frame 5
stop();
Symbol 92 MovieClip Frame 6
stop();
Symbol 92 MovieClip Frame 7
stop();
Symbol 92 MovieClip Frame 8
stop();
Symbol 92 MovieClip Frame 9
stop();
Symbol 92 MovieClip Frame 10
stop();
Symbol 92 MovieClip Frame 11
tellTarget ("_root.mycar") { gotoAndPlay ("explode"); }; tellTarget (_root.losetrigger) { gotoAndPlay (2); };
Symbol 97 MovieClip Frame 1
stop();
Symbol 97 MovieClip Frame 5
oldValue = Number(_root.themscore.themnumbers); newValue = oldValue.valueOf() - 10; _root.themscore.themnumbers = newValue;
Symbol 99 MovieClip Frame 1
stop();
Symbol 99 MovieClip Frame 12
_root.nextFrame();
Symbol 100 MovieClip Frame 1
stop();
Symbol 100 MovieClip Frame 20
_root.gotoAndPlay("lose", "lose");
Symbol 102 MovieClip Frame 1
stop();
Symbol 107 MovieClip Frame 10
stop();
Symbol 110 MovieClip Frame 60
_root.gotoAndPlay("intro2", "intro2");
Symbol 121 Button
on (release, keyPress "<Enter>") { gotoAndPlay (268); }
Symbol 122 MovieClip Frame 1
_root.other2.stop();
Symbol 122 MovieClip Frame 22
_root.other2.gotoAndStop(1);
Symbol 122 MovieClip Frame 34
_root.other2.gotoAndStop(1);
Symbol 122 MovieClip Frame 50
stop();
Symbol 123 MovieClip Frame 1
other2 = "go"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 123 MovieClip Frame 2
other2 = "go"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 123 MovieClip Frame 3
other2 = "go"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 123 MovieClip Frame 4
othe2r = "go"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 123 MovieClip Frame 5
other2 = "go"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 123 MovieClip Frame 6
other2 = "go"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 123 MovieClip Frame 7
other2 = "slow"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 123 MovieClip Frame 8
other2 = "slow"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 123 MovieClip Frame 9
other2 = "slow"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 123 MovieClip Frame 10
other2 = "slow"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 123 MovieClip Frame 11
other2 = "left"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 123 MovieClip Frame 12
other2 = "left"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 123 MovieClip Frame 13
other2 = "left"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 123 MovieClip Frame 14
other2 = "left"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 123 MovieClip Frame 15
other2 = "right"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 123 MovieClip Frame 16
other2 = "right"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 123 MovieClip Frame 17
other2 = "right"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 123 MovieClip Frame 18
other2 = "right"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 123 MovieClip Frame 19
other2 = "right"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 123 MovieClip Frame 20
other2 = "right"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 124 MovieClip Frame 1
stop();
Symbol 124 MovieClip Frame 7
oldValue = Number(_root.themscore.themnumbers); newValue = oldValue.valueOf() - 5; _root.themscore.themnumbers = newValue;
Symbol 125 MovieClip Frame 1
stop();
Symbol 125 MovieClip Frame 16
_root.nextFrame();
Symbol 127 MovieClip Frame 60
_root.gotoAndPlay("intro3", "intro3");
Symbol 145 Button
on (release, keyPress "<Enter>") { gotoAndPlay (392); }
Symbol 160 MovieClip Frame 1
stop();
Symbol 160 MovieClip Frame 5
stop();
Symbol 164 MovieClip Frame 1
stop();
Symbol 164 MovieClip Frame 5
stop();
Symbol 167 MovieClip Frame 1
stop();
Symbol 167 MovieClip Frame 9
gotoAndStop (1);
Symbol 167 MovieClip Frame 10
_root.youlose.gotoAndStop(2);
Symbol 167 MovieClip Frame 17
_root.stop();
Symbol 167 MovieClip Frame 52
_root.gotoAndPlay("intro3a", "intro3a");
Symbol 168 MovieClip Frame 1
stop();
Symbol 168 MovieClip Frame 2
stop();
Symbol 171 MovieClip Frame 1
stop();
Symbol 171 MovieClip Frame 2
stop();
Symbol 180 MovieClip Frame 1
stop();
Instance of Symbol 149 MovieClip in Symbol 180 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.me.mein.fisthit)) { tellTarget ("_root.man1") { gotoAndPlay (2); }; } }
Symbol 180 MovieClip Frame 9
stop();
Symbol 184 MovieClip Frame 1
stop();
Instance of Symbol 149 MovieClip in Symbol 184 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.me.mein.fisthit)) { tellTarget ("_root.man2") { gotoAndPlay (2); }; } }
Symbol 184 MovieClip Frame 11
stop();
Symbol 189 MovieClip Frame 1
stop();
Instance of Symbol 149 MovieClip in Symbol 189 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.me.mein.fisthit)) { tellTarget ("_root.man3b") { gotoAndPlay (2); }; } }
Symbol 189 MovieClip Frame 11
stop();
Symbol 192 MovieClip Frame 1
stop();
Instance of Symbol 149 MovieClip in Symbol 192 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.me.mein.fisthit)) { tellTarget ("_root.man1b") { gotoAndPlay (2); }; } }
Symbol 192 MovieClip Frame 9
stop();
Symbol 196 MovieClip Frame 1
stop();
Instance of Symbol 149 MovieClip in Symbol 196 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.me.mein.fisthit)) { tellTarget ("_root.man3") { gotoAndPlay (2); }; } }
Symbol 196 MovieClip Frame 11
stop();
Symbol 199 MovieClip Frame 1
stop();
Instance of Symbol 149 MovieClip in Symbol 199 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.me.mein.fisthit)) { tellTarget ("_root.man2b") { gotoAndPlay (2); }; } }
Symbol 199 MovieClip Frame 11
stop();
Symbol 214 Button
on (release, keyPress "<Enter>") { gotoAndPlay (981); }
Symbol 215 MovieClip Frame 1
_root.other3.stop();
Symbol 215 MovieClip Frame 22
_root.other3.gotoAndStop(1);
Symbol 215 MovieClip Frame 34
_root.other3.gotoAndStop(1);
Symbol 215 MovieClip Frame 54
stop();
Symbol 216 MovieClip Frame 1
other3 = "go"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 216 MovieClip Frame 2
other3 = "go"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 216 MovieClip Frame 3
other3 = "go"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 216 MovieClip Frame 4
other3 = "go"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 216 MovieClip Frame 5
other3 = "go"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 216 MovieClip Frame 6
other3 = "go"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 216 MovieClip Frame 7
other3 = "go"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 216 MovieClip Frame 8
other3 = "slow"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 216 MovieClip Frame 9
other3 = "slow"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 216 MovieClip Frame 10
other3 = "slow"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 216 MovieClip Frame 11
other3 = "left"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 216 MovieClip Frame 12
other3 = "left"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 216 MovieClip Frame 13
other3 = "left"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 216 MovieClip Frame 14
other3 = "left"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 216 MovieClip Frame 15
other3 = "left"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 216 MovieClip Frame 16
other3 = "right"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 216 MovieClip Frame 17
other3 = "right"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 216 MovieClip Frame 18
other3 = "right"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 216 MovieClip Frame 19
other3 = "right"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 216 MovieClip Frame 20
other3 = "right"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 217 MovieClip Frame 1
stop();
Symbol 217 MovieClip Frame 7
oldValue = Number(_root.themscore.themnumbers); newValue = oldValue.valueOf() - 4; _root.themscore.themnumbers = newValue;
Symbol 218 MovieClip Frame 1
stop();
Symbol 218 MovieClip Frame 20
_root.nextFrame();
Symbol 220 MovieClip Frame 60
_root.gotoAndPlay("intro4", "intro4");
Symbol 230 Button
on (release, keyPress "<Enter>") { gotoAndPlay (1111); }
Symbol 232 MovieClip Frame 1
_root.other4.stop();
Symbol 232 MovieClip Frame 22
_root.other4.gotoAndStop(1);
Symbol 232 MovieClip Frame 34
_root.other4.gotoAndStop(1);
Symbol 232 MovieClip Frame 58
stop();
Symbol 233 MovieClip Frame 1
other4 = "go"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 233 MovieClip Frame 2
other4 = "go"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 233 MovieClip Frame 3
other4 = "go"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 233 MovieClip Frame 4
other4 = "go"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 233 MovieClip Frame 5
other4 = "go"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 233 MovieClip Frame 6
other4 = "go"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 233 MovieClip Frame 7
other4 = "slow"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 233 MovieClip Frame 8
other4 = "slow"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 233 MovieClip Frame 9
other4 = "slow"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 233 MovieClip Frame 10
other4 = "slow"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 233 MovieClip Frame 11
other4 = "left"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 233 MovieClip Frame 12
other4 = "left"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 233 MovieClip Frame 13
other4 = "left"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 233 MovieClip Frame 14
other4 = "left"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 233 MovieClip Frame 15
other4 = "left"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 233 MovieClip Frame 16
other4 = "left"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 233 MovieClip Frame 17
other4 = "right"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 233 MovieClip Frame 18
other4 = "right"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 233 MovieClip Frame 19
other4 = "right"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 233 MovieClip Frame 20
other4 = "right"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 234 MovieClip Frame 1
_root.other5.stop();
Symbol 234 MovieClip Frame 22
_root.other5.gotoAndStop(1);
Symbol 234 MovieClip Frame 34
_root.other5.gotoAndStop(1);
Symbol 234 MovieClip Frame 62
stop();
Symbol 235 MovieClip Frame 1
other5 = "go"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 235 MovieClip Frame 2
other5 = "go"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 235 MovieClip Frame 3
other5 = "go"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 235 MovieClip Frame 4
other5 = "go"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 235 MovieClip Frame 5
other5 = "go"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 235 MovieClip Frame 6
other5 = "go"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 235 MovieClip Frame 7
other5 = "slow"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 235 MovieClip Frame 8
other5 = "slow"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 235 MovieClip Frame 9
other5 = "slow"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 235 MovieClip Frame 10
other5 = "slow"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 235 MovieClip Frame 11
other5 = "left"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 235 MovieClip Frame 12
other5 = "left"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 235 MovieClip Frame 13
other5 = "left"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 235 MovieClip Frame 14
other5 = "left"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 235 MovieClip Frame 15
other5 = "right"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 235 MovieClip Frame 16
other5 = "right"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 235 MovieClip Frame 17
other5 = "right"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 235 MovieClip Frame 18
other5 = "right"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 235 MovieClip Frame 19
other5 = "right"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 235 MovieClip Frame 20
other5 = "right"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 236 MovieClip Frame 1
_root.other6.stop();
Symbol 236 MovieClip Frame 22
_root.other6.gotoAndStop(1);
Symbol 236 MovieClip Frame 34
_root.other6.gotoAndStop(1);
Symbol 236 MovieClip Frame 66
stop();
Symbol 237 MovieClip Frame 1
other6 = "go"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 237 MovieClip Frame 2
other6 = "go"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 237 MovieClip Frame 3
other6 = "go"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 237 MovieClip Frame 4
other6 = "go"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 237 MovieClip Frame 5
other6 = "go"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 237 MovieClip Frame 6
other6 = "slow"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 237 MovieClip Frame 7
other6 = "slow"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 237 MovieClip Frame 8
other6 = "slow"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 237 MovieClip Frame 9
other6 = "slow"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 237 MovieClip Frame 10
other6 = "slow"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 237 MovieClip Frame 11
other6 = "left"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 237 MovieClip Frame 12
other6 = "left"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 237 MovieClip Frame 13
other6 = "left"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 237 MovieClip Frame 14
other6 = "left"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 237 MovieClip Frame 15
other6 = "left"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 237 MovieClip Frame 16
other6 = "left"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 237 MovieClip Frame 17
other6 = "left"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 237 MovieClip Frame 18
other6 = "right"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 237 MovieClip Frame 19
other6 = "right"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 237 MovieClip Frame 20
other6 = "right"; gotoAndPlay(Math.floor(Math.random() * 19) + 1);
Symbol 248 MovieClip Frame 1
stop();
Symbol 248 MovieClip Frame 2
stop();
Symbol 248 MovieClip Frame 3
stop();
Symbol 248 MovieClip Frame 4
stop();
Symbol 248 MovieClip Frame 5
stop();
Symbol 248 MovieClip Frame 6
stop();
Symbol 248 MovieClip Frame 7
stop();
Symbol 248 MovieClip Frame 8
stop();
Symbol 248 MovieClip Frame 9
stop();
Symbol 248 MovieClip Frame 10
stop();
Symbol 248 MovieClip Frame 11
stop();
Symbol 248 MovieClip Frame 12
stop();
Symbol 248 MovieClip Frame 13
stop();
Symbol 248 MovieClip Frame 14
stop();
Symbol 248 MovieClip Frame 15
stop();
Symbol 248 MovieClip Frame 16
stop();
Symbol 248 MovieClip Frame 17
stop();
Symbol 248 MovieClip Frame 18
stop();
Symbol 248 MovieClip Frame 19
stop();
Symbol 248 MovieClip Frame 20
stop();
Symbol 248 MovieClip Frame 21
tellTarget ("_root.mycar") { gotoAndPlay ("explode"); }; tellTarget (_root.losetrigger) { gotoAndPlay (2); };
Symbol 249 MovieClip Frame 1
stop();
Symbol 249 MovieClip Frame 7
oldValue = Number(_root.themscore.themnumbers); newValue = oldValue.valueOf() - 2; _root.themscore.themnumbers = newValue;
Symbol 250 MovieClip Frame 1
stop();
Symbol 250 MovieClip Frame 32
_root.nextFrame();
Symbol 254 Button
on (release, keyPress "<Enter>") { stopAllSounds(); gotoAndPlay (1); }
Symbol 276 Button
on (release, keyPress "<Enter>") { gotoAndPlay (10); }

Library Items

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

Instance Names

"other"Frame 1Symbol 13 MovieClip
"mycar"Frame 1Symbol 22 MovieClip
"input"Frame 5Symbol 39 EditableText
"mycar"Frame 8Symbol 22 MovieClip
"dir_other"Frame 8Symbol 48 MovieClip
"other"Frame 9Symbol 13 MovieClip
"dir_other"Frame 138Symbol 48 MovieClip
"mycar"Frame 138Symbol 22 MovieClip
"other"Frame 138Symbol 13 MovieClip
"mescore"Frame 138Symbol 92 MovieClip
"themscore"Frame 138Symbol 95 MovieClip
"them_cont"Frame 138Symbol 97 MovieClip
"endtrigger"Frame 138Symbol 99 MovieClip
"losetrigger"Frame 138Symbol 100 MovieClip
"ricochet"Frame 138Symbol 102 MovieClip
"mycar"Frame 268Symbol 22 MovieClip
"dir_other"Frame 268Symbol 48 MovieClip
"other"Frame 268Symbol 13 MovieClip
"other2"Frame 268Symbol 122 MovieClip
"dir_other2"Frame 268Symbol 123 MovieClip
"mescore"Frame 268Symbol 92 MovieClip
"themscore"Frame 268Symbol 95 MovieClip
"them_cont"Frame 268Symbol 124 MovieClip
"endtrigger"Frame 268Symbol 125 MovieClip
"losetrigger"Frame 268Symbol 100 MovieClip
"ricochet"Frame 268Symbol 102 MovieClip
"me"Frame 392Symbol 168 MovieClip
"youlose"Frame 392Symbol 171 MovieClip
"man1"Frame 429Symbol 180 MovieClip
"man2"Frame 452Symbol 184 MovieClip
"man3b"Frame 481Symbol 189 MovieClip
"man1b"Frame 506Symbol 192 MovieClip
"man3"Frame 531Symbol 196 MovieClip
"man2b"Frame 556Symbol 199 MovieClip
"man1"Frame 582Symbol 180 MovieClip
"man2"Frame 601Symbol 184 MovieClip
"man3b"Frame 625Symbol 189 MovieClip
"man1b"Frame 645Symbol 192 MovieClip
"man3"Frame 665Symbol 196 MovieClip
"man2b"Frame 685Symbol 199 MovieClip
"man1"Frame 707Symbol 180 MovieClip
"man2"Frame 721Symbol 184 MovieClip
"man3b"Frame 740Symbol 189 MovieClip
"man1b"Frame 755Symbol 192 MovieClip
"man3"Frame 770Symbol 196 MovieClip
"man2b"Frame 785Symbol 199 MovieClip
"mycar"Frame 981Symbol 22 MovieClip
"other"Frame 981Symbol 13 MovieClip
"dir_other"Frame 981Symbol 48 MovieClip
"other2"Frame 981Symbol 122 MovieClip
"dir_other2"Frame 981Symbol 123 MovieClip
"other3"Frame 981Symbol 215 MovieClip
"dir_other3"Frame 981Symbol 216 MovieClip
"mescore"Frame 981Symbol 92 MovieClip
"themscore"Frame 981Symbol 95 MovieClip
"them_cont"Frame 981Symbol 217 MovieClip
"endtrigger"Frame 981Symbol 218 MovieClip
"losetrigger"Frame 981Symbol 100 MovieClip
"ricochet"Frame 981Symbol 102 MovieClip
"mycar"Frame 1111Symbol 22 MovieClip
"other"Frame 1111Symbol 13 MovieClip
"dir_other"Frame 1111Symbol 48 MovieClip
"other2"Frame 1111Symbol 122 MovieClip
"dir_other2"Frame 1111Symbol 123 MovieClip
"other3"Frame 1111Symbol 215 MovieClip
"dir_other3"Frame 1111Symbol 216 MovieClip
"other4"Frame 1111Symbol 232 MovieClip
"dir_other4"Frame 1111Symbol 233 MovieClip
"other5"Frame 1111Symbol 234 MovieClip
"dir_other5"Frame 1111Symbol 235 MovieClip
"other6"Frame 1111Symbol 236 MovieClip
"dir_other6"Frame 1111Symbol 237 MovieClip
"mescore"Frame 1111Symbol 248 MovieClip
"themscore"Frame 1111Symbol 95 MovieClip
"them_cont"Frame 1111Symbol 249 MovieClip
"endtrigger"Frame 1111Symbol 250 MovieClip
"losetrigger"Frame 1111Symbol 100 MovieClip
"ricochet"Frame 1111Symbol 102 MovieClip
"losehit"Symbol 22 MovieClip Frame 1Symbol 16 MovieClip
"winhit"Symbol 22 MovieClip Frame 1Symbol 16 MovieClip
"losehit"Symbol 22 MovieClip Frame 24Symbol 16 MovieClip
"themnumbers"Symbol 95 MovieClip Frame 1Symbol 94 EditableText
"mehit"Symbol 167 MovieClip Frame 1Symbol 149 MovieClip
"fisthit"Symbol 167 MovieClip Frame 2Symbol 152 MovieClip
"fisthit"Symbol 167 MovieClip Frame 6Symbol 152 MovieClip
"kerpow1"Symbol 167 MovieClip Frame 10Symbol 160 MovieClip
"kerpow2"Symbol 167 MovieClip Frame 10Symbol 164 MovieClip
"mein"Symbol 168 MovieClip Frame 1Symbol 167 MovieClip

Labels

"loop"Frame 2
"begin"Frame 4
"inst"Frame 84
"intro2"Frame 140
"inst2"Frame 214
"intro3"Frame 270
"bonus"Frame 344
"bonusgame"Frame 392
"intro3a"Frame 853
"inst3"Frame 927
"intro4"Frame 983
"inst4"Frame 1057
"lose"Frame 1113
"win"Frame 1115
"spin"Symbol 13 MovieClip Frame 4
"side"Symbol 13 MovieClip Frame 23
"explode"Symbol 13 MovieClip Frame 36
"spin"Symbol 22 MovieClip Frame 4
"back"Symbol 22 MovieClip Frame 22
"forward"Symbol 22 MovieClip Frame 37
"explode"Symbol 22 MovieClip Frame 52
"90"Symbol 97 MovieClip Frame 1
"spin2"Symbol 122 MovieClip Frame 4
"side"Symbol 122 MovieClip Frame 23
"explode"Symbol 122 MovieClip Frame 36
"90"Symbol 124 MovieClip Frame 1
"spin3"Symbol 215 MovieClip Frame 4
"side"Symbol 215 MovieClip Frame 23
"explode"Symbol 215 MovieClip Frame 36
"90"Symbol 217 MovieClip Frame 1
"spin4"Symbol 232 MovieClip Frame 4
"side"Symbol 232 MovieClip Frame 23
"explode"Symbol 232 MovieClip Frame 36
"spin5"Symbol 234 MovieClip Frame 4
"side"Symbol 234 MovieClip Frame 23
"explode"Symbol 234 MovieClip Frame 36
"spin6"Symbol 236 MovieClip Frame 4
"side"Symbol 236 MovieClip Frame 23
"explode"Symbol 236 MovieClip Frame 36
"90"Symbol 249 MovieClip Frame 1

Dynamic Text Variables

percentageOutputSymbol 7 EditableText"100%"
passcodeSymbol 39 EditableText""
themnumbersSymbol 94 EditableText"100"




http://swfchan.com/1/4718/info.shtml
Created: 16/6 -2019 15:16:19 Last modified: 16/6 -2019 15:16:19 Server time: 06/05 -2024 22:08:55