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

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

131.swf

This is the info page for
Flash #13698

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


Text
DRAGONDASH

Loading

Brought to you by

More Games

More Games

Hi

Hi

<

<

Play

Play

3

2

1

Dash!

3

3

Dash!

|

0

Press and hold spacebar to move the dragon up
Release the spacebar to move the dragon down
Grab the coloured orbs to increase speed, but
avoid the grey orbs and the walls
Try to go as far as possible in 60 seconds.
Good luck !

BACK

BACK

BACK

BACK

BACK

BACK

BACK

BACK

DISCARD

DISCARD

DISCARD

DISCARD

DISCARD

DISCARD

DISCARD

DISCARD

SUBMIT

SUBMIT

Score :

Name :

Loading

1
2
3
4
5
6
7
8
9
10

Loading

Loading

Loading

Loading

Loading

Loading

Loading

Loading

Loading

RePlay

RePlay

Register on
to keep track of your scores and
challenge your mates in your own
private leagues!

Register on

ActionScript [AS1/AS2]

Frame 1
totalBytes = Math.round(getBytesTotal() / 1024); loadedBytes = Math.round(getBytesLoaded() / 1024); percentDone = Math.round((loadedBytes / totalBytes) * 100); if (percentDone >= 100) { _root.winName = "Click"; _root.gotoAndPlay(4); } else { _root.progr.text = ((Math.round(loadedBytes) + "b of ") + Math.round(totalBytes)) + "b loaded"; }
Frame 2
gotoAndPlay (1);
Frame 3
stopAllSounds();
Frame 4
function gotoOphyr() { getURL ("http://www.ophyr.nl", "_blank"); } function gotoGG() { getURL ("http://www.gamegarage.co.uk", "_blank"); } function tracking() { trace("Tracking number of times played"); myURL = "http://gamegarage.co.uk/scripts/"; url = myURL + "tracking.php"; lv = new LoadVars(); lv.game_id = _root.game_id; lv.user_id = _root.user_id; lv.sendAndLoad(url, lv, "POST"); } _root.clicked = false; stop(); trace(_root.winName); stopAllSounds(); var myContextMenu = new ContextMenu(); myContextMenu.hideBuiltInItems(); var link = new ContextMenuItem("www.ophyr.nl", gotoOphyr); myContextMenu.customItems.push(link); var link2 = new ContextMenuItem("www.gamegarage.co.uk", gotoGG); myContextMenu.customItems.push(link2); _root.menu = myContextMenu;
Instance of Symbol 70 MovieClip "fader" in Frame 4
onClipEvent (load) { this.swapDepths(9001); }
Frame 5
function scoring(archievedScore) { trace("Attempting to submit " + archievedScore); myURL = "http://www.gamegarage.co.uk/scripts/"; url = myURL + "score.php"; lv = new LoadVars(); lv.game_id = _root.game_id; lv.user_id = _root.user_id; lv.score = archievedScore; lv.alg = ((_root.game_id + _root.user_id) + archievedScore) + "a83l9xj"; lv.sendAndLoad(url, lv, "POST"); } stop(); Mouse.hide(); _root.attachMovie("startfader", "startfadert", 9005, {_x:300, _y:150}); music = new Sound(_root.createEmptyMovieClip("bgm", 166)); music.attachSound("music"); music.start(0, 5); jet = new Sound(_root.createEmptyMovieClip("jet", 10000)); jet.attachSound("jet"); jet.start(0, 5000); jet.setVolume(0); _root.speed = 5;
Instance of Symbol 85 MovieClip "spd" in Frame 5
onClipEvent (load) { this.swapDepths(4000); }
Instance of Symbol 67 MovieClip "head" in Frame 5
onClipEvent (load) { this.swapDepths(5000); var index = 0; var yspeed = 0; var yacc = 0.35; var rotation = 0; var scrollspeed = 8; var defaultScrollSpeed = 8; var gameBeaten = false; var gameStarted = false; } onClipEvent (enterFrame) { _root.jet.setVolume(_root.speed); if (gameStarted) { if (!this.gameBeaten) { _root.speed = _root.controller.scaler / 14; if (Key.isDown(32)) { this.yspeed = this.yspeed - this.yacc; } else { this.yspeed = this.yspeed + this.yacc; } this._y = this._y + this.yspeed; this._rotation = this.yspeed * 4; } else { this._x = this._x + _root.controller.scaler; this._rotation = 0; } } this.scrollspeed = this.defaultScrollSpeed + ((_root.controller.scaler / 100) * 2); nm = "b" + index; rotation = this._rotation; var tribalname = ("bodytr_" + this._currentframe); _root.attachMovie(tribalname, nm, index, {_x:this._x, _y:this._y, _rotation:rotation, _xscale:(index % 16) + 30, _yscale:(index % 16) + 30, onEnterFrame:function () { if (!_root.head.gameBeaten) { this._x = this._x - scrollspeed; } else { this._x = this._x + (_root.controller.scaler - scrollspeed); } }}); _root[nm].cacheAsBitmap = true; if (index > 30) { index = 0; } else { index++; } }
Instance of Symbol 61 MovieClip [border] "controller" in Frame 5
onClipEvent (load) { function createSparks(dirUp) { var _local4 = 0; while (_local4 <= 5) { var _local3 = "spark" + this.sindex; if (dirUp) { var _local6 = (RAND() * 8) - (-4 * (_root.controller.scaler / 80)); var _local5 = -(8 + (RAND() * 6)); } else { var _local6 = (RAND() * 8) - (-4 * (_root.controller.scaler / 80)); var _local5 = -(RAND() * 6); } _root.attachMovie("spark", _local3, this.sindex, {_x:_root.head._x + 20, _y:_root.head._y, xacc:_local6, yacc:_local5, onEnterFrame:function () { this._x = this._x - this.xacc; this.xacc = this.xacc + 0.4; this._y = this._y + this.yacc; this.yacc = this.yacc + 0.6; if ((this._x < -10) || (this._y > 300)) { this.removeMovieClip(); } }}); _root[_local3].cacheAsBitmap = true; _root[_local3].gotoAndStop(_root.head._currentframe); if (this.sindex > 380) { this.sindex = 300; } else { this.sindex++; } _local4++; } } function createBorder() { nm = "border" + index; _root.attachMovie("border", nm, index, {_x:680, _y:150, onEnterFrame:function () { if (!_root.head.gameBeaten) { this._x = this._x - (this._width / 4); this._width = _root.controller.scaler; this.down.gotoAndStop(_root.head._currentframe); this.up.gotoAndStop(_root.head._currentframe); if ((this._x < 340) && (this._x > 260)) { if (this.up.hitTest(_root.head)) { _root.controller.hit.start(0.25, 1); createSparks(false); if ((_root.controller.scaler - 20) >= 70) { _root.controller.scaler = _root.controller.scaler - 20; } if ((_root.controller.difficulty - 8) >= -30) { _root.controller.difficulty = _root.controller.difficulty - 8; } _root.controller.hits++; _root.head._y = _root.head._y + 5; if (_root.head.yspeed < 0) { _root.head.yspeed = ((-_root.head.yspeed) * 0.6) + 0.5; } else { _root.head.yspeed = 5; } _root.controller.pb.start(0, 1); } if (this.down.hitTest(_root.head)) { _root.controller.hit.start(0.25, 1); createSparks(true); if ((_root.controller.scaler - 20) >= 70) { _root.controller.scaler = _root.controller.scaler - 20; } if ((_root.controller.difficulty - 8) >= -30) { _root.controller.difficulty = _root.controller.difficulty - 8; } _root.controller.hits++; _root.head._y = _root.head._y - 10; if (_root.head.yspeed > 0) { _root.head.yspeed = ((-_root.head.yspeed) * 0.6) - 0.5; } else { _root.head.yspeed = -5; } _root.controller.pb.start(0, 1); } } if (this._x < (-(10 + this._width))) { this.removeMovieClip(); } } }}); } grab = new Sound(); grab.attachSound("grab"); pb = new Sound(); pb.attachSound("pickupBad"); pg = new Sound(); pg.attachSound("pickupGood"); hit = new Sound(); hit.attachSound("hit"); RAND = Math.random; SIN = Math.sin; FLOOR = Math.floor; var gameStarted = false; var borderUp = 100; var borderDown = 100; var index = 50; var gindex = 140; var findex = 200; var sindex = 300; var timeRemaining = 3600; var edgeAggressiveness = 100; var scaler = 100; var distance = 0; var dir = 0; var bdir = 0; var lCounter = 0; var fCounter = 0; var levelDir = 6; var difficulty = -30; var hits = 0; } onClipEvent (enterFrame) { if (!_root.head.gameBeaten) { createBorder(); this.timeRemaining = FLOOR((3600 - this.lCounter) / 60); if (this.timeRemaining <= 0) { _root.jet.setVolume(0); _root.jet = undefined; _root.head.gameBeaten = true; } _root.spd.speedometer.text = ((((("Speed : " + this.scaler) + " Kph. Time remaining : ") + this.timeRemaining) + " seconds. Distance travelled : ") + FLOOR(this.distance)) + " Metres"; if (_root.head.gameStarted) { this.lCounter++; } this.fCounter++; if ((this.scaler >= 240) && (this.fCounter >= (20 - FLOOR(_root.controller.scaler / 15)))) { this.fCounter = 0; fnm = "flare" + this.findex; _root.attachMovie("flare", fnm, this.findex, {_x:620, _y:150, onEnterFrame:function () { if (this._x > (-this._width)) { this._x = this._x - this._width; } else { this.removeMovieClip(); } }}); _root[fnm].gotoAndStop(_root.head._currentframe); _root[fnm]._y = 20 + (RAND() * 260); _root[fnm]._xscale = 100 + ((RAND() * 80) - 40); if (this.findex > 280) { this.findex = 200; } else { this.findex++; } } if (_root.controller.gameStarted) { if ((this.lCounter % FLOOR(_root.controller.scaler)) == 0) { gnm = "globe" + this.gindex; _root.attachMovie("globe", gnm, this.gindex, {_x:620, _y:150, killed:false, onEnterFrame:function () { this._y = this._y + Math.cos(this._x / 100); if (!_root.head.gameBeaten) { if (this._x > -20) { this._x = this._x - ((_root.controller.scaler / 100) * 6); } else { this.removeMovieClip(); } } else if (this._x < 620) { this._x = this._x + ((_root.controller.scaler / 100) * 16); } else { this.removeMovieClip(); } if ((this._x < 350) && (this._x > 250)) { if ((!this.killed) && (_root.head.grab.hitTest(this))) { _root.controller.grab.start(0, 1); this.killed = true; createSparks(false); if (this._currentframe != _root.head._currentframe) { _root.controller.pg.start(0, 1); _root.head.gotoAndStop(this._currentframe); _root.bg.gotoAndStop(this._currentframe); if ((_root.controller.scaler + 40) <= 400) { _root.controller.scaler = _root.controller.scaler + 40; } if ((_root.controller.difficulty + 10) <= 60) { _root.controller.difficulty = _root.controller.difficulty + 10; } _root.controller.edgeAggressiveness = _root.controller.edgeAggressiveness + 4; } else if (this._currentframe == _root.head._currentframe) { _root.controller.pb.start(0, 1); if ((_root.controller.scaler - 20) >= 70) { _root.controller.scaler = _root.controller.scaler - 20; } if ((_root.controller.difficulty - 10) >= -30) { _root.controller.difficulty = _root.controller.difficulty - 10; } _root.controller.edgeAggressiveness = _root.controller.edgeAggressiveness - 4; } this.g.gotoAndPlay(2); } } }}); var randNum = FLOOR(RAND() * 3); if (randNum == 1) { _root[gnm].gotoAndStop(_root.head._currentframe); } else { var tmpFrame = _root.head._currentframe; if (tmpFrame == 3) { tmpFrame = 1; } else { tmpFrame++; } _root[gnm].gotoAndStop(tmpFrame); } _root[gnm]._y = (_root.head._y + (RAND() * 50)) - 25; } if (gindex > 180) { gindex = 140; } else { gindex++; } } if (gameStarted) { this.distance = this.distance + (this.scaler / 36); this.dir = this.dir + ((RAND() * 12) - this.levelDir); newUpCoord = (_root[nm].up._y - this.borderUp) + this.dir; newDownCoord = (_root[nm].down._y + this.borderDown) + this.dir; newUpCoord = newUpCoord + (this.difficulty * SIN(this.lCounter / 10)); newDownCoord = newDownCoord - (this.difficulty * SIN(this.lCounter / 10)); } else { newUpCoord = _root[nm].up._y - this.borderUp; newDownCoord = _root[nm].down._y + this.borderDown; } if (newUpCoord > 80) { newUpCoord = 80; if (this.levelDir < 12) { this.levelDir = this.levelDir + ((RAND() * this.scaler) / (this.edgeAggressiveness + (this.scaler / 60))); } } else if (newDownCoord < -80) { newDownCoord = -80; if (this.levelDir > -12) { this.levelDir = this.levelDir - ((RAND() * this.scaler) / (this.edgeAggressiveness + (this.scaler / 60))); } } else if (newUpCoord < -140) { newUpCoord = -140; if (this.levelDir > -12) { this.levelDir = this.levelDir - ((RAND() * this.scaler) / (this.edgeAggressiveness + (this.scaler / 60))); } } else if (newDownCoord > 140) { newDownCoord = 140; if (this.levelDir < 12) { this.levelDir = this.levelDir + ((RAND() * this.scaler) / (this.edgeAggressiveness + (this.scaler / 60))); } } else if ((RAND() * 3) > 2) { if (this.levelDir > 5) { levelDir = levelDir - ((RAND() * this.scaler) / (this.edgeAggressiveness + (this.scaler / 60))); } else if (this.levelDir < 9) { levelDir = levelDir + ((RAND() * this.scaler) / (this.edgeAggressiveness + (this.scaler / 60))); } } _root[nm].up.gotoAndStop(_root.head._currentframe); _root[nm].down.gotoAndStop(_root.head._currentframe); _root[nm].up._y = newUpCoord; _root[nm].down._y = newDownCoord; if (index > 100) { index = 50; } else { index++; } } else if (!_root.ending) { _root.jet.setVolume(0); _root.distanceScoreString = ("You travelled " + FLOOR(this.distance)) + " meters"; _root.distanceScore = FLOOR(this.distance); trace("Distancescore = " + _root.distanceScore); _root.attachMovie("endfader", "endfadert", 9005, {_x:300, _y:150}); } }
Instance of Symbol 13 MovieClip "gglogo" in Frame 5
onClipEvent (load) { this.swapDepths(9004); }
Frame 6
Mouse.show(); stop(); _root.clicked = false; stopAllSounds(); trace("Sending score to ze Germanz"); scoring(_root.distanceScore);
Instance of Symbol 70 MovieClip "fader" in Frame 6
onClipEvent (load) { this.swapDepths(9001); }
Instance of Symbol 13 MovieClip "gglogo" in Frame 6
on (press) { if (!_root.clicked) { grab = new Sound(); grab.attachSound("grab"); grab.start(0, 1); _root.getURL("http://www.gamegarage.co.uk/users/register.php", "_blank"); } } on (rollOver) { this.gotoAndStop(2); } on (rollOut) { this.gotoAndStop(1); }
Symbol 13 MovieClip Frame 1
stop();
Symbol 37 MovieClip [counter] Frame 180
_root.head.gameStarted = true;
Symbol 37 MovieClip [counter] Frame 240
_root.controller.gameStarted = true; this.unloadMovie();
Symbol 44 MovieClip [bodytr_3] Frame 25
this.removeMovieClip();
Symbol 46 MovieClip [bodytr_2] Frame 25
this.removeMovieClip();
Symbol 48 MovieClip [bodytr_1] Frame 25
this.removeMovieClip();
Symbol 52 MovieClip Frame 1
stop();
Symbol 52 MovieClip Frame 2
stop();
Symbol 52 MovieClip Frame 3
stop();
Symbol 67 MovieClip Frame 1
stop();
Symbol 67 MovieClip Frame 2
stop();
Symbol 67 MovieClip Frame 3
stop();
Symbol 69 MovieClip [endfader] Frame 1
_root.ending = true; stopAllSounds(); rip = new Sound(); rip.attachSound("rip"); rip.start(0, 1); boom = new Sound(_root.createEmptyMovieClip("boom", 167)); boom.attachSound("boom"); boom.setVolume(_root.speed); boom.start(0, 1);
Symbol 69 MovieClip [endfader] Frame 120
trace(_root.distancescore); var i = 0; while (i <= 9000) { _level0.getInstanceAtDepth(i).swapDepths(9002); _level0.getInstanceAtDepth(i).removeMovieClip(); i++; } _root.head.removeMovieClip(); _root.controller.swapDepths(9002); _root.controller.removeMovieClip(); _root.gglogo.swapDepths(9002); _root.gglogo.removeMovieClip(); _root.nextFrame(); this.swapDepths(10000); this.removeMovieClip();
Symbol 70 MovieClip Frame 1
stop();
Symbol 70 MovieClip Frame 121
_root.gotoAndPlay(5); this.removeMovieClip();
Symbol 75 MovieClip [startfader] Frame 120
_root.distancescore = 0; _root.attachMovie("counter", "counter", 8000, {_x:Stage.width / 2, _y:Stage.height / 2}); this.swapDepths(10000); this.removeMovieClip();
Symbol 113 MovieClip Frame 1
_root.winName = "Click";
Symbol 115 MovieClip Frame 1
stop();
Symbol 115 MovieClip Frame 20
_parent.removeMovieClip();
Symbol 117 MovieClip Frame 1
stop();
Symbol 117 MovieClip Frame 20
_parent.removeMovieClip();
Symbol 119 MovieClip Frame 1
stop();
Symbol 119 MovieClip Frame 20
_parent.removeMovieClip();
Symbol 120 MovieClip [globe] Frame 1
stop();
Symbol 120 MovieClip [globe] Frame 2
stop();
Symbol 120 MovieClip [globe] Frame 3
stop();
Symbol 121 Button
on (release) { grab = new Sound(); grab.attachSound("grab"); grab.start(0, 1); _root.Table.scoretable.filename = "scores/dragondashscores.sco"; _root.Table.scoretable.scoresize = 10; _root.Table.scoretable.action = "INSERT"; _root.Table.scoretable.viewtype = "FLASH"; _root.Table.scoretable.winname = winName.Name.text; _root.Table.scoretable.winscore = winScore.Score.text; _root.Table.scoretable.loadVariables("http://www.ophyr.nl/scores/scores.php", "GET"); _root.enterHighScore._visible = false; _root.Table._visible = true; }
Symbol 148 Button
on (press) { grab = new Sound(); grab.attachSound("grab"); grab.start(0, 1); _root.gotoAndStop(4); }
Symbol 160 Button
on (press) { if (!_root.clicked) { grab = new Sound(); grab.attachSound("grab"); grab.start(0, 1); _root.getURL("http://www.gamegarage.co.uk", "_blank"); } }
Symbol 161 Button
on (press) { if (!_root.clicked) { grab = new Sound(); grab.attachSound("grab"); grab.start(0, 1); tracking(); _root.clicked = true; _root.ending = false; _root.fader.gotoAndPlay(2); } }
Symbol 164 Button
on (press) { if (!_root.clicked) { grab = new Sound(); grab.attachSound("grab"); grab.start(0, 1); tracking(); _root.clicked = true; _root.ending = false; _root.fader.gotoAndPlay(2); } }

Library Items

Symbol 1 GraphicUsed by:Timeline
Symbol 2 GraphicUsed by:13
Symbol 3 GraphicUsed by:13 18
Symbol 4 GraphicUsed by:13 18
Symbol 5 GraphicUsed by:13 18
Symbol 6 GraphicUsed by:13 18
Symbol 7 GraphicUsed by:13 18
Symbol 8 GraphicUsed by:13 18
Symbol 9 GraphicUsed by:13 18
Symbol 10 GraphicUsed by:13 18
Symbol 11 GraphicUsed by:13 18
Symbol 12 GraphicUsed by:13
Symbol 13 MovieClipUses:2 3 4 5 6 7 8 9 10 11 12Used by:Timeline
Symbol 14 FontUsed by:15 19 20 21 22 24 25 27 28 30 31 33 34 35 36 38 39 40 76 78 105 106 122 123 162 163
Symbol 15 TextUses:14Used by:Timeline
Symbol 16 GraphicUsed by:18
Symbol 17 GraphicUsed by:18
Symbol 18 MovieClipUses:16 3 4 5 6 7 8 9 10 11 17Used by:Timeline
Symbol 19 EditableTextUses:14Used by:Timeline
Symbol 20 TextUses:14Used by:Timeline
Symbol 21 EditableTextUses:14Used by:23 160
Symbol 22 EditableTextUses:14Used by:23 160
Symbol 23 ButtonUses:21 22Used by:Timeline
Symbol 24 EditableTextUses:14Used by:26
Symbol 25 EditableTextUses:14Used by:26
Symbol 26 ButtonUses:24 25Used by:Timeline
Symbol 27 EditableTextUses:14Used by:29 148
Symbol 28 EditableTextUses:14Used by:29 148
Symbol 29 ButtonUses:27 28Used by:Timeline
Symbol 30 EditableTextUses:14Used by:32 161
Symbol 31 EditableTextUses:14Used by:32 161
Symbol 32 ButtonUses:30 31Used by:Timeline
Symbol 33 TextUses:14Used by:37
Symbol 34 TextUses:14Used by:37
Symbol 35 TextUses:14Used by:37
Symbol 36 TextUses:14Used by:37
Symbol 37 MovieClip [counter]Uses:33 34 35 36Used by:Timeline
Symbol 38 EditableTextUses:14Used by:Timeline
Symbol 39 EditableTextUses:14Used by:Timeline
Symbol 40 EditableTextUses:14Used by:Timeline
Symbol 41 GraphicUsed by:42
Symbol 42 MovieClipUses:41Used by:44 46 48
Symbol 43 GraphicUsed by:44
Symbol 44 MovieClip [bodytr_3]Uses:42 43Used by:Timeline
Symbol 45 GraphicUsed by:46
Symbol 46 MovieClip [bodytr_2]Uses:42 45Used by:Timeline
Symbol 47 GraphicUsed by:48
Symbol 48 MovieClip [bodytr_1]Uses:42 47Used by:Timeline
Symbol 49 GraphicUsed by:52
Symbol 50 GraphicUsed by:52
Symbol 51 GraphicUsed by:52
Symbol 52 MovieClipUses:49 50 51Used by:Timeline
Symbol 53 GraphicUsed by:56
Symbol 54 GraphicUsed by:56
Symbol 55 GraphicUsed by:56
Symbol 56 MovieClipUses:53 54 55Used by:61
Symbol 57 GraphicUsed by:60
Symbol 58 GraphicUsed by:60
Symbol 59 GraphicUsed by:60
Symbol 60 MovieClipUses:57 58 59Used by:61
Symbol 61 MovieClip [border]Uses:56 60Used by:Timeline
Symbol 62 GraphicUsed by:63
Symbol 63 MovieClipUses:62Used by:67
Symbol 64 GraphicUsed by:67
Symbol 65 GraphicUsed by:67
Symbol 66 GraphicUsed by:67
Symbol 67 MovieClipUses:63 64 65 66Used by:Timeline
Symbol 68 GraphicUsed by:69 70 75
Symbol 69 MovieClip [endfader]Uses:68Used by:Timeline
Symbol 70 MovieClipUses:68Used by:Timeline
Symbol 71 GraphicUsed by:74
Symbol 72 GraphicUsed by:74
Symbol 73 GraphicUsed by:74
Symbol 74 MovieClip [spark]Uses:71 72 73Used by:Timeline
Symbol 75 MovieClip [startfader]Uses:68Used by:Timeline
Symbol 76 EditableTextUses:14Used by:77
Symbol 77 MovieClipUses:76Used by:124  Timeline
Symbol 78 EditableTextUses:14Used by:79
Symbol 79 MovieClipUses:78Used by:124  Timeline
Symbol 80 FontUsed by:81 165 167
Symbol 81 TextUses:80Used by:82
Symbol 82 MovieClipUses:81Used by:Timeline
Symbol 83 FontUsed by:84
Symbol 84 EditableTextUses:83Used by:85
Symbol 85 MovieClipUses:84Used by:Timeline
Symbol 86 FontUsed by:87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103
Symbol 87 EditableTextUses:86Used by:95
Symbol 88 EditableTextUses:86Used by:95
Symbol 89 EditableTextUses:86Used by:95
Symbol 90 EditableTextUses:86Used by:95
Symbol 91 EditableTextUses:86Used by:95
Symbol 92 EditableTextUses:86Used by:95
Symbol 93 EditableTextUses:86Used by:95
Symbol 94 EditableTextUses:86Used by:95
Symbol 95 ButtonUses:87 88 89 90 91 92 93 94Used by:Timeline
Symbol 96 EditableTextUses:86Used by:104
Symbol 97 EditableTextUses:86Used by:104
Symbol 98 EditableTextUses:86Used by:104
Symbol 99 EditableTextUses:86Used by:104
Symbol 100 EditableTextUses:86Used by:104
Symbol 101 EditableTextUses:86Used by:104
Symbol 102 EditableTextUses:86Used by:104
Symbol 103 EditableTextUses:86Used by:104
Symbol 104 ButtonUses:96 97 98 99 100 101 102 103Used by:Timeline
Symbol 105 EditableTextUses:14Used by:107 121
Symbol 106 EditableTextUses:14Used by:107 121
Symbol 107 ButtonUses:105 106Used by:Timeline
Symbol 108 GraphicUsed by:111
Symbol 109 GraphicUsed by:111
Symbol 110 GraphicUsed by:111
Symbol 111 MovieClip [flare]Uses:108 109 110Used by:Timeline
Symbol 112 GraphicUsed by:113
Symbol 113 MovieClipUses:112Used by:115 117 119
Symbol 114 GraphicUsed by:115
Symbol 115 MovieClipUses:113 114Used by:120
Symbol 116 GraphicUsed by:117
Symbol 117 MovieClipUses:113 116Used by:120
Symbol 118 GraphicUsed by:119
Symbol 119 MovieClipUses:113 118Used by:120
Symbol 120 MovieClip [globe]Uses:115 117 119Used by:Timeline
Symbol 121 ButtonUses:105 106Used by:124
Symbol 122 TextUses:14Used by:124
Symbol 123 TextUses:14Used by:124
Symbol 124 MovieClipUses:121 79 77 122 123Used by:Timeline
Symbol 125 FontUsed by:126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
Symbol 126 EditableTextUses:125Used by:147
Symbol 127 EditableTextUses:125Used by:147
Symbol 128 EditableTextUses:125Used by:147
Symbol 129 EditableTextUses:125Used by:147
Symbol 130 EditableTextUses:125Used by:147
Symbol 131 EditableTextUses:125Used by:147
Symbol 132 EditableTextUses:125Used by:147
Symbol 133 EditableTextUses:125Used by:147
Symbol 134 EditableTextUses:125Used by:147
Symbol 135 EditableTextUses:125Used by:147
Symbol 136 EditableTextUses:125Used by:147
Symbol 137 TextUses:125Used by:147
Symbol 138 EditableTextUses:125Used by:147
Symbol 139 EditableTextUses:125Used by:147
Symbol 140 EditableTextUses:125Used by:147
Symbol 141 EditableTextUses:125Used by:147
Symbol 142 EditableTextUses:125Used by:147
Symbol 143 EditableTextUses:125Used by:147
Symbol 144 EditableTextUses:125Used by:147
Symbol 145 EditableTextUses:125Used by:147
Symbol 146 EditableTextUses:125Used by:147
Symbol 147 MovieClipUses:126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146Used by:149  Timeline
Symbol 148 ButtonUses:27 28Used by:149
Symbol 149 MovieClipUses:147 148Used by:Timeline
Symbol 150 Sound [rip]Used by:Timeline
Symbol 151 Sound [boom]Used by:Timeline
Symbol 152 Sound [jet]Used by:Timeline
Symbol 153 Sound [music]Used by:Timeline
Symbol 154 Sound [grab]Used by:Timeline
Symbol 155 Sound [hit]Used by:Timeline
Symbol 156 Sound [pickupGood]Used by:Timeline
Symbol 157 Sound [pickupBad]Used by:Timeline
Symbol 158 GraphicUsed by:Timeline
Symbol 159 GraphicUsed by:Timeline
Symbol 160 ButtonUses:21 22Used by:Timeline
Symbol 161 ButtonUses:30 31Used by:Timeline
Symbol 162 EditableTextUses:14Used by:164
Symbol 163 EditableTextUses:14Used by:164
Symbol 164 ButtonUses:162 163Used by:Timeline
Symbol 165 TextUses:80Used by:166
Symbol 166 MovieClipUses:165Used by:Timeline
Symbol 167 EditableTextUses:80Used by:Timeline

Instance Names

"progr"Frame 1Symbol 19 EditableText
"help"Frame 4Symbol 82 MovieClip
"bhelp"Frame 4Symbol 160 Button
"bplay"Frame 4Symbol 161 Button
"fader"Frame 4Symbol 70 MovieClip
"bg"Frame 5Symbol 52 MovieClip
"spd"Frame 5Symbol 85 MovieClip
"head"Frame 5Symbol 67 MovieClip
"controller"Frame 5Symbol 61 MovieClip [border]
"gglogo"Frame 5Symbol 13 MovieClip
"bhelp"Frame 6Symbol 160 Button
"bplay"Frame 6Symbol 164 Button
"fader"Frame 6Symbol 70 MovieClip
"help"Frame 6Symbol 166 MovieClip
"gglogo"Frame 6Symbol 13 MovieClip
"up"Symbol 61 MovieClip [border] Frame 1Symbol 56 MovieClip
"down"Symbol 61 MovieClip [border] Frame 1Symbol 60 MovieClip
"grab"Symbol 67 MovieClip Frame 1Symbol 63 MovieClip
"Name"Symbol 77 MovieClip Frame 1Symbol 76 EditableText
"Score"Symbol 79 MovieClip Frame 1Symbol 78 EditableText
"speedometer"Symbol 85 MovieClip Frame 1Symbol 84 EditableText
"g"Symbol 120 MovieClip [globe] Frame 1Symbol 115 MovieClip
"g"Symbol 120 MovieClip [globe] Frame 2Symbol 117 MovieClip
"g"Symbol 120 MovieClip [globe] Frame 3Symbol 119 MovieClip
"winScore"Symbol 124 MovieClip Frame 1Symbol 79 MovieClip
"winName"Symbol 124 MovieClip Frame 1Symbol 77 MovieClip
"scoretable"Symbol 149 MovieClip Frame 1Symbol 147 MovieClip

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS1/AS2.
ExportAssets (56)Timeline Frame 3Symbol 37 as "counter"
ExportAssets (56)Timeline Frame 3Symbol 44 as "bodytr_3"
ExportAssets (56)Timeline Frame 3Symbol 46 as "bodytr_2"
ExportAssets (56)Timeline Frame 3Symbol 48 as "bodytr_1"
ExportAssets (56)Timeline Frame 3Symbol 61 as "border"
ExportAssets (56)Timeline Frame 3Symbol 69 as "endfader"
ExportAssets (56)Timeline Frame 3Symbol 74 as "spark"
ExportAssets (56)Timeline Frame 3Symbol 75 as "startfader"
ExportAssets (56)Timeline Frame 3Symbol 111 as "flare"
ExportAssets (56)Timeline Frame 3Symbol 120 as "globe"
ExportAssets (56)Timeline Frame 3Symbol 150 as "rip"
ExportAssets (56)Timeline Frame 3Symbol 151 as "boom"
ExportAssets (56)Timeline Frame 3Symbol 152 as "jet"
ExportAssets (56)Timeline Frame 3Symbol 153 as "music"
ExportAssets (56)Timeline Frame 3Symbol 154 as "grab"
ExportAssets (56)Timeline Frame 3Symbol 155 as "hit"
ExportAssets (56)Timeline Frame 3Symbol 156 as "pickupGood"
ExportAssets (56)Timeline Frame 3Symbol 157 as "pickupBad"

Dynamic Text Variables

_root.winNameSymbol 76 EditableText"|"
_root.distancescoreSymbol 78 EditableText"0"
NAME0Symbol 126 EditableText"Loading"
SCORE0Symbol 127 EditableText""
SCORE1Symbol 128 EditableText""
SCORE2Symbol 129 EditableText""
SCORE3Symbol 130 EditableText""
SCORE4Symbol 131 EditableText""
SCORE5Symbol 132 EditableText""
SCORE6Symbol 133 EditableText""
SCORE7Symbol 134 EditableText""
SCORE8Symbol 135 EditableText""
SCORE9Symbol 136 EditableText""
NAME1Symbol 138 EditableText"Loading"
NAME2Symbol 139 EditableText"Loading"
NAME3Symbol 140 EditableText"Loading"
NAME4Symbol 141 EditableText"Loading"
NAME5Symbol 142 EditableText"Loading"
NAME6Symbol 143 EditableText"Loading"
NAME7Symbol 144 EditableText"Loading"
NAME8Symbol 145 EditableText"Loading"
NAME9Symbol 146 EditableText"Loading"
_root.distanceScoreStringSymbol 167 EditableText"Register on"




http://swfchan.com/3/13698/info.shtml
Created: 4/6 -2019 10:23:17 Last modified: 4/6 -2019 10:23:17 Server time: 11/05 -2024 22:21:31