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

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

Congestion Chaos.swf

This is the info page for
Flash #22243

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


Text
0

score:

attentionometer

Drive your van into the flashing circles to complete deliveries and increase your score.
Avoid cameras and other cars to keep your attentionometer down - too much attention
and your van will be impounded and crushed!

© 2003 4T2 Multimedia Ltd - www.4T2.co.uk

Delivery
Complete!

CONGESTION CHAOS

Play Now >

PLAY NOW >

Drive your van
around the city of
London (using the
cursor keys) - make
as many deliveries
as you can while
avoiding attention
from the cameras and
crashes!

GAME OVER - you raised too much attention!
Complete the form below to add your score to the highscore table:

Name:

Email:

Score:

Submit Score >

Submit Score >

Submit Score >

< Play Again

< Play Again

SCORE SUBMITTED

High Scores >

High Scores >

ActionScript [AS1/AS2]

Frame 1
fscommand ("allowscale", "false"); fscommand ("showmenu", "false"); stop();
Frame 2
function rotateRadar(radar) { if (radar.direction == null) { radar.direction = -1; radar.speed = random(5) + 1; radar.startRot = radar._rotation; } if ((radar.direction == 1) && (90 < radar.rot)) { radar.direction = -1; radar.rot = 90; } else if ((radar.direction == -1) && (radar.rot < -90)) { radar.direction = 1; radar.rot = -90; } radar.rot = radar.rot + (radar.direction * radar.speed); radar._rotation = radar.rot + radar.startRot; } function doLoad() { init(); } function init() { playGame = true; submitscore.gotoAndStop(1); trafficDensity = 20; keyCodes = new array(); cars = new array(); zonesX = new array(325, 455, 470, 10, 545, 155, 250, 380, 177, 190, 245, 450, 16, 42, 160, 375, 336); zonesY = new array(285, 310, 115, 10, 120, 310, 365, 390, 90, 150, 45, 190, 338, 152, 230, 227, 108); screenX = 550; screenY = 400; screenX2 = Math.ceil(screenX / 2); screenY2 = Math.ceil(screenY / 2); _root.attachMovie("arena", "arena", 100); arena._x = screenX2; arena._y = screenY2; _root.attachMovie("surround", "surround", 1000); surround._x = screenX2; surround._y = screenY2; arena.attachMovie("zone", "zone", 10000); cars.push(new car("player1", 38, 40, 37, 39, 2, 1000, 280, 280, 1)); totalPlayers = cars.length; newZone(); } function doEnterFrame() { if (playGame == true) { if (0 < zoneTimer) { zoneTimer = zoneTimer * 0.995; } zoneTimer = Math.ceil(zoneTimer); moveCars(); if (random(trafficDensity) < 1) { newTraffic(); } } else if (submitscore._currentFrame == 1) { submitscore.gotoAndStop(2); arena.removeMovieClip(); } } function doKeyDown() { K = Key.getCode(); keyCodes[K] = 1; } function doKeyUp() { K = Key.getCode(); keyCodes[K] = 0; } function trig(angle) { calc = Math.floor(angle / 360); angle = angle - (calc * 360); if ((angle >= 0) && (90 >= angle)) { tx = Math.cos((Math.PI/180) * (90 - angle)); ty = Math.sin((Math.PI/180) * (90 - angle)); } else if ((90 < angle) and (180 >= angle)) { tx = Math.cos((Math.PI/180) * (angle - 90)); ty = -Math.sin((Math.PI/180) * (angle - 90)); } else if ((180 < angle) and (270 >= angle)) { tx = -Math.sin((Math.PI/180) * (angle - 180)); ty = -Math.cos((Math.PI/180) * (angle - 180)); } else if ((270 < angle) and (360 >= angle)) { tx = -Math.cos((Math.PI/180) * (angle - 270)); ty = Math.sin((Math.PI/180) * (angle - 270)); } } function attachMC(linkName, newName, depth, x, y, rotation, goto) { _root.arena.attachMovie(linkName, newName, depth); _root.arena[newName]._x = x - _root.screenX2; _root.arena[newName]._y = y - _root.screenY2; _root.arena[newName]._rotation = rotation; if (0 < goto) { _root.arena[newName].gotoAndStop(goto); } } function car(name, upKey, downKey, leftKey, rightKey, color, depth, x, y, number) { this.number = number; this.name = name; this.upKey = upKey; this.downKey = downKey; this.leftKey = leftKey; this.rightKey = rightKey; this.color = color; this.depth = depth; this.x = x; this.y = y; this.angle = 30; this.pangle = this.angle; this.dx = 0; this.dy = 0; this.accelerator = 2; this.friction = 0.7; this.steering = 10; this.brakes = this.accelerator * 0.3; this.speed = 0; this.tyres = 0; this.attention = 0; this.timer = 0; this.topSpeed = (this.accelerator / (1 - this.friction)) - this.accelerator; this.score = 0; this.scoreOut = 0; this.standstill = 0; attachMC("car", name, this.depth, this.x, this.y, 0, this.color); attachMC("hud", "hud" + this.number, this.depth + 1000, (screenX + 45) - (this.number * 125), screenY - 15, 0, 0); arena["hud" + this.number].nametag = this.name; arena["hud" + this.number].score = this.scoreOut; } function moveCars() { i = 0; while (i < totalPlayers) { thisCar = cars[i]; if (thisCar.scoreOut < thisCar.score) { thisCar.scoreOut = thisCar.scoreOut + 10; } tx = 0; ty = 0; thisCar.speed = Math.sqrt((thisCar.dx * thisCar.dx) + (thisCar.dy * thisCar.dy)); if (keyCodes[thisCar.leftKey] == 1) { thisCar.angle = thisCar.angle - (thisCar.steering * ((keyCodes[thisCar.downKey] * -2) + 1)); } if (keyCodes[thisCar.rightKey] == 1) { thisCar.angle = thisCar.angle + (thisCar.steering * ((keyCodes[thisCar.downKey] * -2) + 1)); } if (keyCodes[thisCar.downKey] == 1) { trig(thisCar.angle + 180); thisCar.dx = thisCar.dx + (tx * thisCar.brakes); thisCar.dy = thisCar.dy + (ty * thisCar.brakes); } if (keyCodes[thisCar.upKey] == 1) { trig(thisCar.angle); thisCar.dx = thisCar.dx + (tx * thisCar.accelerator); thisCar.dy = thisCar.dy + (ty * thisCar.accelerator); } thisCar.dx = thisCar.dx * thisCar.friction; thisCar.dy = thisCar.dy * thisCar.friction; thisCar.x = thisCar.x + thisCar.dx; thisCar.y = thisCar.y - thisCar.dy; if (screenX < thisCar.x) { thisCar.x = thisCar.x - screenX; } if (thisCar.x < 0) { thisCar.x = thisCar.x + screenX; } if (screenY < thisCar.y) { thisCar.y = thisCar.y - screenY; } if (thisCar.y < 0) { thisCar.y = thisCar.y + screenY; } if (((thisCar.angle != thisCar.pangle) && ((thisCar.topSpeed * 0.5) < thisCar.speed)) || ((keyCodes[thisCar.upKey] == 1) && (thisCar.speed < (thisCar.topSpeed * 0.666666666666667)))) { thisCar.angle = thisCar.angle + (random(thisCar.tyres) - (thisCar.tyres / 2)); if (Math.sqrt(((thisCar.x - thisCar.px) * (thisCar.x - thisCar.px)) + ((thisCar.y - thisCar.py) * (thisCar.y - thisCar.py))) < thisCar.topSpeed) { k = 1; while (100 >= k) { skids++; if (400 < skids) { skids = 1; } tRatio = k / 100; pRatio = 1 - tRatio; skidX = (thisCar.x * pRatio) + (thisCar.px * tRatio); skidY = (thisCar.y * pRatio) + (thisCar.py * tRatio); skidAngle = (thisCar.angle * pRatio) + (thisCar.pangle * tRatio); attachMC("skid", "skid" + skids, skids, skidX, skidY, skidAngle, 0); k = k + 20; } } if ((thisCar.topSpeed * 0.666666666666667) < thisCar.speed) { skidon = true; } } collision = false; k = 0; while (k < totalPlayers) { if (i != k) { tempDX = thisCar.x - cars[k].x; tempDY = thisCar.y - cars[k].y; tempDIST = Math.sqrt((tempDX * tempDX) + (tempDY * tempDY)); if (tempDIST < 8) { collision = true; tempDX = thisCar.dx; tempDY = thisCar.dy; thisCar.dx = 2 * cars[k].dx; thisCar.dy = 2 * cars[k].dx; cars[k].dx = 2 * tempDX; cars[k].dy = 2 * tempDY; } } k++; } if (_root.arena.hard.hitTest(thisCar.x, thisCar.y, true)) { collision = true; } if (_root.arena.traffic.hitTest(thisCar.x, thisCar.y, true)) { collision = true; thisCar.attention = thisCar.attention + 2; } if (collision == true) { thisCar.dx = -thisCar.dx; thisCar.dy = -thisCar.dy; thisCar.x = thisCar.px; thisCar.y = thisCar.py; soundFX.gotoAndStop(random(4) + 2); } if (_root.arena.radars.hitTest(thisCar.x, thisCar.y, true)) { if ((!arena.flash) || (arena.flash._currentFrame == 20)) { attachMC("flash", "flash", 999999, screenX2, screenY2, 0, 0); thisCar.attention = thisCar.attention + 20; } } tempDX = zonesX[currentZone] - thisCar.x; tempDY = zonesY[currentZone] - thisCar.y; zoneDist = Math.sqrt((tempDX * tempDX) + (tempDY * tempDY)); if ((zoneDist < 25) && (thisCar.speed < 0.5)) { thisCar.score = thisCar.score + (zoneTimer - 99); attachMC("deliveryzoom", "deliveryzoom", 7500, thisCar.x, thisCar.y, 0, 0); thisCar.attention = thisCar.attention - 5; newZone(); } if (thisCar.attention < 0) { thisCar.attention = 0; } if (100 < thisCar.attention) { thisCar.attention = 100; _root.score = thisCar.score; playGame = false; } placeMC(thisCar.name, thisCar.x, thisCar.y, thisCar.angle, 100); arena["hud" + thisCar.number].attention._xscale = thisCar.attention; arena["hud" + thisCar.number].timer._xscale = thisCar.timer; arena["hud" + thisCar.number].score = thisCar.scoreOut; if (((thisCar.x == thisCar.px) && (thisCar.y == thisCar.py)) && (thisCar.angle == thisCar.pangle)) { thisCar.standstill = thisCar.standstill + 10; } else { thisCar.standstill = thisCar.standstill - 20; } if (100 < thisCar.standstill) { thisCar.standstill = 100; } if (thisCar.standstill < 0) { thisCar.standstill = 0; } arena[thisCar.name].locator._alpha = thisCar.standstill; arena[thisCar.name].locator._rotation = -thisCar.angle; thisCar.pangle = thisCar.angle; thisCar.px = thisCar.x; thisCar.py = thisCar.y; i++; } skid.setVolume(0); if (skidon == true) { skid.setVolume(75); } skidon = false; } function placeMC(name, x, y, rotation, alpha) { _root.xtemp = x - _root.screenX2; _root.ytemp = y - _root.screenY2; _root.rotationtemp = rotation; _root.alphatemp = alpha; tellTarget (_root.arena[name]) { _x = _root.xtemp; _y = _root.ytemp; _rotation = _root.rotationtemp; _alpha = _root.alphatemp; }; } function newZone() { if (5 < trafficDensity) { trafficDensity--; } currentZone = random(zonesX.length); arena.zone._x = zonesX[currentZone] - screenX2; arena.zone._y = zonesY[currentZone] - screenY2; zoneTimer = 1000; arena.zone.gotoAndPlay(1); } function newTraffic() { totalTraffic = 6; congestion++; if (100 < congestion) { congestion = 1; } arena.traffic.attachMovie("traffic" + (random(totalTraffic) + 1), "traffic" + congestion, congestion); } stop();
Instance of Symbol 114 MovieClip in Frame 2
onClipEvent (load) { _root.doLoad(); } onClipEvent (enterFrame) { _root.doEnterFrame(); } onClipEvent (keyDown) { _root.doKeyDown(); } onClipEvent (keyUp) { _root.doKeyUp(); }
Symbol 10 MovieClip [target] Frame 30
Symbol 10 MovieClip [target] Frame 31
stop();
Symbol 16 MovieClip [zone] Frame 51
gotoAndPlay (30);
Symbol 17 MovieClip [target] Frame 30
Symbol 17 MovieClip [target] Frame 31
stop();
Instance of Symbol 33 MovieClip in Symbol 34 MovieClip Frame 1
onClipEvent (enterFrame) { _root.rotateRadar(this); }
Instance of Symbol 33 MovieClip in Symbol 34 MovieClip Frame 1
onClipEvent (enterFrame) { _root.rotateRadar(this); }
Instance of Symbol 33 MovieClip in Symbol 34 MovieClip Frame 1
onClipEvent (enterFrame) { _root.rotateRadar(this); }
Instance of Symbol 33 MovieClip in Symbol 34 MovieClip Frame 1
onClipEvent (enterFrame) { _root.rotateRadar(this); }
Instance of Symbol 33 MovieClip in Symbol 34 MovieClip Frame 1
onClipEvent (enterFrame) { _root.rotateRadar(this); }
Instance of Symbol 33 MovieClip in Symbol 34 MovieClip Frame 1
onClipEvent (enterFrame) { _root.rotateRadar(this); }
Instance of Symbol 33 MovieClip in Symbol 34 MovieClip Frame 1
onClipEvent (enterFrame) { _root.rotateRadar(this); }
Instance of Symbol 33 MovieClip in Symbol 34 MovieClip Frame 1
onClipEvent (enterFrame) { _root.rotateRadar(this); }
Symbol 38 MovieClip [skid] Frame 41
this.removeMovieClip();
Instance of Symbol 63 MovieClip in Symbol 65 MovieClip [traffic2] Frame 1
onClipEvent (load) { gotoAndStop(random(6) + 1); }
Instance of Symbol 64 MovieClip in Symbol 65 MovieClip [traffic2] Frame 239
onClipEvent (load) { gotoAndStop(random(4) + 1); }
Symbol 65 MovieClip [traffic2] Frame 240
this.removeMovieClip();
Instance of Symbol 63 MovieClip in Symbol 66 MovieClip [traffic3] Frame 1
onClipEvent (load) { gotoAndStop(random(6) + 1); }
Instance of Symbol 64 MovieClip in Symbol 66 MovieClip [traffic3] Frame 321
onClipEvent (load) { gotoAndStop(random(4) + 1); }
Symbol 66 MovieClip [traffic3] Frame 322
this.removeMovieClip();
Instance of Symbol 63 MovieClip in Symbol 67 MovieClip [traffic4] Frame 1
onClipEvent (load) { gotoAndStop(random(6) + 1); }
Instance of Symbol 64 MovieClip in Symbol 67 MovieClip [traffic4] Frame 294
onClipEvent (load) { gotoAndStop(random(4) + 1); }
Symbol 67 MovieClip [traffic4] Frame 295
this.removeMovieClip();
Instance of Symbol 63 MovieClip in Symbol 68 MovieClip [traffic5] Frame 1
onClipEvent (load) { gotoAndStop(random(6) + 1); }
Instance of Symbol 64 MovieClip in Symbol 68 MovieClip [traffic5] Frame 239
onClipEvent (load) { gotoAndStop(random(4) + 1); }
Symbol 68 MovieClip [traffic5] Frame 240
this.removeMovieClip();
Instance of Symbol 63 MovieClip in Symbol 69 MovieClip [traffic6] Frame 1
onClipEvent (load) { gotoAndStop(random(6) + 1); }
Instance of Symbol 64 MovieClip in Symbol 69 MovieClip [traffic6] Frame 239
onClipEvent (load) { gotoAndStop(random(4) + 1); }
Symbol 69 MovieClip [traffic6] Frame 240
this.removeMovieClip();
Instance of Symbol 63 MovieClip in Symbol 70 MovieClip [traffic1] Frame 1
onClipEvent (load) { gotoAndStop(random(6) + 1); }
Instance of Symbol 64 MovieClip in Symbol 70 MovieClip [traffic1] Frame 239
onClipEvent (load) { gotoAndStop(random(4) + 1); }
Symbol 70 MovieClip [traffic1] Frame 240
this.removeMovieClip();
Symbol 73 MovieClip [flash] Frame 20
stop();
Symbol 75 MovieClip [deliveryzoom] Frame 21
this.removeMovieClip();
Symbol 86 Button
on (release) { _root.play(); }
Symbol 102 Button
on (press) { loadVariables ((((("/congestscore.php?act=new&name=" + escape(_root.name)) + "&email=") + escape(_root.email)) + "&score=") + escape(_root.score), this); gotoAndStop (10); }
Symbol 105 Button
on (release) { _root.init(); }
Symbol 111 Button
on (press) { getURL ("/congestscore.php?email=" + escape(_root.email), "_blank"); }
Symbol 112 MovieClip Frame 1
stop();
Symbol 112 MovieClip Frame 2
stop();
Symbol 112 MovieClip Frame 10
stop();
Symbol 115 MovieClip Frame 1
stop();
Symbol 115 MovieClip Frame 2
stop();
Symbol 115 MovieClip Frame 3
stop();
Symbol 115 MovieClip Frame 4
stop();
Symbol 115 MovieClip Frame 5
stop();

Library Items

Symbol 1 Sound [skid_1]
Symbol 2 Sound [fastest_lap]Used by:16
Symbol 3 Sound [crash_2]Used by:115
Symbol 4 Sound [crash_1]Used by:115
Symbol 5 Sound [crash_3]Used by:115
Symbol 6 Sound [crash_4]Used by:112 115
Symbol 7 GraphicUsed by:8 9
Symbol 8 MovieClipUses:7Used by:10 17
Symbol 9 MovieClipUses:7Used by:10 17
Symbol 10 MovieClip [target]Uses:8 9Used by:16
Symbol 11 GraphicUsed by:12
Symbol 12 MovieClipUses:11Used by:14
Symbol 13 GraphicUsed by:14
Symbol 14 MovieClipUses:12 13Used by:15
Symbol 15 MovieClipUses:14Used by:16
Symbol 16 MovieClip [zone]Uses:10 2 15
Symbol 17 MovieClip [target]Uses:8 9
Symbol 18 GraphicUsed by:21
Symbol 19 GraphicUsed by:20
Symbol 20 MovieClipUses:19Used by:21
Symbol 21 MovieClipUses:18 20Used by:24
Symbol 22 BitmapUsed by:23
Symbol 23 GraphicUses:22Used by:24
Symbol 24 MovieClip [car]Uses:21 23
Symbol 25 GraphicUsed by:35
Symbol 26 GraphicUsed by:27
Symbol 27 MovieClipUses:26Used by:35
Symbol 28 BitmapUsed by:29
Symbol 29 GraphicUses:28Used by:35
Symbol 30 MovieClipUsed by:35
Symbol 31 BitmapUsed by:32
Symbol 32 GraphicUses:31Used by:33
Symbol 33 MovieClipUses:32Used by:34
Symbol 34 MovieClipUses:33Used by:35
Symbol 35 MovieClip [arena]Uses:25 27 29 30 34
Symbol 36 GraphicUsed by:38
Symbol 37 GraphicUsed by:38
Symbol 38 MovieClip [skid]Uses:36 37
Symbol 39 GraphicUsed by:46
Symbol 40 GraphicUsed by:41
Symbol 41 MovieClipUses:40Used by:46
Symbol 42 FontUsed by:43 44 45 48 49 74 91 92 93 94 95 96 97 98 99 103 104 107 108 109 110
Symbol 43 EditableTextUses:42Used by:46
Symbol 44 TextUses:42Used by:46
Symbol 45 TextUses:42Used by:46
Symbol 46 MovieClip [hud]Uses:39 41 43 44 45
Symbol 47 GraphicUsed by:50 76
Symbol 48 TextUses:42Used by:50 76
Symbol 49 TextUses:42Used by:50 76
Symbol 50 MovieClip [surround]Uses:47 48 49
Symbol 51 BitmapUsed by:52
Symbol 52 GraphicUses:51Used by:63 64
Symbol 53 BitmapUsed by:54
Symbol 54 GraphicUses:53Used by:63 64
Symbol 55 BitmapUsed by:56
Symbol 56 GraphicUses:55Used by:63 64
Symbol 57 BitmapUsed by:58
Symbol 58 GraphicUses:57Used by:63 64
Symbol 59 BitmapUsed by:60
Symbol 60 GraphicUses:59Used by:63 64
Symbol 61 BitmapUsed by:62
Symbol 62 GraphicUses:61Used by:63 64
Symbol 63 MovieClipUses:52 54 56 58 60 62Used by:65 66 67 68 69 70
Symbol 64 MovieClipUses:52 54 56 58 60 62Used by:65 66 67 68 69 70
Symbol 65 MovieClip [traffic2]Uses:63 64
Symbol 66 MovieClip [traffic3]Uses:63 64
Symbol 67 MovieClip [traffic4]Uses:63 64
Symbol 68 MovieClip [traffic5]Uses:63 64
Symbol 69 MovieClip [traffic6]Uses:63 64
Symbol 70 MovieClip [traffic1]Uses:63 64
Symbol 71 GraphicUsed by:73  Timeline
Symbol 72 SoundUsed by:73
Symbol 73 MovieClip [flash]Uses:71 72
Symbol 74 TextUses:42Used by:75
Symbol 75 MovieClip [deliveryzoom]Uses:74
Symbol 76 MovieClip [surround]Uses:47 48 49Used by:Timeline
Symbol 77 BitmapUsed by:78
Symbol 78 GraphicUses:77Used by:88
Symbol 79 FontUsed by:80 83 85 87
Symbol 80 TextUses:79Used by:88
Symbol 81 BitmapUsed by:82
Symbol 82 GraphicUses:81Used by:88
Symbol 83 TextUses:79Used by:86
Symbol 84 GraphicUsed by:86
Symbol 85 TextUses:79Used by:86
Symbol 86 ButtonUses:83 84 85Used by:88
Symbol 87 TextUses:79Used by:88
Symbol 88 MovieClipUses:78 80 82 86 87Used by:Timeline
Symbol 89 GraphicUsed by:102 105 111  Timeline
Symbol 90 SoundUsed by:112
Symbol 91 TextUses:42Used by:112
Symbol 92 TextUses:42Used by:112
Symbol 93 TextUses:42Used by:112
Symbol 94 EditableTextUses:42Used by:112
Symbol 95 EditableTextUses:42Used by:112
Symbol 96 EditableTextUses:42Used by:112
Symbol 97 TextUses:42Used by:112
Symbol 98 TextUses:42Used by:102
Symbol 99 TextUses:42Used by:102
Symbol 100 FontUsed by:101
Symbol 101 TextUses:100Used by:102 105 111
Symbol 102 ButtonUses:98 99 89 101Used by:112
Symbol 103 TextUses:42Used by:105
Symbol 104 TextUses:42Used by:105
Symbol 105 ButtonUses:103 104 89 101Used by:112
Symbol 106 SoundUsed by:112
Symbol 107 TextUses:42Used by:112
Symbol 108 EditableTextUses:42Used by:112
Symbol 109 TextUses:42Used by:111
Symbol 110 TextUses:42Used by:111
Symbol 111 ButtonUses:109 110 89 101Used by:112
Symbol 112 MovieClipUses:90 91 92 93 94 95 96 97 102 105 106 107 108 111 6Used by:Timeline
Symbol 113 GraphicUsed by:114
Symbol 114 MovieClipUses:113Used by:Timeline
Symbol 115 MovieClipUses:5 6 4 3Used by:Timeline
Symbol 116 SoundUsed by:Timeline

Instance Names

"submitscore"Frame 2Symbol 112 MovieClip
"soundFX"Frame 2Symbol 115 MovieClip
"locator"Symbol 24 MovieClip [car] Frame 1Symbol 21 MovieClip
"hard"Symbol 35 MovieClip [arena] Frame 1Symbol 27 MovieClip
"traffic"Symbol 35 MovieClip [arena] Frame 1Symbol 30 MovieClip
"radars"Symbol 35 MovieClip [arena] Frame 1Symbol 34 MovieClip
"attention"Symbol 46 MovieClip [hud] Frame 1Symbol 41 MovieClip

Special Tags

Protect (24)Timeline Frame 10 bytes ""
ExportAssets (56)Timeline Frame 1Symbol 1 as "skid_1"
ExportAssets (56)Timeline Frame 1Symbol 2 as "fastest_lap"
ExportAssets (56)Timeline Frame 1Symbol 3 as "crash_2"
ExportAssets (56)Timeline Frame 1Symbol 4 as "crash_1"
ExportAssets (56)Timeline Frame 1Symbol 5 as "crash_3"
ExportAssets (56)Timeline Frame 1Symbol 6 as "crash_4"
ExportAssets (56)Timeline Frame 1Symbol 10 as "target"
ExportAssets (56)Timeline Frame 1Symbol 10 as "target"
ExportAssets (56)Timeline Frame 1Symbol 2 as "fastest_lap"
ExportAssets (56)Timeline Frame 1Symbol 10 as "target"
ExportAssets (56)Timeline Frame 1Symbol 10 as "target"
ExportAssets (56)Timeline Frame 1Symbol 10 as "target"
ExportAssets (56)Timeline Frame 1Symbol 10 as "target"
ExportAssets (56)Timeline Frame 1Symbol 10 as "target"
ExportAssets (56)Timeline Frame 1Symbol 10 as "target"
ExportAssets (56)Timeline Frame 1Symbol 10 as "target"
ExportAssets (56)Timeline Frame 1Symbol 10 as "target"
ExportAssets (56)Timeline Frame 1Symbol 10 as "target"
ExportAssets (56)Timeline Frame 1Symbol 10 as "target"
ExportAssets (56)Timeline Frame 1Symbol 10 as "target"
ExportAssets (56)Timeline Frame 1Symbol 10 as "target"
ExportAssets (56)Timeline Frame 1Symbol 10 as "target"
ExportAssets (56)Timeline Frame 1Symbol 10 as "target"
ExportAssets (56)Timeline Frame 1Symbol 10 as "target"
ExportAssets (56)Timeline Frame 1Symbol 10 as "target"
ExportAssets (56)Timeline Frame 1Symbol 10 as "target"
ExportAssets (56)Timeline Frame 1Symbol 10 as "target"
ExportAssets (56)Timeline Frame 1Symbol 10 as "target"
ExportAssets (56)Timeline Frame 1Symbol 10 as "target"
ExportAssets (56)Timeline Frame 1Symbol 10 as "target"
ExportAssets (56)Timeline Frame 1Symbol 10 as "target"
ExportAssets (56)Timeline Frame 1Symbol 10 as "target"
ExportAssets (56)Timeline Frame 1Symbol 10 as "target"
ExportAssets (56)Timeline Frame 1Symbol 10 as "target"
ExportAssets (56)Timeline Frame 1Symbol 10 as "target"
ExportAssets (56)Timeline Frame 1Symbol 10 as "target"
ExportAssets (56)Timeline Frame 1Symbol 10 as "target"
ExportAssets (56)Timeline Frame 1Symbol 16 as "zone"
ExportAssets (56)Timeline Frame 1Symbol 17 as "target"
ExportAssets (56)Timeline Frame 1Symbol 24 as "car"
ExportAssets (56)Timeline Frame 1Symbol 35 as "arena"
ExportAssets (56)Timeline Frame 1Symbol 38 as "skid"
ExportAssets (56)Timeline Frame 1Symbol 46 as "hud"
ExportAssets (56)Timeline Frame 1Symbol 50 as "surround"
ExportAssets (56)Timeline Frame 1Symbol 65 as "traffic2"
ExportAssets (56)Timeline Frame 1Symbol 66 as "traffic3"
ExportAssets (56)Timeline Frame 1Symbol 67 as "traffic4"
ExportAssets (56)Timeline Frame 1Symbol 68 as "traffic5"
ExportAssets (56)Timeline Frame 1Symbol 69 as "traffic6"
ExportAssets (56)Timeline Frame 1Symbol 70 as "traffic1"
ExportAssets (56)Timeline Frame 1Symbol 73 as "flash"
ExportAssets (56)Timeline Frame 1Symbol 75 as "deliveryzoom"
ExportAssets (56)Timeline Frame 1Symbol 76 as "surround"
ExportAssets (56)Timeline Frame 1Symbol 76 as "surround"
ExportAssets (56)Timeline Frame 2Symbol 6 as "crash_4"
ExportAssets (56)Timeline Frame 2Symbol 5 as "crash_3"
ExportAssets (56)Timeline Frame 2Symbol 6 as "crash_4"
ExportAssets (56)Timeline Frame 2Symbol 4 as "crash_1"
ExportAssets (56)Timeline Frame 2Symbol 3 as "crash_2"

Dynamic Text Variables

scoreSymbol 43 EditableText"0"
_root.nameSymbol 94 EditableText""
_root.emailSymbol 95 EditableText""
_root.scoreSymbol 96 EditableText""
positionSymbol 108 EditableText""




http://swfchan.com/5/22243/info.shtml
Created: 27/5 -2019 01:07:31 Last modified: 27/5 -2019 01:07:31 Server time: 09/05 -2024 10:24:05