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

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

Force Bouncer.swf

This is the info page for
Flash #48491

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


Text
Loading...

Start

By CheeseDude781

By CheeseDude781

By CheeseDude781

Instructions

Instructions

Instructions

Controls:
Use the WSAD or
Arrow Keys to
move around.

How to Play:
Simply move around and avoid
hitting the wall to the left.
Blocks coming from the right
will knock you into the wall
at fast speeds, so it is best to
fight against the force
(collide head on with the
blocks)

Back

Back

Back

Health -

<p align="left"><font face="South Park" size="21" color="#333333" letterSpacing="0.000000" kerning="1"><b>5</b></font></p>

Score -

<p align="left"><font face="South Park" size="21" color="#333333" letterSpacing="0.000000" kerning="1"><b>0</b></font></p>

BEST -

<p align="left"><font face="South Park" size="21" color="#333333" letterSpacing="0.000000" kerning="1"><b>0</b></font></p>

By CheeseDude781

Sound: ON

Sound: ON

Sound: ON

Sound: OFF

Sound: OFF

Sound: OFF

Score -

Best -

(Your best score
has been saved)

Menu

Menu

Menu

<p align="left"><font face="South Park" size="21" color="#666666" letterSpacing="0.000000" kerning="1"><b>0</b></font></p>

<p align="left"><font face="South Park" size="21" color="#666666" letterSpacing="0.000000" kerning="1"><b>0</b></font></p>

Game Over!

ActionScript [AS1/AS2]

Frame 1
function site(obj, item) { getURL ("http://www.cheesedude781.net/", "_blank"); } function qualitybest(obj, item) { _quality = "BEST"; } function qualityhigh(obj, item) { _quality = "HIGH"; } function qualitymedium(obj, item) { _quality = "MEDIUM"; } function qualitylow(obj, item) { _quality = "LOW"; } root_cm = new ContextMenu(); root_cm.hideBuiltInItems(); root_cm.customItems.push(new ContextMenuItem("--Force Bouncer--", mediatitle)); root_cm.customItems.push(new ContextMenuItem("CheeseDude781.net", site)); root_cm.customItems.push(new ContextMenuItem("Quality - Best", qualitybest)); root_cm.customItems.push(new ContextMenuItem("Quality - High", qualityhigh)); root_cm.customItems.push(new ContextMenuItem("Quality - Medium", qualitymedium)); root_cm.customItems.push(new ContextMenuItem("Quality - Low", qualitylow)); _root.menu = root_cm; total_bytes = _root.getBytesTotal(); loaded_bytes = _root.getBytesLoaded(); remaining_bytes = total_bytes - loaded_bytes; percent_done = int((loaded_bytes / total_bytes) * 100); bar.gotoAndStop(percent_done); if (percent_done > 99) { gotoAndPlay (3); }
Frame 2
gotoAndPlay (1);
Frame 21
_quality = "MEDIUM";
Frame 22
Mouse.hide();
Instance of Symbol 15 MovieClip "cursor" in Frame 22
onClipEvent (enterFrame) { this._x = _root._xmouse; this._y = _root._ymouse; }
Frame 60
_quality = "BEST"; stop();
Frame 62
_quality = "MEDIUM"; stop();
Instance of Symbol 48 MovieClip "circle" in Frame 62
onClipEvent (load) { xacceleration = 0; yacceleration = 0; acceleration = 0.5; friction = 0.1; this._parent.healthstats.healthamount = 5; this._parent.healthstats.scoreamount = 0; lose = 0; user = SharedObject.getLocal("CheeseDude781_Vars"); this._parent.healthstats.scorebest = user.data.best; if (this._parent.healthstats.scorebest == undefined) { this._parent.healthstats.scorebest = 0; } } onClipEvent (enterFrame) { this._x = this._x + xacceleration; this._y = this._y + yacceleration; if (Key.isDown(38) | Key.isDown(87)) { if (yacceleration > -10) { yacceleration = yacceleration - acceleration; } } if (Key.isDown(40) | Key.isDown(83)) { if (yacceleration < 10) { yacceleration = yacceleration + acceleration; } } if (Key.isDown(37) | Key.isDown(65)) { if (xacceleration > -10) { xacceleration = xacceleration - acceleration; } } if (Key.isDown(39) | Key.isDown(68)) { if (xacceleration < 10) { xacceleration = xacceleration + acceleration; } } if ((Key.isDown(38) == false) && (Key.isDown(40) == false)) { if (yacceleration > 0) { yacceleration = yacceleration - friction; } if (yacceleration < 0) { yacceleration = yacceleration + friction; } } if ((Key.isDown(37) == false) && (Key.isDown(39) == false)) { if (xacceleration > 0) { xacceleration = xacceleration - friction; } if (xacceleration < 0) { xacceleration = xacceleration + friction; } } if (hitTest(this._parent.wall)) { this._x = this._x + 20; xacceleration = 10; if (lose == 0) { this._parent.healthstats.healthamount = this._parent.healthstats.healthamount - 1; } } if (hitTest(this._parent.block)) { xacceleration = xacceleration - 0.8; } if (hitTest(this._parent.block2)) { xacceleration = xacceleration - 1.3; } if (hitTest(this._parent.block3)) { xacceleration = xacceleration - 1.5; } if (hitTest(this._parent.northwall)) { yacceleration = 5; } if (hitTest(this._parent.southwall)) { yacceleration = -5; } if (hitTest(this._parent.eastwall)) { xacceleration = -5; } if (lose == 0) { this._parent.healthstats.scoreamount = this._parent.healthstats.scoreamount + 5; if (this._parent.healthstats.healthamount < 1) { lose = 1; } } if (this._parent.healthstats.scorebest < this._parent.healthstats.scoreamount) { this._parent.healthstats.scorebest = this._parent.healthstats.scoreamount; user.data.best = this._parent.healthstats.scoreamount; } }
Instance of Symbol 43 MovieClip "block" in Frame 62
onClipEvent (load) { spawn1 = random(380) + 10; this._x = 614; this._y = spawn1; } onClipEvent (enterFrame) { this._x = this._x - 15; if (hitTest(this._parent.box.leftwall)) { spawn1 = random(380) + 10; this._x = 614; this._y = spawn1; } }
Instance of Symbol 43 MovieClip "block2" in Frame 62
onClipEvent (load) { spawn2 = random(380) + 10; this._x = 614; this._y = spawn2; } onClipEvent (enterFrame) { this._x = this._x - 20; if (hitTest(this._parent.box.leftwall)) { spawn2 = random(380) + 10; this._x = 614; this._y = spawn2; } }
Instance of Symbol 43 MovieClip "block3" in Frame 62
onClipEvent (load) { spawn3 = random(380) + 10; this._x = 614; this._y = spawn3; } onClipEvent (enterFrame) { this._x = this._x - 23; if (hitTest(this._parent.box.leftwall)) { spawn3 = random(380) + 10; this._x = 614; this._y = spawn3; } }
Instance of Symbol 15 MovieClip "cursor" in Frame 62
onClipEvent (enterFrame) { this._x = _root._xmouse; this._y = _root._ymouse; }
Frame 78
gotoAndPlay (22); stopAllSounds();
Symbol 18 MovieClip Frame 30
stop(); _root.circle.gotoAndStop(2);
Symbol 24 Button
on (release) { _root.play(); }
Symbol 35 Button
on (release) { getURL ("http://www.cheesedude781.net/", "_blank"); }
Symbol 36 Button
on (release) { gotoAndStop (62); }
Symbol 37 Button
on (release) { getURL ("http://www.cheesedude781.net/", "_blank"); }
Symbol 38 Button
on (release) { gotoAndStop (61); }
Symbol 47 Button
on (release) { gotoAndStop (60); }
Symbol 48 MovieClip Frame 1
stop();
Symbol 67 MovieClip Frame 1
stop();
Instance of Symbol 66 MovieClip in Symbol 67 MovieClip Frame 1
onClipEvent (load) { _root.healthused = 1; _root.healthused2 = 1; _root.healthused3 = 1; _root.healthused4 = 1; _root.healthused5 = 1; } onClipEvent (enterFrame) { if (_root.healthused == 1) { if (this._parent._parent.healthamount < 5) { _root.healthstats.h1.play(); _root.healthused = 0; } } if (_root.healthused2 == 1) { if (this._parent._parent.healthamount < 4) { _root.healthstats.h2.play(); _root.healthused2 = 0; } } if (_root.healthused3 == 1) { if (this._parent._parent.healthamount < 3) { _root.healthstats.h3.play(); _root.healthused3 = 0; } } if (_root.healthused4 == 1) { if (this._parent._parent.healthamount < 2) { _root.healthstats.h4.play(); _root.healthused4 = 0; } } if (_root.healthused5 == 1) { if (this._parent._parent.healthamount < 1) { _root.healthstats.h5.play(); _root.healthused5 = 0; _root.nextFrame(); } } }
Symbol 67 MovieClip Frame 50
stop();
Symbol 77 Button
on (release) { nextFrame(); stopAllSounds(); }
Symbol 81 Button
on (release) { prevFrame(); }
Symbol 82 MovieClip Frame 1
stop();
Symbol 94 Button
on (release) { _root.play(); }
Instance of Symbol 86 MovieClip in Symbol 97 MovieClip Frame 1
onClipEvent (enterFrame) { this._parent.scoreresult = this._parent._parent._parent._parent._parent.healthstats.scoreamount; this._parent.bestresult = this._parent._parent._parent._parent._parent.healthstats.scorebest; }
Instance of Symbol 100 MovieClip in Symbol 101 MovieClip Frame 1
on (press) { startDrag (this._parent._parent._parent.gameoverwindow); } on (releaseOutside) { stopDrag(); } on (release) { stopDrag(); }
Symbol 102 MovieClip Frame 20
stop();
Symbol 103 MovieClip Frame 50
stop();

Library Items

Symbol 1 Sound [moviemusic]Used by:82
Symbol 2 GraphicUsed by:3
Symbol 3 MovieClipUses:2Used by:6
Symbol 4 ShapeTweeningUsed by:6
Symbol 5 GraphicUsed by:6
Symbol 6 MovieClipUses:3 4 5Used by:Timeline
Symbol 7 FontUsed by:8 21 25 26 27 29 30 31 40 41 44 45 46 61 62 68 69 70 71 73 74 75 76 78 79 80 88 89 90 91 92 93 95 96 99
Symbol 8 TextUses:7Used by:Timeline
Symbol 9 GraphicUsed by:10
Symbol 10 MovieClipUses:9Used by:Timeline
Symbol 11 BitmapUsed by:12
Symbol 12 GraphicUses:11Used by:13
Symbol 13 ButtonUses:12Used by:Timeline
Symbol 14 GraphicUsed by:15
Symbol 15 MovieClipUses:14Used by:Timeline
Symbol 16 GraphicUsed by:17 48
Symbol 17 MovieClipUses:16Used by:18
Symbol 18 MovieClipUses:17Used by:Timeline
Symbol 19 GraphicUsed by:20
Symbol 20 MovieClipUses:19Used by:Timeline
Symbol 21 TextUses:7Used by:24 36
Symbol 22 SoundUsed by:24 28 32 35 36 37 38 47
Symbol 23 SoundUsed by:24 28 32 35 36 37 38 47
Symbol 24 ButtonUses:21 22 23Used by:Timeline
Symbol 25 TextUses:7Used by:28 37
Symbol 26 TextUses:7Used by:28 37
Symbol 27 TextUses:7Used by:28 37
Symbol 28 ButtonUses:25 26 27 22 23Used by:Timeline
Symbol 29 TextUses:7Used by:32 38
Symbol 30 TextUses:7Used by:32 38
Symbol 31 TextUses:7Used by:32 38
Symbol 32 ButtonUses:29 30 31 22 23Used by:Timeline
Symbol 33 GraphicUsed by:34
Symbol 34 ButtonUses:33Used by:35
Symbol 35 ButtonUses:34 22 23Used by:Timeline
Symbol 36 ButtonUses:21 22 23Used by:Timeline
Symbol 37 ButtonUses:25 26 27 22 23Used by:Timeline
Symbol 38 ButtonUses:29 30 31 22 23Used by:Timeline
Symbol 39 GraphicUsed by:Timeline
Symbol 40 TextUses:7Used by:Timeline
Symbol 41 TextUses:7Used by:Timeline
Symbol 42 GraphicUsed by:43
Symbol 43 MovieClipUses:42Used by:Timeline
Symbol 44 TextUses:7Used by:47
Symbol 45 TextUses:7Used by:47
Symbol 46 TextUses:7Used by:47
Symbol 47 ButtonUses:44 45 46 22 23Used by:Timeline
Symbol 48 MovieClipUses:16Used by:Timeline
Symbol 49 GraphicUsed by:50
Symbol 50 MovieClipUses:49Used by:Timeline
Symbol 51 GraphicUsed by:52
Symbol 52 MovieClipUses:51Used by:Timeline
Symbol 53 GraphicUsed by:54
Symbol 54 MovieClipUses:53Used by:Timeline
Symbol 55 GraphicUsed by:56
Symbol 56 MovieClipUses:55Used by:Timeline
Symbol 57 GraphicUsed by:60
Symbol 58 GraphicUsed by:59
Symbol 59 MovieClipUses:58Used by:60
Symbol 60 MovieClipUses:57 59Used by:Timeline
Symbol 61 TextUses:7Used by:72
Symbol 62 EditableTextUses:7Used by:72
Symbol 63 GraphicUsed by:64
Symbol 64 MovieClipUses:63Used by:67
Symbol 65 GraphicUsed by:66
Symbol 66 MovieClipUses:65Used by:67
Symbol 67 MovieClipUses:64 66Used by:72
Symbol 68 TextUses:7Used by:72
Symbol 69 EditableTextUses:7Used by:72
Symbol 70 TextUses:7Used by:72
Symbol 71 EditableTextUses:7Used by:72
Symbol 72 MovieClipUses:61 62 67 68 69 70 71Used by:Timeline
Symbol 73 TextUses:7Used by:Timeline
Symbol 74 TextUses:7Used by:77
Symbol 75 TextUses:7Used by:77
Symbol 76 TextUses:7Used by:77
Symbol 77 ButtonUses:74 75 76Used by:82
Symbol 78 TextUses:7Used by:81
Symbol 79 TextUses:7Used by:81
Symbol 80 TextUses:7Used by:81
Symbol 81 ButtonUses:78 79 80Used by:82
Symbol 82 MovieClipUses:77 1 81Used by:Timeline
Symbol 83 GraphicUsed by:84
Symbol 84 MovieClipUses:83Used by:103
Symbol 85 GraphicUsed by:86
Symbol 86 MovieClipUses:85Used by:97
Symbol 87 GraphicUsed by:97
Symbol 88 TextUses:7Used by:97
Symbol 89 TextUses:7Used by:97
Symbol 90 TextUses:7Used by:97
Symbol 91 TextUses:7Used by:94
Symbol 92 TextUses:7Used by:94
Symbol 93 TextUses:7Used by:94
Symbol 94 ButtonUses:91 92 93Used by:97
Symbol 95 EditableTextUses:7Used by:97
Symbol 96 EditableTextUses:7Used by:97
Symbol 97 MovieClipUses:86 87 88 89 90 94 95 96Used by:101
Symbol 98 GraphicUsed by:100
Symbol 99 TextUses:7Used by:100
Symbol 100 MovieClipUses:98 99Used by:101
Symbol 101 MovieClipUses:97 100Used by:102
Symbol 102 MovieClipUses:101Used by:103
Symbol 103 MovieClipUses:84 102Used by:Timeline
Symbol 104 GraphicUsed by:105
Symbol 105 ButtonUses:104Used by:Timeline

Instance Names

"bar"Frame 1Symbol 6 MovieClip
"cursor"Frame 21Symbol 15 MovieClip
"cursor"Frame 22Symbol 15 MovieClip
"circle"Frame 62Symbol 48 MovieClip
"block"Frame 62Symbol 43 MovieClip
"block2"Frame 62Symbol 43 MovieClip
"block3"Frame 62Symbol 43 MovieClip
"northwall"Frame 62Symbol 50 MovieClip
"southwall"Frame 62Symbol 52 MovieClip
"eastwall"Frame 62Symbol 54 MovieClip
"wall"Frame 62Symbol 56 MovieClip
"box"Frame 62Symbol 60 MovieClip
"healthstats"Frame 62Symbol 72 MovieClip
"cursor"Frame 62Symbol 15 MovieClip
"leftwall"Symbol 60 MovieClip Frame 1Symbol 59 MovieClip
"h5"Symbol 72 MovieClip Frame 1Symbol 67 MovieClip
"h4"Symbol 72 MovieClip Frame 1Symbol 67 MovieClip
"h3"Symbol 72 MovieClip Frame 1Symbol 67 MovieClip
"h2"Symbol 72 MovieClip Frame 1Symbol 67 MovieClip
"h1"Symbol 72 MovieClip Frame 1Symbol 67 MovieClip
"windowstats"Symbol 102 MovieClip Frame 1Symbol 101 MovieClip
"gameoverwindow"Symbol 103 MovieClip Frame 40Symbol 102 MovieClip

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS1/AS2.
ExportAssets (56)Timeline Frame 1Symbol 1 as "moviemusic"

Dynamic Text Variables

healthamountSymbol 62 EditableText"<p align="left"><font face="South Park" size="21" color="#333333" letterSpacing="0.000000" kerning="1"><b>5</b></font></p>"
scoreamountSymbol 69 EditableText"<p align="left"><font face="South Park" size="21" color="#333333" letterSpacing="0.000000" kerning="1"><b>0</b></font></p>"
scorebestSymbol 71 EditableText"<p align="left"><font face="South Park" size="21" color="#333333" letterSpacing="0.000000" kerning="1"><b>0</b></font></p>"
scoreresultSymbol 95 EditableText"<p align="left"><font face="South Park" size="21" color="#666666" letterSpacing="0.000000" kerning="1"><b>0</b></font></p>"
bestresultSymbol 96 EditableText"<p align="left"><font face="South Park" size="21" color="#666666" letterSpacing="0.000000" kerning="1"><b>0</b></font></p>"




http://swfchan.com/10/48491/info.shtml
Created: 29/4 -2019 20:24:47 Last modified: 29/4 -2019 20:24:47 Server time: 11/03 -2025 12:23:57