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

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

Mission- Strawberry.swf

This is the info page for
Flash #39747

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


Text
<p align="center"><font face="Verdana_10pt_st" size="10" color="#ffffff" letterSpacing="0.000000" kerning="1">0%</font></p>

© dank 2007

cred

Spawner

Score:

T ime:

2

44

:

Your score:

Your name:

Thanks!

Collect These

ActionScript [AS1/AS2]

Frame 1
function itemHandler0(obj, item) { getURL ("http://newgrounds.com", _blank); } function itemHandler1(obj, item) { getURL ("http://clockcrew.cc", _blank); } var myMenu = new ContextMenu(); myMenu.hideBuiltInItems(); myMenu.customItems.push(new ContextMenuItem("Newgrounds", itemHandler0)); myMenu.customItems.push(new ContextMenuItem("Clock Crew", itemHandler1)); _root.menu = myMenu;
Frame 6
menuSound = new Sound(this); menuSound.attachSound("menu"); gameSound = new Sound(this); gameSound.attachSound("game"); menuSound.stop(); menuSound.start(0, true);
Instance of Symbol 86 MovieClip "thanks" in Frame 6
onClipEvent (load) { this._visible = false; }
Frame 11
stop();
Frame 16
gameSound.start(0, false); _root.seconds = 12; _root.minutes = 4; _root.score = 0; var starCount = 0; var zeroCount = 0; var oneCount = 0; var twoCount = 0; var threeCount = 0; var fourCount = 0; var fiveCount = 0; var starSpeed = 4; var zeroAccel = 1; var oneSpeed = 3; var twoSpeed = 5; var threeSpeed = 8; var fourSpeed = 10; var fiveAccel = 1.5; var zeroDecrement = -5; var oneDecrement = -2; var twoIncrement = 2; var threeIncrement = 3; var fourIncrement = 4; var fiveIncrement = 5; countDown = setInterval(function () { if ((_root.seconds == 0) && (_root.minutes > 0)) { _root.seconds = 59; _root.minutes--; } if ((_root.minutes == 0) && (seconds == 0)) { _root.play(); } else if ((_root.minutes > 0) || (_root.seconds > 0)) { _root.seconds--; } incrementSpeed = 0.2; starSpeed = starSpeed + incrementSpeed; oneSpeed = oneSpeed + incrementSpeed; twoSpeed = twoSpeed + incrementSpeed; threeSpeed = threeSpeed + incrementSpeed; fourSpeed = fourSpeed + incrementSpeed; }, 1000);
Instance of Symbol 101 MovieClip "five" in Frame 16
onClipEvent (load) { if (this._name != "five") { this._x = 800; this._y = random(200) + 50; } speed = 1; accel = _root.fiveAccel; } onClipEvent (enterFrame) { if (this._name != "five") { if (this.hitTest(_root.sbc)) { _root.score = _root.score + _root.fiveIncrement; this.removeMovieClip(); } if (this._x < -50) { this.removeMovieClip(); } this._x = this._x - speed; speed = speed + accel; } }
Instance of Symbol 103 MovieClip "four" in Frame 16
onClipEvent (load) { if (this._name != "four") { this._x = 800; this._y = random(200) + 50; } speed = _root.fourSpeed; } onClipEvent (enterFrame) { if (this._name != "four") { if (this.hitTest(_root.sbc)) { _root.score = _root.score + _root.fourIncrement; this.removeMovieClip(); } if (this._x < -50) { this.removeMovieClip(); } this._x = this._x - speed; } }
Instance of Symbol 105 MovieClip "three" in Frame 16
onClipEvent (load) { if (this._name != "three") { this._x = 800; this._y = random(200) + 50; } speed = _root.threeSpeed; } onClipEvent (enterFrame) { if (this._name != "three") { if (this.hitTest(_root.sbc)) { _root.score = _root.score + _root.threeIncrement; this.removeMovieClip(); } if (this._x < -50) { this.removeMovieClip(); } this._x = this._x - speed; } }
Instance of Symbol 107 MovieClip "two" in Frame 16
onClipEvent (load) { if (this._name != "two") { this._x = 800; this._y = random(200) + 50; } speed = _root.twoSpeed; } onClipEvent (enterFrame) { if (this._name != "two") { if (this.hitTest(_root.sbc)) { _root.score = _root.score + _root.twoIncrement; this.removeMovieClip(); } if (this._x < -50) { this.removeMovieClip(); } this._x = this._x - speed; } }
Instance of Symbol 109 MovieClip "one" in Frame 16
onClipEvent (load) { if (this._name != "one") { this._x = 800; this._y = random(200) + 50; } speed = _root.oneSpeed; } onClipEvent (enterFrame) { if (this._name != "one") { if (this.hitTest(_root.sbc)) { if (_root.score > 2) { _root.score = _root.score + _root.oneDecrement; } else { _root.score = 0; } this.removeMovieClip(); } if (this._x < -50) { this.removeMovieClip(); } this._x = this._x - speed; } }
Instance of Symbol 111 MovieClip "zero" in Frame 16
onClipEvent (load) { if (this._name != "zero") { this._x = 800; this._y = random(200) + 50; } speed = 1; accel = _root.zeroAccel; } onClipEvent (enterFrame) { if (this._name != "zero") { if (this.hitTest(_root.sbc)) { if (_root.score > 5) { _root.score = _root.score + _root.zeroDecrement; } else { _root.score = 0; } this.removeMovieClip(); } if (this._x < -50) { this.removeMovieClip(); } this._x = this._x - speed; speed = speed + accel; } }
Instance of Symbol 112 MovieClip "sbc" in Frame 16
onClipEvent (load) { xSpeed = 0; ySpeed = 0; accel = 1; decel = 0.5; halfWidth = this._width / 2; halfHeight = this._height / 2; } onClipEvent (enterFrame) { this._x = this._x + xSpeed; this._y = this._y - ySpeed; if (Key.isDown(39) && (this._x < (800 - halfWidth))) { xSpeed = xSpeed + accel; } else if (Key.isDown(37) && (this._x > (0 + halfWidth))) { xSpeed = xSpeed - accel; } else if (xSpeed > 0) { xSpeed = xSpeed - decel; } else if (xSpeed < 0) { xSpeed = xSpeed + decel; } if (Key.isDown(38) && (this._y > (0 + halfHeight))) { ySpeed = ySpeed + accel; this._rotation--; } else if (Key.isDown(40) && (this._y < (250 - halfHeight))) { ySpeed = ySpeed - accel; this._rotation++; } else { if (ySpeed > 0) { ySpeed = ySpeed - decel; } else if (ySpeed < 0) { ySpeed = ySpeed + decel; } if (this._rotation > 90) { this._rotation--; } else if (this._rotation < 90) { this._rotation++; } } if (this.hitTest(_root.boundl)) { while (this._x < (0 + halfWidth)) { xSpeed = 0; this._x++; } } if (this.hitTest(_root.boundr)) { while (this._x > (800 - halfWidth)) { xSpeed = 0; this._x--; } } if (this.hitTest(_root.boundt)) { while (this._y < (0 + halfHeight)) { ySpeed = 0; this._y++; } } if (this.hitTest(_root.boundb)) { while (this._y > (250 - halfHeight)) { ySpeed = 0; this._y--; } } }
Instance of Symbol 115 MovieClip in Frame 16
onClipEvent (enterFrame) { starSpawn = random(3); zeroSpawn = random(64); oneSpawn = random(34); twoSpawn = random(50); threeSpawn = random(70); fourSpawn = random(100); fiveSpawn = random(150); if (starSpawn == 0) { duplicateMovieClip (_root.star, "star" + _root.starCount, 70000 + _root.starCount); _root.starCount++; } if (zeroSpawn == 0) { duplicateMovieClip (_root.zero, "zero" + _root.zeroCount, 10000 + _root.zeroCount); _root.zeroCount++; } if (oneSpawn == 0) { duplicateMovieClip (_root.one, "one" + _root.oneCount, 20000 + _root.oneCount); _root.oneCount++; } if (twoSpawn == 0) { duplicateMovieClip (_root.two, "two" + _root.twoCount, 30000 + _root.twoCount); _root.twoCount++; } if (threeSpawn == 0) { duplicateMovieClip (_root.three, "three" + _root.threeCount, 40000 + _root.threeCount); _root.threeCount++; } if (fourSpawn == 0) { duplicateMovieClip (_root.four, "four" + _root.fourCount, 50000 + _root.fourCount); _root.fourCount++; } if (fiveSpawn == 0) { duplicateMovieClip (_root.five, "five" + _root.fiveCount, 60000 + _root.fiveCount); _root.fiveCount++; } }
Instance of Symbol 117 MovieClip "star" in Frame 16
onClipEvent (load) { if (this._name != "star") { this._x = 800; this._y = random(250); } speed = random(5) + _root.starSpeed; this._alpha = random(70) + 30; this._height = (this._width = random(10) + 5); } onClipEvent (enterFrame) { this._x = this._x - speed; if (this._x < -50) { this.removeMovieClip(); } }
Frame 21
stop();
Frame 26
clearInterval(countDown);
Instance of Symbol 117 MovieClip "star" in Frame 26
onClipEvent (load) { if (this._name != "star") { this._x = 800; this._y = random(250); } speed = random(5) + 4; this._alpha = random(70) + 30; this._height = (this._width = random(10) + 5); } onClipEvent (enterFrame) { this._x = this._x - speed; if (this._x < -50) { this.removeMovieClip(); } }
Instance of Symbol 115 MovieClip in Frame 26
onClipEvent (enterFrame) { starSpawn = random(3); if (starSpawn == 0) { duplicateMovieClip (_root.star, "star" + _root.starCount, 70000 + _root.starCount); _root.starCount++; } }
Frame 31
gameSound.stop(); menuSound.start(); stop();
Frame 37
stop();
Symbol 47 MovieClip Frame 20
stop();
Symbol 49 Button
on (release) { _root.play(); }
Symbol 56 MovieClip Frame 1
_root.stop(); onEnterFrame = function () { percent = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100; if (_currentframe < percent) { nextFrame(); } pert = _currentframe + "%"; onMouseDown = function () { if (percent > 99) { gotoAndPlay (100); } }; };
Symbol 56 MovieClip Frame 100
stop();
Symbol 56 MovieClip Frame 134
_root.gotoAndPlay(6);
Symbol 63 Button
on (release) { _root.play(); _root.menuSound.stop(); }
Symbol 66 Button
on (release) { gotoAndPlay (32); }
Symbol 69 Button
on (release) { getURL ("http://www.clockcrew.cc/", _blank); }
Symbol 72 Button
on (release) { getURL ("http://newgrounds.com", _blank); }
Symbol 84 Button
on (release) { _root.thanks._visible = true; }
Symbol 97 MovieClip Frame 1
gotoAndPlay (2);
Symbol 97 MovieClip Frame 62
stop();
Symbol 122 Button
on (release) { gotoAndPlay (6); }
Symbol 132 Button
on (release) { _root.gotoAndPlay(6); }
Symbol 140 Button
on (release) { if (_root.nameVar != null) { ab20_09 = new LoadVars(); ab20_09.z = _root.nameVar; ab20_09.x = _root.score; ab20_09.c = 1577; ab20_09.v = "GABNGQ"; ab20_09.sendAndLoad("http://armorbot.com/s_b", ab20_09, "POST"); _root.sub._visible = false; } }
Symbol 143 Button
on (release) { getURL ("http://www.armorbot.com/mytable/?id=1577", _blank); }
Symbol 147 Button
on (release) { _root.gotoAndPlay(16); _root.menuSound.stop(); }

Library Items

Symbol 1 Sound [menu]
Symbol 2 Sound [game]
Symbol 3 GraphicUsed by:56
Symbol 4 GraphicUsed by:56
Symbol 5 GraphicUsed by:56
Symbol 6 GraphicUsed by:56
Symbol 7 GraphicUsed by:56
Symbol 8 GraphicUsed by:56
Symbol 9 GraphicUsed by:10
Symbol 10 MovieClipUses:9Used by:56
Symbol 11 GraphicUsed by:56
Symbol 12 GraphicUsed by:13
Symbol 13 MovieClipUses:12Used by:56
Symbol 14 GraphicUsed by:15
Symbol 15 MovieClipUses:14Used by:56
Symbol 16 GraphicUsed by:56
Symbol 17 GraphicUsed by:56
Symbol 18 GraphicUsed by:19
Symbol 19 MovieClipUses:18Used by:56
Symbol 20 GraphicUsed by:33 56
Symbol 21 GraphicUsed by:22
Symbol 22 MovieClipUses:21Used by:56
Symbol 23 GraphicUsed by:56
Symbol 24 GraphicUsed by:25
Symbol 25 MovieClipUses:24Used by:56
Symbol 26 GraphicUsed by:56
Symbol 27 FontUsed by:28
Symbol 28 EditableTextUses:27Used by:56
Symbol 29 GraphicUsed by:56
Symbol 30 GraphicUsed by:56
Symbol 31 GraphicUsed by:56
Symbol 32 ShapeTweeningUsed by:56
Symbol 33 MovieClipUses:20Used by:56
Symbol 34 ShapeTweeningUsed by:56
Symbol 35 ShapeTweeningUsed by:56
Symbol 36 GraphicUsed by:56
Symbol 37 GraphicUsed by:56
Symbol 38 GraphicUsed by:56
Symbol 39 GraphicUsed by:40
Symbol 40 MovieClipUses:39Used by:56
Symbol 41 GraphicUsed by:56
Symbol 42 GraphicUsed by:56
Symbol 43 GraphicUsed by:56
Symbol 44 GraphicUsed by:56
Symbol 45 GraphicUsed by:46
Symbol 46 MovieClipUses:45Used by:47
Symbol 47 MovieClipUses:46Used by:56
Symbol 48 GraphicUsed by:49
Symbol 49 ButtonUses:48Used by:56
Symbol 50 ShapeTweeningUsed by:56
Symbol 51 GraphicUsed by:56
Symbol 52 GraphicUsed by:53
Symbol 53 MovieClipUses:52Used by:56
Symbol 54 ShapeTweeningUsed by:56
Symbol 55 GraphicUsed by:56
Symbol 56 MovieClipUses:3 4 5 6 7 8 10 11 13 15 16 17 19 20 22 23 25 26 28 29 30 31 32 33 34 35 36 37 38 40 41 42 43 44 47 49 50 51 53 54 55Used by:Timeline
Symbol 57 ShapeTweeningUsed by:Timeline
Symbol 58 FontUsed by:59
Symbol 59 TextUses:58Used by:Timeline
Symbol 60 GraphicUsed by:Timeline
Symbol 61 GraphicUsed by:63 147
Symbol 62 GraphicUsed by:63 147
Symbol 63 ButtonUses:61 62Used by:Timeline
Symbol 64 GraphicUsed by:66
Symbol 65 GraphicUsed by:66
Symbol 66 ButtonUses:64 65Used by:Timeline
Symbol 67 GraphicUsed by:69
Symbol 68 GraphicUsed by:69
Symbol 69 ButtonUses:67 68Used by:Timeline
Symbol 70 GraphicUsed by:72
Symbol 71 GraphicUsed by:72
Symbol 72 ButtonUses:70 71Used by:Timeline
Symbol 73 GraphicUsed by:82
Symbol 74 BitmapUsed by:75
Symbol 75 GraphicUses:74Used by:80
Symbol 76 BitmapUsed by:77
Symbol 77 GraphicUses:76Used by:80
Symbol 78 BitmapUsed by:79
Symbol 79 GraphicUses:78Used by:80
Symbol 80 MovieClipUses:75 77 79Used by:82
Symbol 81 GraphicUsed by:82
Symbol 82 MovieClipUses:73 80 81Used by:112  Timeline
Symbol 83 GraphicUsed by:84
Symbol 84 ButtonUses:83Used by:Timeline
Symbol 85 GraphicUsed by:86
Symbol 86 MovieClipUses:85Used by:Timeline
Symbol 87 FontUsed by:88 118 119 123 124 125 126 133 134 135 136 137 148
Symbol 88 TextUses:87Used by:97
Symbol 89 GraphicUsed by:97
Symbol 90 GraphicUsed by:97
Symbol 91 GraphicUsed by:97
Symbol 92 GraphicUsed by:97
Symbol 93 GraphicUsed by:97
Symbol 94 GraphicUsed by:97
Symbol 95 GraphicUsed by:97
Symbol 96 GraphicUsed by:97
Symbol 97 MovieClipUses:88 89 90 91 92 93 94 95 96Used by:Timeline
Symbol 98 ShapeTweeningUsed by:Timeline
Symbol 99 ShapeTweeningUsed by:Timeline
Symbol 100 GraphicUsed by:101
Symbol 101 MovieClipUses:100Used by:Timeline
Symbol 102 GraphicUsed by:103
Symbol 103 MovieClipUses:102Used by:Timeline
Symbol 104 GraphicUsed by:105
Symbol 105 MovieClipUses:104Used by:Timeline
Symbol 106 GraphicUsed by:107
Symbol 107 MovieClipUses:106Used by:Timeline
Symbol 108 GraphicUsed by:109
Symbol 109 MovieClipUses:108Used by:Timeline
Symbol 110 GraphicUsed by:111
Symbol 111 MovieClipUses:110Used by:Timeline
Symbol 112 MovieClipUses:82Used by:Timeline
Symbol 113 FontUsed by:114
Symbol 114 TextUses:113Used by:115
Symbol 115 MovieClipUses:114Used by:Timeline
Symbol 116 GraphicUsed by:117
Symbol 117 MovieClipUses:116Used by:Timeline
Symbol 118 TextUses:87Used by:Timeline
Symbol 119 EditableTextUses:87Used by:Timeline
Symbol 120 GraphicUsed by:122 132
Symbol 121 GraphicUsed by:122 132
Symbol 122 ButtonUses:120 121Used by:Timeline
Symbol 123 TextUses:87Used by:Timeline
Symbol 124 EditableTextUses:87Used by:Timeline
Symbol 125 EditableTextUses:87Used by:Timeline
Symbol 126 TextUses:87Used by:Timeline
Symbol 127 GraphicUsed by:128
Symbol 128 MovieClipUses:127Used by:Timeline
Symbol 129 ShapeTweeningUsed by:Timeline
Symbol 130 ShapeTweeningUsed by:Timeline
Symbol 131 GraphicUsed by:Timeline
Symbol 132 ButtonUses:120 121Used by:Timeline
Symbol 133 TextUses:87Used by:Timeline
Symbol 134 EditableTextUses:87Used by:Timeline
Symbol 135 TextUses:87Used by:Timeline
Symbol 136 EditableTextUses:87Used by:Timeline
Symbol 137 TextUses:87Used by:Timeline
Symbol 138 GraphicUsed by:140
Symbol 139 GraphicUsed by:140
Symbol 140 ButtonUses:138 139Used by:Timeline
Symbol 141 GraphicUsed by:143
Symbol 142 GraphicUsed by:143
Symbol 143 ButtonUses:141 142Used by:Timeline
Symbol 144 ShapeTweeningUsed by:Timeline
Symbol 145 GraphicUsed by:Timeline
Symbol 146 GraphicUsed by:Timeline
Symbol 147 ButtonUses:61 62Used by:Timeline
Symbol 148 TextUses:87Used by:Timeline
Symbol 149 ShapeTweeningUsed by:Timeline

Instance Names

"thanks"Frame 6Symbol 86 MovieClip
"five"Frame 16Symbol 101 MovieClip
"four"Frame 16Symbol 103 MovieClip
"three"Frame 16Symbol 105 MovieClip
"two"Frame 16Symbol 107 MovieClip
"one"Frame 16Symbol 109 MovieClip
"zero"Frame 16Symbol 111 MovieClip
"sbc"Frame 16Symbol 112 MovieClip
"star"Frame 16Symbol 117 MovieClip
"boundl"Frame 16Symbol 128 MovieClip
"boundt"Frame 16Symbol 128 MovieClip
"boundb"Frame 16Symbol 128 MovieClip
"boundr"Frame 16Symbol 128 MovieClip
"sub"Frame 26Symbol 140 Button
"star"Frame 26Symbol 117 MovieClip
"sub"Frame 26Symbol 143 Button

Special Tags

FileAttributes (69)Timeline Frame 1Access network only, Metadata not present, AS1/AS2.
ExportAssets (56)Timeline Frame 1Symbol 1 as "menu"
ExportAssets (56)Timeline Frame 1Symbol 2 as "game"

Dynamic Text Variables

pertSymbol 28 EditableText"<p align="center"><font face="Verdana_10pt_st" size="10" color="#ffffff" letterSpacing="0.000000" kerning="1">0%</font></p>"
scoreSymbol 119 EditableText""
minutesSymbol 124 EditableText"2"
secondsSymbol 125 EditableText"44"
scoreSymbol 134 EditableText""
nameVarSymbol 136 EditableText""




http://swfchan.com/8/39747/info.shtml
Created: 11/5 -2019 23:40:00 Last modified: 11/5 -2019 23:40:00 Server time: 15/05 -2024 17:17:57