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

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

My first Flash game -D.swf

This is the info page for
Flash #72518

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


Text
Now... this is a bit tricky...

Theres this nice, giant vine right here,
but nowhere to climb up?

Maybe something will apear if you hover
the mouse over...

Just a guess...

Hello! Welcome to my little world!

The focus on this project is to
interact with objects you see...

... in order to change parts of the
world and progress!

Lets start with that button
and open the cage...

Oh yeah, A&D moves you left and
right, and W makes you jump.

:D

Uh oh...

Looks like the bridge is still up...

I wonder if the switch is somewhere
around...

Did you see anything? Was there
somthing you missed?

You should double-check...

ActionScript [AS1/AS2]

Frame 1
maus.onEnterFrame = function () { var _local3 = _root._xmouse; var _local4 = _root._ymouse; if (Math.abs(_local3 - this._x) < 1) { this._x = _local3; this._y = _local4; } else { this._x = this._x - ((this._x - _local3) / 4); this._y = this._y - ((this._y - _local4) / 4); } }; maus2.onEnterFrame = function () { var _local3 = _root._xmouse; var _local4 = _root._ymouse; if (Math.abs(_local3 - this._x) < 1) { this._x = _local3; this._y = _local4; } else { this._x = this._x - ((this._x - _local3) / 8); this._y = this._y - ((this._y - _local4) / 8); } }; maus3.onEnterFrame = function () { var _local3 = _root._xmouse; var _local4 = _root._ymouse; if (Math.abs(_local3 - this._x) < 1) { this._x = _local3; this._y = _local4; } else { this._x = this._x - ((this._x - _local3) / 12); this._y = this._y - ((this._y - _local4) / 12); } };
Instance of Symbol 36 MovieClip "player" in Frame 1
onClipEvent (load) { var grav = 0; var speed = 5; var jumpHeight = 15; var slow = 0.7; var slowspd = (speed / 1.5); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); while (_root.ground.hitTest(_x, _y, true)) { _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { if (grav > 0) { grav = grav * slow; } speed = slowspd; } else { speed = setspeed; } if (Key.isDown(68)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else { this.gotoAndStop(2); } } else if (Key.isDown(65)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else { this.gotoAndStop(2); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(79))) && (!Key.isDown(73))) { this.gotoAndStop(3); } if ((((Key.isDown(79) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(73))) { this.gotoAndStop(5); } if ((((Key.isDown(73) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(79))) { this.gotoAndStop(4); } if (Key.isDown(87) && (_root.ground.hitTest(_x, _y + 3, true))) { grav = -jumpHeight; _y = (_y - 4); this.gotoAndStop(2); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } }
Instance of Symbol 44 MovieClip "ground" in Frame 1
onClipEvent (load) { this.gotoAndStop(1); }
Instance of Symbol 50 MovieClip "floor" in Frame 1
onClipEvent (load) { this.gotoAndStop(1); }
Instance of Symbol 93 MovieClip in Frame 1
onClipEvent (enterFrame) { _y = (_y + ((_root.player._y - _y) / 4)); _x = (_x + ((_root.player._x - _x) / 4)); }
Symbol 22 Button
on (rollOver) { ground.gotoAndStop(5); floor.gotoAndStop(5); } on (rollOut) { ground.gotoAndStop(4); floor.gotoAndStop(4); }
Symbol 79 Button
on (release) { ground.gotoAndStop(3); floor.gotoAndStop(3); }
Symbol 82 Button
on (release) { ground.gotoAndStop(4); floor.gotoAndStop(4); }
Symbol 85 Button
on (release) { floor.gotoAndStop(2); ground.gotoAndStop(2); }
Symbol 93 MovieClip Frame 1
function camControl() { parentColor.setTransform(camColor.getTransform()); var _local4 = sX / this._width; var _local3 = sY / this._height; _parent._x = cX - (this._x * _local4); _parent._y = cY - (this._y * _local3); _parent._xscale = 100 * _local4; _parent._yscale = 100 * _local3; } function resetStage() { var _local2 = {ra:100, rb:0, ga:100, gb:0, ba:100, bb:0, aa:100, ab:0}; parentColor.setTransform(_local2); _parent._xscale = 100; _parent._yscale = 100; _parent._x = 0; _parent._y = 0; } parentColor.setTransform(camColor.getTransform()); this._visible = false; var oldMode = Stage.scaleMode; Stage.scaleMode = "exactFit"; var cX = (Stage.width / 2); var cY = (Stage.height / 2); var sX = Stage.width; var sY = Stage.height; Stage.scaleMode = oldMode; var camColor = new Color(this); var parentColor = new Color(_parent); this.onEnterFrame = camControl; camControl(); this.onUnload = resetStage;

Library Items

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

Instance Names

"si3"Frame 1Symbol 17 Button
"player"Frame 1Symbol 36 MovieClip
"water"Frame 1Symbol 38 MovieClip
"ground"Frame 1Symbol 44 MovieClip
"floor"Frame 1Symbol 50 MovieClip
"si1"Frame 1Symbol 64 Button
"si2"Frame 1Symbol 79 Button
"but1"Frame 1Symbol 85 Button
"maus"Frame 1Symbol 87 MovieClip
"maus2"Frame 1Symbol 90 MovieClip
"maus3"Frame 1Symbol 91 MovieClip

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS1/AS2.




http://swfchan.com/15/72518/info.shtml
Created: 8/4 -2019 17:55:28 Last modified: 8/4 -2019 17:55:28 Server time: 17/05 -2024 05:06:51