| STORY LOOP FURRY PORN GAMES C SERVICES [?] [R] RND POPULAR | Archived flashes: 231346 |
| /disc/ · /res/ — /show/ · /fap/ · /gg/ · /swf/ | P0001 · P2623 · P5245 |
![]() | This is the info page for Flash #72518 |
| 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 1maus.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 1onClipEvent (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 1onClipEvent (load) { this.gotoAndStop(1); }Instance of Symbol 50 MovieClip "floor" in Frame 1onClipEvent (load) { this.gotoAndStop(1); }Instance of Symbol 93 MovieClip in Frame 1onClipEvent (enterFrame) { _y = (_y + ((_root.player._y - _y) / 4)); _x = (_x + ((_root.player._x - _x) / 4)); }Symbol 22 Buttonon (rollOver) { ground.gotoAndStop(5); floor.gotoAndStop(5); } on (rollOut) { ground.gotoAndStop(4); floor.gotoAndStop(4); }Symbol 79 Buttonon (release) { ground.gotoAndStop(3); floor.gotoAndStop(3); }Symbol 82 Buttonon (release) { ground.gotoAndStop(4); floor.gotoAndStop(4); }Symbol 85 Buttonon (release) { floor.gotoAndStop(2); ground.gotoAndStop(2); }Symbol 93 MovieClip Frame 1function 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 Graphic | Used by:Timeline | |
| Symbol 2 Graphic | Used by:3 | |
| Symbol 3 MovieClip | Uses:2 | Used by:Timeline |
| Symbol 4 Graphic | Used by:17 64 79 | |
| Symbol 5 Graphic | Used by:17 | |
| Symbol 6 Graphic | Used by:16 17 | |
| Symbol 7 Font | Used by:8 9 11 13 53 54 55 58 60 62 67 68 69 72 76 | |
| Symbol 8 Text | Uses:7 | Used by:16 17 |
| Symbol 9 Text | Uses:7 | Used by:16 |
| Symbol 10 Graphic | Used by:16 | |
| Symbol 11 Text | Uses:7 | Used by:16 |
| Symbol 12 Graphic | Used by:16 | |
| Symbol 13 Text | Uses:7 | Used by:16 |
| Symbol 14 Graphic | Used by:16 | |
| Symbol 15 Graphic | Used by:16 | |
| Symbol 16 MovieClip | Uses:6 8 9 10 11 12 13 14 15 | Used by:17 |
| Symbol 17 Button | Uses:4 5 16 6 8 | Used by:Timeline |
| Symbol 18 Graphic | Used by:19 | |
| Symbol 19 MovieClip | Uses:18 | Used by:Timeline |
| Symbol 20 Graphic | Used by:Timeline | |
| Symbol 21 Graphic | Used by:22 | |
| Symbol 22 Button | Uses:21 | Used by:Timeline |
| Symbol 23 Graphic | Used by:Timeline | |
| Symbol 24 Graphic | Used by:28 | |
| Symbol 25 Graphic | Used by:28 | |
| Symbol 26 Graphic | Used by:28 | |
| Symbol 27 Graphic | Used by:28 | |
| Symbol 28 MovieClip | Uses:24 25 26 27 | Used by:36 |
| Symbol 29 Graphic | Used by:36 | |
| Symbol 30 Graphic | Used by:35 | |
| Symbol 31 Graphic | Used by:35 | |
| Symbol 32 Graphic | Used by:35 | |
| Symbol 33 Graphic | Used by:35 | |
| Symbol 34 Graphic | Used by:35 | |
| Symbol 35 MovieClip | Uses:30 31 32 33 34 | Used by:36 |
| Symbol 36 MovieClip | Uses:28 29 35 | Used by:Timeline |
| Symbol 37 Graphic | Used by:38 | |
| Symbol 38 MovieClip | Uses:37 | Used by:Timeline |
| Symbol 39 Graphic | Used by:44 | |
| Symbol 40 Graphic | Used by:44 | |
| Symbol 41 Graphic | Used by:44 | |
| Symbol 42 Graphic | Used by:44 | |
| Symbol 43 Graphic | Used by:44 | |
| Symbol 44 MovieClip | Uses:39 40 41 42 43 | Used by:Timeline |
| Symbol 45 Graphic | Used by:50 | |
| Symbol 46 Graphic | Used by:50 | |
| Symbol 47 Graphic | Used by:50 | |
| Symbol 48 Graphic | Used by:50 | |
| Symbol 49 Graphic | Used by:50 | |
| Symbol 50 MovieClip | Uses:45 46 47 48 49 | Used by:Timeline |
| Symbol 51 Graphic | Used by:64 | |
| Symbol 52 Graphic | Used by:63 64 | |
| Symbol 53 Text | Uses:7 | Used by:63 64 |
| Symbol 54 Text | Uses:7 | Used by:63 |
| Symbol 55 Text | Uses:7 | Used by:63 |
| Symbol 56 Graphic | Used by:63 | |
| Symbol 57 Graphic | Used by:63 | |
| Symbol 58 Text | Uses:7 | Used by:63 |
| Symbol 59 Graphic | Used by:63 | |
| Symbol 60 Text | Uses:7 | Used by:63 |
| Symbol 61 Graphic | Used by:63 | |
| Symbol 62 Text | Uses:7 | Used by:63 |
| Symbol 63 MovieClip | Uses:52 53 54 55 56 57 58 59 60 61 62 | Used by:64 |
| Symbol 64 Button | Uses:4 51 63 52 53 | Used by:Timeline |
| Symbol 65 Graphic | Used by:79 | |
| Symbol 66 Graphic | Used by:78 79 | |
| Symbol 67 Text | Uses:7 | Used by:78 79 |
| Symbol 68 Text | Uses:7 | Used by:78 |
| Symbol 69 Text | Uses:7 | Used by:78 |
| Symbol 70 Graphic | Used by:78 | |
| Symbol 71 Graphic | Used by:78 | |
| Symbol 72 Text | Uses:7 | Used by:78 |
| Symbol 73 Graphic | Used by:78 | |
| Symbol 74 Graphic | Used by:78 | |
| Symbol 75 Graphic | Used by:78 | |
| Symbol 76 Text | Uses:7 | Used by:78 |
| Symbol 77 Graphic | Used by:78 | |
| Symbol 78 MovieClip | Uses:66 67 68 69 70 71 72 73 74 75 76 77 | Used by:79 |
| Symbol 79 Button | Uses:4 65 78 66 67 | Used by:Timeline |
| Symbol 80 Graphic | Used by:82 | |
| Symbol 81 Graphic | Used by:82 | |
| Symbol 82 Button | Uses:80 81 | Used by:Timeline |
| Symbol 83 Graphic | Used by:85 | |
| Symbol 84 Graphic | Used by:85 | |
| Symbol 85 Button | Uses:83 84 | Used by:Timeline |
| Symbol 86 Graphic | Used by:87 | |
| Symbol 87 MovieClip | Uses:86 | Used by:Timeline |
| Symbol 88 Graphic | Used by:90 91 | |
| Symbol 89 Graphic | Used by:90 91 | |
| Symbol 90 MovieClip | Uses:88 89 | Used by:Timeline |
| Symbol 91 MovieClip | Uses:88 89 | Used by:Timeline |
| Symbol 92 Graphic | Used by:93 | |
| Symbol 93 MovieClip | Uses:92 | Used by:Timeline |
| Symbol 94 Sound | Used by:Timeline |
Instance Names
| "si3" | Frame 1 | Symbol 17 Button |
| "player" | Frame 1 | Symbol 36 MovieClip |
| "water" | Frame 1 | Symbol 38 MovieClip |
| "ground" | Frame 1 | Symbol 44 MovieClip |
| "floor" | Frame 1 | Symbol 50 MovieClip |
| "si1" | Frame 1 | Symbol 64 Button |
| "si2" | Frame 1 | Symbol 79 Button |
| "but1" | Frame 1 | Symbol 85 Button |
| "maus" | Frame 1 | Symbol 87 MovieClip |
| "maus2" | Frame 1 | Symbol 90 MovieClip |
| "maus3" | Frame 1 | Symbol 91 MovieClip |
Special Tags
| FileAttributes (69) | Timeline Frame 1 | Access local files only, Metadata not present, AS1/AS2. |
|
|