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

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

windows_rpg.swf

This is the info page for
Flash #98973

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


Text
My Documents

Ant Shooter

My Computer

Dressup Game

start

10:46

Dressup Game 2

Mouse Over Game

START

START

START

Quality

Backgound

Toggle:

0

SCORE

0

LIVES

0

SCORE

0

LIVES

actions

right arrow=
turn right

Left Arrow=
turn left

up arrow=
thrust

space=
shoot

My Documents

Ant Shooter

10:46

Error

This program has preform
an illegal opperation..

Close

My Computer

Dressup Game 2

10:46

My Computer

File

Edit

View

Virus' are Bad,
Don't download
Shit!

t

r

i

h

S

-

T

t

e

W

Back to
Windows

MeanMachine's

Dressup Game

10:46

My Documents

File

Edit

View

Hentai
Chick 1

Hentai
Chick 2

Hentai
Chick 3

Hentai
Chick 4

Hentai
Chick 5

Close

Wet T-Shirt

Click to Exit

ActionScript [AS1/AS2]

Frame 1
Mouse.show(); stop();
Frame 2
stop(); stop();
Instance of Symbol 43 MovieClip "shot" in Frame 2
onClipEvent (load) { if (_name != "shot") { _root.actions.totalShots++; shotTime = getTimer(); _x = _root.actions.tipx1; _y = _root.actions.tipy1; xSpeed = _root.actions.shotXspeed + _root.actions.xSpeed; ySpeed = _root.actions.shotYspeed + _root.actions.ySpeed; } } onClipEvent (enterFrame) { if (_name != "shot") { _root.actions.wrapAround(this); if ((getTimer() - shotTime) > 1500) { removeMovieClip(this); } _x = (_x + xSpeed); _y = (_y - ySpeed); } } onClipEvent (unload) { _root.actions.totalShots--; }
Instance of Symbol 43 MovieClip "amoebaShot" in Frame 2
onClipEvent (load) { if (_name != "amoebaShot") { _y = _root.amoeba._y; _x = _root.amoeba._x; shotSpeed = 10; shotTime = getTimer(); deltaX = _x - _root.ship._x; deltaY = _y - _root.ship._y; angle = -Math.atan2(deltaX, deltaY); ySpeed = shotSpeed * Math.cos(angle); xSpeed = shotSpeed * Math.sin(angle); amoebaShot = new Sound(this); amoebaShot.attachSound("amoebaShot"); amoebaShot.setVolume(20); amoebaShot.start(); } } onClipEvent (enterFrame) { if (_name != "amoebaShot") { _y = (_y - ySpeed); _x = (_x + xSpeed); _root.actions.wrapAround(this); if (_root.ship.body.hitTest(_x, _y, true) && (_root.ship._alpha > 90)) { _root.actions.death(_root.ship); removeMovieClip(this); } if ((getTimer() - shotTime) > 3000) { removeMovieClip(this); } } } onClipEvent (unload) { _root.amoeba.firing = false; }
Instance of Symbol 45 MovieClip "glob" in Frame 2
onClipEvent (load) { function hit(whichShot) { removeMovieClip(whichShot); _root.actions.explosion(this); if (((((whichShot == 0) || (_root.newShot1000)) || (_root.newShot2000)) || (_root.newShot3000)) || (_root.newShot4000)) { _root.actions.score = _root.actions.score + scoreAmount; } removeMovieClip(this); } if (_name != "glob") { scoreAmount = 25; _root.actions.totalCells++; angle = Math.random() * (Math.PI*2); speed = random(5) + 1; xSpeed = Math.sin(angle) * speed; ySpeed = Math.cos(angle) * speed; rotateSpeed = random(8) - 4; } } onClipEvent (enterFrame) { if (_name != "glob") { _root.actions.collisions(this); _root.actions.wrapAround(this); _x = (_x + xSpeed); _y = (_y + ySpeed); _rotation = (_rotation + rotateSpeed); } } onClipEvent (unload) { _root.actions.totalCells--; }
Instance of Symbol 51 MovieClip "amoeba" in Frame 2
onClipEvent (load) { function hit(whichShot) { if (whichShot != _root.newshot5000) { i = 1; while (i <= 2) { _root.actions.cellNumber++; duplicateMovieClip (_root.glob, "cell" + _root.actions.cellNumber, _root.actions.cellNumber); _root["cell" + _root.actions.cellNumber]._x = _x; _root["cell" + _root.actions.cellNumber]._y = _y; i++; } if (whichShot != 0) { _root.actions.cellNumber++; duplicateMovieClip (_root.seeker, "cell" + _root.actions.cellNumber, _root.actions.cellNumber); _root["cell" + _root.actions.cellNumber]._x = _x; _root["cell" + _root.actions.cellNumber]._y = _y; } removeMovieClip(whichShot); _root.actions.death(this); _root.actions.score = _root.actions.score + 75; } } moveTime = getTimer(); appearTime = getTimer(); ySpeed = 4; rotateSpeed = random(8) - 4; pause = random(7000) + 7000; amoebaSound = new Sound(this); amoebaSound.attachSound("amoeba"); soundStartable = true; } onClipEvent (enterFrame) { if (_visible == 0) { amoebaSound.stop(); soundStartable = true; _x = -30; xDirection = random(2); if (xDirection == 0) { xSpeed = 4; } if (xDirection == 1) { xSpeed = -4; } } if ((getTimer() - appearTime) > pause) { _visible = 1; } if (_visible) { _root.actions.collisions(this); _root.actions.wrapAround(this); if ((_root.startButton._alpha < 10) && (soundStartable)) { amoebaSound.start(0, 99999); amoebaSound.setVolume(50); soundStartable = false; } if ((((_root.ship._alpha > 90) && (!firing)) && (_x > 100)) && (_x < 500)) { firing = true; duplicateMovieClip (_root.amoebaShot, "newShot5000", 5000); } if (((getTimer() - appearTime) > 30000) && ((_x < 0) || (_x > 640))) { _root.actions.death(this); } _x = (_x + xSpeed); _y = (_y + ySpeed); _rotation = (_rotation + rotateSpeed); } if ((getTimer() - moveTime) > (random(2000) + 2000)) { yDirection = random(3); rotateSpeed = random(8) - 4; moveTime = getTimer(); if (yDirection == 0) { ySpeed = 4; } if (yDirection == 1) { ySpeed = -4; } if (yDirection == 2) { ySpeed = 0; } } }
Instance of Symbol 53 MovieClip "paramecium" in Frame 2
onClipEvent (load) { function hit(whichShot) { if (whichShot != _root.newShot5000) { _root.actions.score = _root.actions.score + 50; } _root.actions.explosion(this); removeMovieClip(whichShot); removeMovieClip(this); _x = (_x + 20); } function go(degree) { _y = (_y - (speed * Math.cos(_rotation * (Math.PI/180)))); _x = (_x + (speed * Math.sin(_rotation * (Math.PI/180)))); if (_rotation < degree) { _rotation = (_rotation + 15); } if (_rotation > degree) { _rotation = (_rotation - 15); } } if (_name != "paramecium") { angle = random(360); _root.actions.totalcells++; _x = ((Math.sin(angle * (Math.PI/180)) * (_root.actions.radius2 + 10)) + _root.actions.centerx); _y = ((Math.cos(angle * (Math.PI/180)) * (_root.actions.radius2 + 10)) + _root.actions.centery); moveTime = getTimer(); speed = random(4) + 4; direction = random(9); } } onClipEvent (enterFrame) { if (_name != "paramecium") { if (up && (left)) { go(-45); } else if (up && (right)) { go(45); } else if (down && (left)) { go(-135); } else if (down && (right)) { go(135); } else if ((right && (!down)) && (!up)) { go(90); } else if ((left && (!down)) && (!up)) { go(-90); } else if ((down && (!right)) && (!left)) { go(180); } else if ((up && (!right)) && (!left)) { go(0); } if (direction == 0) { up = true; down = false; right = false; left = false; } if (direction == 1) { up = false; down = true; right = false; left = false; } if (direction == 2) { up = false; down = false; right = true; left = false; } if (direction == 3) { up = false; down = false; right = false; left = true; } if (direction == 4) { up = true; down = false; right = true; left = false; } if (direction == 5) { up = true; down = false; right = false; left = true; } if (direction == 6) { up = false; down = true; right = true; left = false; } if (direction == 7) { up = false; down = true; right = false; left = true; } if (direction == 8) { up = false; down = false; right = false; left = false; } _root.actions.collisions(this); _root.actions.wrapAround(this); if ((getTimer() - moveTime) > (random(2000) + 2000)) { direction = random(9); moveTime = getTimer(); } } } onClipEvent (unload) { _root.actions.totalcells--; }
Instance of Symbol 114 MovieClip "seeker" in Frame 2
onClipEvent (load) { function hit(whichShot) { if (whichShot != _root.newshot5000) { _root.actions.score = _root.actions.score + 150; _root.actions.explosion(this); removeMovieClip(whichShot); removeMovieClip(this); } } if (_name != "seeker") { speed = 5; } } onClipEvent (enterFrame) { if (_name != "seeker") { if (_root.actions.dead) { _root.actions.explosion(this); removeMovieClip(this); } _rotation = (_rotation + 10); deltaX = _x - _root.ship._x; deltaY = _y - _root.ship._y; angle = -Math.atan2(deltaX, deltaY); ySpeed = speed * Math.cos(angle); xSpeed = speed * Math.sin(angle); _y = (_y - ySpeed); _x = (_x + xSpeed); _root.actions.collisions(this); } }
Instance of Symbol 117 MovieClip "actions" in Frame 2
onClipEvent (load) { function initiate() { _root.startButton.enabled = false; _root.ship._rotation = 0; if (started) { buttonFadeOut = true; } i = cellNumber; while (i > 0) { removeMovieClip("_root.cell" + i); i--; } death(_root.amoeba); score = 0; level = 2; lives = 3; dead = false; fadeIn = true; } function wraparound(whichObject) { with (whichObject) { delta_x = _root.circle._x - _x; delta_y = _root.circle._y - _y; angle = Math.atan2(delta_y, delta_x); distance = Math.sqrt((delta_x * delta_x) + (delta_y * delta_y)); if (distance > radius2) { _x = (Math.cos(angle) * radius2) + centerx; _y = (Math.sin(angle) * radius2) + centery; } } } function collisions(whichObject) { a = 1; while (a <= 3) { if (whichObject.hitTest(this["tipx" + a], this["tipy" + a], true)) { if (_root.ship._alpha > 90) { whichObject.hit(0); } death(_root.ship); } a++; } b = 1000; while (b <= 5000) { if (whichObject.hitTest(_root["newShot" + b]._x, _root["newShot" + b]._y, true) && (_root["newShot" + b]._visible)) { whichObject.hit(_root["newShot" + b]); } b = b + 1000; } } function explosion(whichObject) { duplicateMovieClip (_root.explosion, "explosion" + explosionNumber, explosionNumber); _root["explosion" + explosionNumber]._x = whichObject._x; _root["explosion" + explosionNumber]._y = whichObject._y; explosionNumber++; } function death(whichShip) { if ((lives != 0) && (whichship._alpha > 90)) { explosion(whichShip); } if (whichShip == _root.ship) { deathTime = getTimer(); if (!dead) { lives--; } dead = true; thrustSound.stop(); soundStartable = true; whichShip._alpha = 0; _root.shipShadow._alpha = 0; whichShip._x = 302; whichShip._y = 295; } else { whichship.appearTime = getTimer(); whichship.pauseTime = (Math.random() * 7000) + 7000; whichship._visible = 0; } } _root.explosion.stop(); _root.cell._visible = 0; _root.ship._alpha = 0; _root.amoeba._visible = 0; _root.circle.ring._visible = 0; _root.ship.body.body2._visible = 0; _root.mask.label._visible = 0; _root.texts.whiteText._visible = 0; _root.startButton.blackButton._visible = 0; _root.shipShadow._alpha = 0; _root.circle.swapdepths(4000000); _root.mask.swapdepths(4000001); _root.texts.swapdepths(4000002); _root.startButton.swapdepths(4000003); radius = _root.ship.body._height / 2; radius2 = _root.circle._width / 2; centerx = _root.circle._x; centery = _root.circle._y; bonusLifeScore = 2000; score = 0; lives = 0; level = 6; totalcells = 0; cellNumber = 1; explosionNumber = 1000000 /* 0x0F4240 */; shotNumber = 1000; totalShots = 1; maxShots = 4; shotSpeed = 17; thrust = 1; decay = 0.98; maxSpeed = 15; shotSound = new Sound(this); shotSound.attachSound("shoot"); thrustSound = new Sound(_root.ship); thrustSound.attachSound("thrust"); soundStartabe = true; _root.mask.backgroundButton.onRelease = function () { _root.circle.drop._visible = !_root.circle.drop._visible; _root.circle.ring._visible = !_root.circle.ring._visible; _root.mask.dropShadow._visible = !_root.mask.dropShadow._visible; _root.background._visible = !_root.background._visible; _root.ship.body.body2._visible = !_root.ship.body.body2._visible; _root.mask.label._visible = !_root.mask.label._visible; _root.mask.maskedArea._visible = !_root.mask.maskedArea._visible; _root.texts.whiteText._visible = !_root.texts.whiteText._visible; _root.startButton.blackButton._visible = !_root.startButton.blackButton._visible; _root.startButton.colorButton._visible = !_root.startButton.colorButton._visible; }; _root.mask.qualityButton.onRelease = function () { toggleHighQuality(); }; } onClipEvent (enterFrame) { _root.startButton.onRelease = initiate; if ((totalcells == 0) && (started)) { level++; cellNumber = 1; } if (cellNumber <= level) { duplicateMovieClip (_root.paramecium, "cell" + cellNumber, cellNumber); cellNumber++; started = true; } if (dead && (lives > 0)) { pauseTime = getTimer() - deathTime; if ((pauseTime > 3000) && (lives > 0)) { dead = false; fadeIn = true; } } if (score > bonusLifeScore) { bonusLifeScore = bonusLifeScore + 2000; lives = lives + 1; } with (_root.startButton) { if (lives == 0) { _root.startButton.enabled = true; if (_alpha < 10) { buttonText = "RESTART"; } if (_alpha < 100) { _alpha = _alpha + 10; } } if ((_alpha > 0) && (buttonFadeOut)) { _alpha = _alpha - 10; } else { buttonFadeOut = false; } } wrapAround(_root.ship); if (Key.isDown(32)) { if (((!spacekeydown) && (!dead)) && (totalshots <= maxshots)) { duplicateMovieClip (_root.shot, "newshot" + shotnumber, shotnumber); shotsound.start(); shotnumber = shotnumber + 1000; if ((shotnumber / 1000) > maxshots) { shotnumber = 1000; } shotyspeed = shotspeed * yThrustPercent; shotxspeed = shotspeed * xThrustPercent; spacekeydown = true; } } else { spacekeydown = false; } with (_root.ship) { if ((_alpha < 100) && (fadeIn)) { flames._visible = 0; _alpha = _alpha + 10; _root.shipShadow._alpha = _root.shipShadow._alpha + 10; } else { fadeIn = false; } if (!dead) { if (Key.isDown(38)) { xSpeed = xSpeed + (thrust * xThrustPercent); ySpeed = ySpeed + (thrust * yThrustPercent); flames._visible = 1; if (soundStartable) { thrustSound.start(0, 99999999); soundStartable = false; } } else { xSpeed = xSpeed * decay; ySpeed = ySpeed * decay; flames._visible = 0; thrustSound.stop(); soundStartable = true; } if (Key.isDown(39)) { _rotation = _rotation + 10; } if (Key.isDown(37)) { _rotation = _rotation - 10; } } xThrustPercent = Math.sin(_rotation * (Math.PI/180)); yThrustPercent = Math.cos(_rotation * (Math.PI/180)); speed = Math.sqrt((xSpeed * xSpeed) + (ySpeed * ySpeed)); if (speed > maxSpeed) { xSpeed = xSpeed * (maxSpeed / speed); ySpeed = ySpeed * (maxSpeed / speed); } _y = _y - ySpeed; _x = _x + xSpeed; if (dead) { xSpeed = 0; ySpeed = 0; } angle1 = (_rotation - 90) * (Math.PI/180); tipy1 = (Math.sin(angle1) * radius) + _y; tipx1 = (Math.cos(angle1) * radius) + _x; angle2 = (_rotation + 57) * (Math.PI/180); tipy2 = (Math.sin(angle2) * radius) + _y; tipx2 = (Math.cos(angle2) * radius) + _x; angle3 = (_rotation - 237) * (Math.PI/180); tipy3 = (Math.sin(angle3) * radius) + _y; tipx3 = (Math.cos(angle3) * radius) + _x; _root.shipShadow._x = _x + 4; _root.shipShadow._y = _y + 4; _root.shipShadow._rotation = _rotation; } }
Frame 4
stop();
Frame 5
stop();
Frame 6
stop();
Frame 12
stop();
Frame 13
stop();
Frame 14
stop();
Frame 15
stop();
Frame 16
stop(); stop();
Frame 17
stop();
Frame 18
stop();
Frame 19
stop();
Instance of Symbol 289 MovieClip in Frame 19
onClipEvent (load) { startDrag (""); } onClipEvent (load) { Mouse.hide(); }
Symbol 12 Button
on (release) { gotoAndPlay (2); }
Symbol 15 Button
on (release) { gotoAndPlay (5); }
Symbol 22 Button
on (release) { gotoAndPlay (4); }
Symbol 30 Button
on (release) { gotoAndPlay (12); }
Symbol 32 Button
on (release) { gotoAndPlay (6); }
Symbol 35 Button
on (release) { gotoAndPlay (18); }
Symbol 37 Button
on (release) { gotoAndPlay (19); }
Symbol 63 MovieClip Frame 10
stop(); removeMovieClip(this);
Symbol 73 MovieClip Frame 1
stop();
Symbol 134 Button
on (release) { gotoAndPlay (1); }
Symbol 137 Button
on (release) { gotoAndPlay (1); }
Symbol 155 Button
on (press, release) { startDrag ("/top4"); } on (release) { stopDrag(); }
Symbol 172 Button
on (press) { startDrag ("/top6"); } on (release) { stopDrag(); }
Symbol 175 Button
on (press) { startDrag ("/greentop"); } on (release) { stopDrag(); }
Symbol 178 Button
on (press) { startDrag ("/bluetop"); } on (release) { stopDrag(); }
Symbol 181 Button
on (press) { startDrag ("/yellowtop"); } on (release) { stopDrag(); }
Symbol 184 Button
on (press) { startDrag ("/panties2"); } on (release) { stopDrag(); }
Symbol 187 Button
on (press) { startDrag ("/panties4"); } on (release) { stopDrag(); }
Symbol 190 Button
on (press) { startDrag ("/panties6"); } on (release) { stopDrag(); }
Symbol 193 Button
on (press) { startDrag ("/panties8"); } on (release) { stopDrag(); }
Symbol 196 Button
on (press) { startDrag ("/white2"); } on (release) { stopDrag(); }
Symbol 199 Button
on (press) { startDrag ("/pantiesdg"); } on (release) { stopDrag(); }
Symbol 202 Button
on (press) { startDrag ("/pantiesdb"); } on (release) { stopDrag(); }
Symbol 205 Button
on (press) { startDrag ("/pantiesdr"); } on (release) { stopDrag(); }
Symbol 209 Button
on (press) { startDrag ("/shortsw"); } on (release) { stopDrag(); }
Symbol 212 Button
on (press) { startDrag ("/shortsr"); } on (release) { stopDrag(); }
Symbol 215 Button
on (press) { startDrag ("/open2"); } on (release) { stopDrag(); }
Symbol 218 Button
on (press) { startDrag ("/openr"); } on (release) { stopDrag(); }
Symbol 221 Button
on (press) { startDrag ("/openg"); } on (release) { stopDrag(); }
Symbol 225 Button
on (release) { gotoAndPlay (1); }
Symbol 227 Button
on (press) { startDrag ("/suitw"); } on (release) { stopDrag(); }
Symbol 230 Button
on (press) { startDrag ("/suitr"); } on (release) { stopDrag(); }
Symbol 233 Button
on (press) { startDrag ("/suitb"); } on (release) { stopDrag(); }
Symbol 247 Button
on (release) { gotoAndPlay (16); }
Symbol 249 Button
on (release) { gotoAndPlay (15); }
Symbol 251 Button
on (release) { gotoAndPlay (14); }
Symbol 253 Button
on (release) { gotoAndPlay (13); }
Symbol 260 Button
on (release) { gotoAndPlay (17); }
Symbol 265 Button
on (release) { gotoAndPlay (12); }
Symbol 272 Button
on (press) { startDrag ("/topred"); } on (release) { stopDrag(); }
Symbol 280 Button
on (press) { startDrag ("/wet_top"); } on (release) { stopDrag(); }
Symbol 283 Button
on (press) { startDrag ("/bottomred"); } on (release) { stopDrag(); }
Symbol 286 Button
on (release) { gotoAndPlay (1); }

Library Items

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

Instance Names

"background"Frame 2Symbol 41 MovieClip
"shot"Frame 2Symbol 43 MovieClip
"amoebaShot"Frame 2Symbol 43 MovieClip
"glob"Frame 2Symbol 45 MovieClip
"amoeba"Frame 2Symbol 51 MovieClip
"paramecium"Frame 2Symbol 53 MovieClip
"shipShadow"Frame 2Symbol 55 MovieClip
"ship"Frame 2Symbol 61 MovieClip
"explosion"Frame 2Symbol 63 MovieClip
"circle"Frame 2Symbol 66 MovieClip
"startButton"Frame 2Symbol 83 MovieClip
"mask"Frame 2Symbol 102 MovieClip
"texts"Frame 2Symbol 112 MovieClip
"seeker"Frame 2Symbol 114 MovieClip
"actions"Frame 2Symbol 117 MovieClip
"car"Frame 6Symbol 152 MovieClip
"top4"Frame 6Symbol 156 MovieClip
"top6"Frame 6Symbol 173 MovieClip
"greentop"Frame 6Symbol 176 MovieClip
"bluetop"Frame 6Symbol 179 MovieClip
"yellowtop"Frame 6Symbol 182 MovieClip
"panties2"Frame 6Symbol 185 MovieClip
"panties4"Frame 6Symbol 188 MovieClip
"panties6"Frame 6Symbol 191 MovieClip
"panties8"Frame 6Symbol 194 MovieClip
"white2"Frame 6Symbol 197 MovieClip
"pantiesdg"Frame 6Symbol 200 MovieClip
"pantiesdb"Frame 6Symbol 203 MovieClip
"pantiesdr"Frame 6Symbol 206 MovieClip
"shortsw"Frame 6Symbol 210 MovieClip
"shortsr"Frame 6Symbol 213 MovieClip
"open2"Frame 6Symbol 216 MovieClip
"openr"Frame 6Symbol 219 MovieClip
"openg"Frame 6Symbol 222 MovieClip
"suitw"Frame 6Symbol 228 MovieClip
"suitr"Frame 6Symbol 231 MovieClip
"suitb"Frame 6Symbol 234 MovieClip
"topred"Frame 18Symbol 273 MovieClip
"wet_top"Frame 18Symbol 281 MovieClip
"bottomred"Frame 18Symbol 284 MovieClip
"flames"Symbol 61 MovieClip Frame 1Symbol 57 MovieClip
"circle"Symbol 66 MovieClip Frame 1Symbol 65 MovieClip
"ring"Symbol 66 MovieClip Frame 1Symbol 65 MovieClip
"colorButton"Symbol 83 MovieClip Frame 1Symbol 79 Button
"blackButton"Symbol 83 MovieClip Frame 1Symbol 82 MovieClip
"maskedArea"Symbol 102 MovieClip Frame 1Symbol 86 MovieClip
"backgroundButton"Symbol 102 MovieClip Frame 1Symbol 95 Button
"qualityButton"Symbol 102 MovieClip Frame 1Symbol 95 Button
"dropShadow"Symbol 102 MovieClip Frame 1Symbol 97 MovieClip
"label"Symbol 102 MovieClip Frame 1Symbol 101 MovieClip
"whiteText"Symbol 112 MovieClip Frame 1Symbol 111 MovieClip

Dynamic Text Variables

_root.actions.buttonTextSymbol 76 EditableText"START"
_root.actions.buttonTextSymbol 78 EditableText"START"
_root.actions.buttonTextSymbol 81 EditableText"START"
_root.actions.scoreSymbol 103 EditableText"0"
_root.actions.livesSymbol 105 EditableText"0"
_root.actions.scoreSymbol 107 EditableText"0"
_root.actions.livesSymbol 109 EditableText"0"




http://swfchan.com/20/98973/info.shtml
Created: 22/3 -2019 06:05:35 Last modified: 22/3 -2019 06:05:35 Server time: 03/05 -2024 00:44:01