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/45497738?noj=FRM45497738-16DC" width="1" height="1"></div>

Mountain Frog.swf

This is the info page for
Flash #48640

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


Text
Mountain Frog

Play Game

How to Play

How to Play

Play More Games

Play More Games

Back

Back

A
D
W
Mouse
Mouse Click

Left
Right
Jump
Aim Tongue
Lick

You must collect all the flies
to proceed to the next level

?

Ouch!

Again?

Again?

Success!

ActionScript [AS1/AS2]

Frame 1
stopAllSounds(); _root.bytesLoaded = _root.getBytesLoaded(); _root.bytesTotal = _root.getBytesTotal(); _root.percentLoaded = Math.round(100 * (_root.bytesLoaded / _root.bytesTotal)); _root.percentLoadedText = _root.percentLoaded + "%"; _root.bar.gotoAndStop(percentLoaded);
Frame 2
if (_root.percentLoaded == 100) { gotoAndPlay (3); } else { gotoAndPlay (1); }
Frame 3
stop();
Frame 4
stage.showmenu = false; var cricket = new Sound(); cricket.attachSound("crickets"); cricket.start(0, 0); var buzz = new Sound(); buzz.attachSound("buzz"); var lick = new Sound(); lick.attachSound("tongue"); Color.prototype.setTint = function (r, g, b, amount) { var _local2 = new Object(); _local2.ra = (_local2.ga = (_local2.ba = 100 - amount)); var _local3 = amount / 100; _local2.rb = r * _local3; _local2.gb = g * _local3; _local2.bb = b * _local3; this.setTransform(_local2); };
Frame 11
stop();
Frame 12
stop();
Frame 13
stopAllSounds();
Instance of Symbol 72 MovieClip in Frame 13
onClipEvent (load) { play(); }
Frame 14
stop(); score = 0; _quality = "low"; fly = 0; wait = 10; currentlevel = 13; this.onEnterFrame = function () { wait--; if ((wait < 0) and (score == (fly * 10))) { play(); } };
Instance of Symbol 114 MovieClip in Frame 14
/* no clip actions */
Instance of Symbol 72 MovieClip in Frame 14
onClipEvent (load) { play(); }
Frame 15
stop(); score = 0; _quality = "low"; fly = 0; wait = 10; currentlevel = 14; this.onEnterFrame = function () { wait--; if ((wait < 0) and (score == (fly * 10))) { play(); } };
Instance of Symbol 72 MovieClip in Frame 15
onClipEvent (load) { play(); }
Frame 16
stop(); score = 0; _quality = "low"; fly = 0; wait = 10; currentlevel = 15; this.onEnterFrame = function () { wait--; if ((wait < 0) and (score == (fly * 10))) { play(); } };
Instance of Symbol 72 MovieClip in Frame 16
onClipEvent (load) { play(); }
Frame 17
stop(); score = 0; _quality = "low"; fly = 0; wait = 10; currentlevel = 16; this.onEnterFrame = function () { wait--; if ((wait < 0) and (score == (fly * 10))) { stopAllSounds(); nextFrame(); } };
Instance of Symbol 72 MovieClip in Frame 17
onClipEvent (load) { play(); }
Frame 18
stop(); score = 0; _quality = "low"; currentlevel = 17;
Instance of Symbol 169 MovieClip in Frame 18
onClipEvent (enterFrame) { this.gotoAndStop(Math.round(2 * _parent.game.frog.hp)); }
Instance of Symbol 169 MovieClip in Frame 18
onClipEvent (enterFrame) { this.gotoAndStop(Math.round(0.2 * _parent.game.boss.hp)); }
Frame 19
stop();
Symbol 20 Button
on (release) { getURL ("http://www.armorgames.com", "blank"); }
Symbol 27 MovieClip Frame 81
_root.play(); _root.play();
Symbol 40 Button
on (release) { stopAllSounds(); _root.gotoAndStop("game"); }
Symbol 45 Button
on (release) { _root.gotoAndStop("howto"); }
Symbol 49 Button
on (release) { getURL ("http://www.armorgames.com", "_blank"); }
Symbol 57 Button
on (release) { gotoAndPlay (5); }
Symbol 70 Button
on (release) { _root.gotoAndStop(_root.currentlevel + 1); }
Symbol 72 MovieClip Frame 11
stop();
Symbol 76 MovieClip Frame 1
_alpha = 0;
Symbol 95 MovieClip Frame 12
_parent.gotoAndStop("stand");
Symbol 102 MovieClip Frame 6
stop();
Instance of Symbol 78 MovieClip "ground" in Symbol 114 MovieClip Frame 1
onClipEvent (load) { _alpha = 0; }
Instance of Symbol 103 MovieClip "frog" in Symbol 114 MovieClip Frame 1
onClipEvent (load) { xspeed = 0; yspeed = 0; gotoAndStop ("stand"); memory = new _parent.memory(); } onClipEvent (mouseDown) { shift = true; } onClipEvent (enterFrame) { left = Key.isDown(65); right = Key.isDown(68); jump = Key.isDown(87); if (this.hitTest(_parent.death)) { _root.gotoAndStop("dead"); } if (shift and (_parent.tongue.alive == false)) { _root.lick.start(0, 0); _parent.tongue._x = _x; _parent.tongue._y = _y; angle = ((-Math.atan2(_y - _parent._ymouse, _parent._xmouse - _x)) * 180) / Math.PI; _parent.tongue._rotation = angle; _parent.tongue.rot = angle; _parent.tongue.alive = true; _parent.tongue.myspeed = 50; _parent.tongue.cooldown = 15; shift = false; } yspeed++; if (_parent.ground.hitTest(_x + _parent._x, (_y + _parent._y) + 20, true)) { while (_parent.ground.hitTest(_x + _parent._x, (_y + _parent._y) + 19, true)) { _y = (_y-1); } yspeed = 0; if (jump) { gotoAndStop ("jump"); } else if (left or right) { gotoAndStop ("move"); } else { gotoAndStop ("stand"); } if (jump) { yspeed = yspeed - 15; } } xspeed = xspeed / 1.5; if (left) { xspeed = xspeed - 3; } if (right) { xspeed = xspeed + 3; } if (xspeed > 1) { _xscale = 100; } else if (xspeed < -1) { _xscale = -100; } _y = (_y + yspeed); _x = (_x + xspeed); _parent._x = _parent._x - (((_parent._x + _x) - 300) / 25); _parent._y = _parent._y - (((_parent._y + _y) - 250) / 25); }
Instance of Symbol 105 MovieClip "tongue" in Symbol 114 MovieClip Frame 1
onClipEvent (load) { myspeed = 50; alive = false; rot = 0; cooldown = 15; } onClipEvent (enterFrame) { if (alive) { angle = ((-Math.atan2(_y - _parent.frog._y, _parent.frog._x - _x)) * 180) / Math.PI; _parent.tongue._rotation = angle - 180; if (myspeed < 0) { rot = angle - 180; myspeed = myspeed - 1; } _alpha = 100; myspeed = myspeed - 5; _x = (_x + (Math.cos((rot * Math.PI) / 180) * myspeed)); _y = (_y + (Math.sin((rot * Math.PI) / 180) * myspeed)); _parent.line.clear(); _parent.line.lineStyle(2, 16711680); _parent.line.moveTo(_parent.frog._x, _parent.frog._y); _parent.line.lineTo(_x, _y); cooldown--; if (this.hitTest(_parent.frog) and (cooldown < 0)) { _parent.line.clear(); alive = false; _alpha = 0; _parent.line.clear(); } } else { _alpha = 0; _parent.line.clear(); } }
Instance of Symbol 110 MovieClip in Symbol 114 MovieClip Frame 1
onClipEvent (load) { tx = _x; ty = _y; snap = false; _root.fly++; } onClipEvent (enterFrame) { _x = (_x + ((Math.random() * 6) - 3)); _y = (_y + ((Math.random() * 6) - 3)); _x = (_x - (((-tx) + _x) / 25)); _y = (_y - (((-ty) + _y) / 25)); if (this.hitTest(_parent.tongue)) { snap = true; } distance = Math.abs(_x - _parent.frog._x) + Math.abs(_y - _parent.frog._y); if (snap) { this._x = _parent.tongue._x; this._y = _parent.tongue._y; } if (this.hitTest(_parent.frog)) { this.swapDepths(_root.getNextHighestDepth()); _root.score = _root.score + 10; if (Math.random() < 0.5) { _root.croak.start(0, 0); } this.removeMovieClip(); } }
Instance of Symbol 110 MovieClip in Symbol 114 MovieClip Frame 1
onClipEvent (load) { tx = _x; ty = _y; snap = false; _root.fly++; } onClipEvent (enterFrame) { _x = (_x + ((Math.random() * 6) - 3)); _y = (_y + ((Math.random() * 6) - 3)); _x = (_x - (((-tx) + _x) / 25)); _y = (_y - (((-ty) + _y) / 25)); if (this.hitTest(_parent.tongue)) { snap = true; } distance = Math.abs(_x - _parent.frog._x) + Math.abs(_y - _parent.frog._y); if (snap) { this._x = _parent.tongue._x; this._y = _parent.tongue._y; } if (this.hitTest(_parent.frog)) { this.swapDepths(_root.getNextHighestDepth()); _root.score = _root.score + 10; if (Math.random() < 0.5) { _root.croak.start(0, 0); } this.removeMovieClip(); } }
Instance of Symbol 110 MovieClip in Symbol 114 MovieClip Frame 1
onClipEvent (load) { tx = _x; ty = _y; snap = false; _root.fly++; } onClipEvent (enterFrame) { _x = (_x + ((Math.random() * 6) - 3)); _y = (_y + ((Math.random() * 6) - 3)); _x = (_x - (((-tx) + _x) / 25)); _y = (_y - (((-ty) + _y) / 25)); if (this.hitTest(_parent.tongue)) { snap = true; } distance = Math.abs(_x - _parent.frog._x) + Math.abs(_y - _parent.frog._y); if (snap) { this._x = _parent.tongue._x; this._y = _parent.tongue._y; } if (this.hitTest(_parent.frog)) { this.swapDepths(_root.getNextHighestDepth()); _root.score = _root.score + 10; if (Math.random() < 0.5) { _root.croak.start(0, 0); } this.removeMovieClip(); } }
Instance of Symbol 110 MovieClip in Symbol 114 MovieClip Frame 1
onClipEvent (load) { tx = _x; ty = _y; snap = false; _root.fly++; } onClipEvent (enterFrame) { _x = (_x + ((Math.random() * 6) - 3)); _y = (_y + ((Math.random() * 6) - 3)); _x = (_x - (((-tx) + _x) / 25)); _y = (_y - (((-ty) + _y) / 25)); if (this.hitTest(_parent.tongue)) { snap = true; } distance = Math.abs(_x - _parent.frog._x) + Math.abs(_y - _parent.frog._y); if (snap) { this._x = _parent.tongue._x; this._y = _parent.tongue._y; } if (this.hitTest(_parent.frog)) { this.swapDepths(_root.getNextHighestDepth()); _root.score = _root.score + 10; if (Math.random() < 0.5) { _root.croak.start(0, 0); } this.removeMovieClip(); } }
Instance of Symbol 110 MovieClip in Symbol 114 MovieClip Frame 1
onClipEvent (load) { tx = _x; ty = _y; snap = false; _root.fly++; } onClipEvent (enterFrame) { _x = (_x + ((Math.random() * 6) - 3)); _y = (_y + ((Math.random() * 6) - 3)); _x = (_x - (((-tx) + _x) / 25)); _y = (_y - (((-ty) + _y) / 25)); if (this.hitTest(_parent.tongue)) { snap = true; } distance = Math.abs(_x - _parent.frog._x) + Math.abs(_y - _parent.frog._y); if (snap) { this._x = _parent.tongue._x; this._y = _parent.tongue._y; } if (this.hitTest(_parent.frog)) { this.swapDepths(_root.getNextHighestDepth()); _root.score = _root.score + 10; if (Math.random() < 0.5) { _root.croak.start(0, 0); } this.removeMovieClip(); } }
Instance of Symbol 110 MovieClip in Symbol 114 MovieClip Frame 1
onClipEvent (load) { tx = _x; ty = _y; snap = false; _root.fly++; } onClipEvent (enterFrame) { _x = (_x + ((Math.random() * 6) - 3)); _y = (_y + ((Math.random() * 6) - 3)); _x = (_x - (((-tx) + _x) / 25)); _y = (_y - (((-ty) + _y) / 25)); if (this.hitTest(_parent.tongue)) { snap = true; } distance = Math.abs(_x - _parent.frog._x) + Math.abs(_y - _parent.frog._y); if (snap) { this._x = _parent.tongue._x; this._y = _parent.tongue._y; } if (this.hitTest(_parent.frog)) { this.swapDepths(_root.getNextHighestDepth()); _root.score = _root.score + 10; if (Math.random() < 0.5) { _root.croak.start(0, 0); } this.removeMovieClip(); } }
Instance of Symbol 110 MovieClip in Symbol 114 MovieClip Frame 1
onClipEvent (load) { tx = _x; ty = _y; snap = false; _root.fly++; } onClipEvent (enterFrame) { _x = (_x + ((Math.random() * 6) - 3)); _y = (_y + ((Math.random() * 6) - 3)); _x = (_x - (((-tx) + _x) / 25)); _y = (_y - (((-ty) + _y) / 25)); if (this.hitTest(_parent.tongue)) { snap = true; } distance = Math.abs(_x - _parent.frog._x) + Math.abs(_y - _parent.frog._y); if (snap) { this._x = _parent.tongue._x; this._y = _parent.tongue._y; } if (this.hitTest(_parent.frog)) { this.swapDepths(_root.getNextHighestDepth()); _root.score = _root.score + 10; if (Math.random() < 0.5) { _root.croak.start(0, 0); } this.removeMovieClip(); } }
Instance of Symbol 110 MovieClip in Symbol 114 MovieClip Frame 1
onClipEvent (load) { tx = _x; ty = _y; snap = false; _root.fly++; } onClipEvent (enterFrame) { _x = (_x + ((Math.random() * 6) - 3)); _y = (_y + ((Math.random() * 6) - 3)); _x = (_x - (((-tx) + _x) / 25)); _y = (_y - (((-ty) + _y) / 25)); if (this.hitTest(_parent.tongue)) { snap = true; } distance = Math.abs(_x - _parent.frog._x) + Math.abs(_y - _parent.frog._y); if (snap) { this._x = _parent.tongue._x; this._y = _parent.tongue._y; } if (this.hitTest(_parent.frog)) { this.swapDepths(_root.getNextHighestDepth()); _root.score = _root.score + 10; if (Math.random() < 0.5) { _root.croak.start(0, 0); } this.removeMovieClip(); } }
Instance of Symbol 110 MovieClip in Symbol 114 MovieClip Frame 1
onClipEvent (load) { tx = _x; ty = _y; snap = false; _root.fly++; } onClipEvent (enterFrame) { _x = (_x + ((Math.random() * 6) - 3)); _y = (_y + ((Math.random() * 6) - 3)); _x = (_x - (((-tx) + _x) / 25)); _y = (_y - (((-ty) + _y) / 25)); if (this.hitTest(_parent.tongue)) { snap = true; } distance = Math.abs(_x - _parent.frog._x) + Math.abs(_y - _parent.frog._y); if (snap) { this._x = _parent.tongue._x; this._y = _parent.tongue._y; } if (this.hitTest(_parent.frog)) { this.swapDepths(_root.getNextHighestDepth()); _root.score = _root.score + 10; if (Math.random() < 0.5) { _root.croak.start(0, 0); } this.removeMovieClip(); } }
Instance of Symbol 110 MovieClip in Symbol 114 MovieClip Frame 1
onClipEvent (load) { tx = _x; ty = _y; snap = false; _root.fly++; } onClipEvent (enterFrame) { _x = (_x + ((Math.random() * 6) - 3)); _y = (_y + ((Math.random() * 6) - 3)); _x = (_x - (((-tx) + _x) / 25)); _y = (_y - (((-ty) + _y) / 25)); if (this.hitTest(_parent.tongue)) { snap = true; } distance = Math.abs(_x - _parent.frog._x) + Math.abs(_y - _parent.frog._y); if (snap) { this._x = _parent.tongue._x; this._y = _parent.tongue._y; } if (this.hitTest(_parent.frog)) { this.swapDepths(_root.getNextHighestDepth()); _root.score = _root.score + 10; if (Math.random() < 0.5) { _root.croak.start(0, 0); } this.removeMovieClip(); } }
Instance of Symbol 110 MovieClip in Symbol 114 MovieClip Frame 1
onClipEvent (load) { tx = _x; ty = _y; snap = false; _root.fly++; } onClipEvent (enterFrame) { _x = (_x + ((Math.random() * 6) - 3)); _y = (_y + ((Math.random() * 6) - 3)); _x = (_x - (((-tx) + _x) / 25)); _y = (_y - (((-ty) + _y) / 25)); if (this.hitTest(_parent.tongue)) { snap = true; } distance = Math.abs(_x - _parent.frog._x) + Math.abs(_y - _parent.frog._y); if (snap) { this._x = _parent.tongue._x; this._y = _parent.tongue._y; } if (this.hitTest(_parent.frog)) { this.swapDepths(_root.getNextHighestDepth()); _root.score = _root.score + 10; if (Math.random() < 0.5) { _root.croak.start(0, 0); } this.removeMovieClip(); } }
Instance of Symbol 110 MovieClip in Symbol 114 MovieClip Frame 1
onClipEvent (load) { tx = _x; ty = _y; snap = false; _root.fly++; } onClipEvent (enterFrame) { _x = (_x + ((Math.random() * 6) - 3)); _y = (_y + ((Math.random() * 6) - 3)); _x = (_x - (((-tx) + _x) / 25)); _y = (_y - (((-ty) + _y) / 25)); if (this.hitTest(_parent.tongue)) { snap = true; } distance = Math.abs(_x - _parent.frog._x) + Math.abs(_y - _parent.frog._y); if (snap) { this._x = _parent.tongue._x; this._y = _parent.tongue._y; } if (this.hitTest(_parent.frog)) { this.swapDepths(_root.getNextHighestDepth()); _root.score = _root.score + 10; if (Math.random() < 0.5) { _root.croak.start(0, 0); } this.removeMovieClip(); } }
Instance of Symbol 113 MovieClip "foreground" in Symbol 114 MovieClip Frame 1
onClipEvent (load) { sx = 0; } onClipEvent (enterFrame) { sx = sx - (_parent.frog.xspeed * 2); _x = (_x - (((-sx) + _x) / 8)); if (sx < (-_width)) { sx = sx + (_width * 2); _x = (_x + (_width * 2)); } if (sx > _width) { sx = sx - (_width * 2); _x = (_x - (_width * 2)); } }
Instance of Symbol 118 MovieClip "ground" in Symbol 121 MovieClip Frame 1
onClipEvent (load) { _alpha = 0; }
Instance of Symbol 103 MovieClip "frog" in Symbol 121 MovieClip Frame 1
onClipEvent (load) { xspeed = 0; yspeed = 0; gotoAndStop ("stand"); memory = new _parent.memory(); } onClipEvent (mouseDown) { shift = true; } onClipEvent (enterFrame) { left = Key.isDown(65); right = Key.isDown(68); jump = Key.isDown(87); if (this.hitTest(_parent.death)) { _root.gotoAndStop("dead"); } if (shift and (_parent.tongue.alive == false)) { _root.lick.start(0, 0); _parent.tongue._x = _x; _parent.tongue._y = _y; angle = ((-Math.atan2(_y - _parent._ymouse, _parent._xmouse - _x)) * 180) / Math.PI; _parent.tongue._rotation = angle; _parent.tongue.rot = angle; _parent.tongue.alive = true; _parent.tongue.myspeed = 50; _parent.tongue.cooldown = 15; shift = false; } yspeed++; if (_parent.ground.hitTest(_x + _parent._x, (_y + _parent._y) + 20, true)) { while (_parent.ground.hitTest(_x + _parent._x, (_y + _parent._y) + 19, true)) { _y = (_y-1); } yspeed = 0; if (jump) { gotoAndStop ("jump"); } else if (left or right) { gotoAndStop ("move"); } else { gotoAndStop ("stand"); } if (jump) { yspeed = yspeed - 15; } } xspeed = xspeed / 1.5; if (left) { xspeed = xspeed - 3; } if (right) { xspeed = xspeed + 3; } if (xspeed > 1) { _xscale = 100; } else if (xspeed < -1) { _xscale = -100; } _y = (_y + yspeed); _x = (_x + xspeed); _parent._x = _parent._x - (((_parent._x + _x) - 300) / 25); _parent._y = _parent._y - (((_parent._y + _y) - 250) / 25); }
Instance of Symbol 105 MovieClip "tongue" in Symbol 121 MovieClip Frame 1
onClipEvent (load) { myspeed = 50; alive = false; rot = 0; cooldown = 15; } onClipEvent (enterFrame) { if (alive) { angle = ((-Math.atan2(_y - _parent.frog._y, _parent.frog._x - _x)) * 180) / Math.PI; _parent.tongue._rotation = angle - 180; if (myspeed < 0) { rot = angle - 180; myspeed = myspeed - 1; } _alpha = 100; myspeed = myspeed - 5; _x = (_x + (Math.cos((rot * Math.PI) / 180) * myspeed)); _y = (_y + (Math.sin((rot * Math.PI) / 180) * myspeed)); _parent.line.clear(); _parent.line.lineStyle(2, 16711680); _parent.line.moveTo(_parent.frog._x, _parent.frog._y); _parent.line.lineTo(_x, _y); cooldown--; if (this.hitTest(_parent.frog) and (cooldown < 0)) { _parent.line.clear(); alive = false; _alpha = 0; _parent.line.clear(); } } else { _alpha = 0; _parent.line.clear(); } }
Instance of Symbol 110 MovieClip in Symbol 121 MovieClip Frame 1
onClipEvent (load) { tx = _x; ty = _y; snap = false; _root.fly++; } onClipEvent (enterFrame) { _x = (_x + ((Math.random() * 6) - 3)); _y = (_y + ((Math.random() * 6) - 3)); _x = (_x - (((-tx) + _x) / 25)); _y = (_y - (((-ty) + _y) / 25)); if (this.hitTest(_parent.tongue)) { snap = true; } distance = Math.abs(_x - _parent.frog._x) + Math.abs(_y - _parent.frog._y); if (snap) { this._x = _parent.tongue._x; this._y = _parent.tongue._y; } if (this.hitTest(_parent.frog)) { this.swapDepths(_root.getNextHighestDepth()); _root.score = _root.score + 10; if (Math.random() < 0.5) { _root.croak.start(0, 0); } this.removeMovieClip(); } }
Instance of Symbol 110 MovieClip in Symbol 121 MovieClip Frame 1
onClipEvent (load) { tx = _x; ty = _y; snap = false; _root.fly++; } onClipEvent (enterFrame) { _x = (_x + ((Math.random() * 6) - 3)); _y = (_y + ((Math.random() * 6) - 3)); _x = (_x - (((-tx) + _x) / 25)); _y = (_y - (((-ty) + _y) / 25)); if (this.hitTest(_parent.tongue)) { snap = true; } distance = Math.abs(_x - _parent.frog._x) + Math.abs(_y - _parent.frog._y); if (snap) { this._x = _parent.tongue._x; this._y = _parent.tongue._y; } if (this.hitTest(_parent.frog)) { this.swapDepths(_root.getNextHighestDepth()); _root.score = _root.score + 10; if (Math.random() < 0.5) { _root.croak.start(0, 0); } this.removeMovieClip(); } }
Instance of Symbol 110 MovieClip in Symbol 121 MovieClip Frame 1
onClipEvent (load) { tx = _x; ty = _y; snap = false; _root.fly++; } onClipEvent (enterFrame) { _x = (_x + ((Math.random() * 6) - 3)); _y = (_y + ((Math.random() * 6) - 3)); _x = (_x - (((-tx) + _x) / 25)); _y = (_y - (((-ty) + _y) / 25)); if (this.hitTest(_parent.tongue)) { snap = true; } distance = Math.abs(_x - _parent.frog._x) + Math.abs(_y - _parent.frog._y); if (snap) { this._x = _parent.tongue._x; this._y = _parent.tongue._y; } if (this.hitTest(_parent.frog)) { this.swapDepths(_root.getNextHighestDepth()); _root.score = _root.score + 10; if (Math.random() < 0.5) { _root.croak.start(0, 0); } this.removeMovieClip(); } }
Instance of Symbol 110 MovieClip in Symbol 121 MovieClip Frame 1
onClipEvent (load) { tx = _x; ty = _y; snap = false; _root.fly++; } onClipEvent (enterFrame) { _x = (_x + ((Math.random() * 6) - 3)); _y = (_y + ((Math.random() * 6) - 3)); _x = (_x - (((-tx) + _x) / 25)); _y = (_y - (((-ty) + _y) / 25)); if (this.hitTest(_parent.tongue)) { snap = true; } distance = Math.abs(_x - _parent.frog._x) + Math.abs(_y - _parent.frog._y); if (snap) { this._x = _parent.tongue._x; this._y = _parent.tongue._y; } if (this.hitTest(_parent.frog)) { this.swapDepths(_root.getNextHighestDepth()); _root.score = _root.score + 10; if (Math.random() < 0.5) { _root.croak.start(0, 0); } this.removeMovieClip(); } }
Instance of Symbol 110 MovieClip in Symbol 121 MovieClip Frame 1
onClipEvent (load) { tx = _x; ty = _y; snap = false; _root.fly++; } onClipEvent (enterFrame) { _x = (_x + ((Math.random() * 6) - 3)); _y = (_y + ((Math.random() * 6) - 3)); _x = (_x - (((-tx) + _x) / 25)); _y = (_y - (((-ty) + _y) / 25)); if (this.hitTest(_parent.tongue)) { snap = true; } distance = Math.abs(_x - _parent.frog._x) + Math.abs(_y - _parent.frog._y); if (snap) { this._x = _parent.tongue._x; this._y = _parent.tongue._y; } if (this.hitTest(_parent.frog)) { this.swapDepths(_root.getNextHighestDepth()); _root.score = _root.score + 10; if (Math.random() < 0.5) { _root.croak.start(0, 0); } this.removeMovieClip(); } }
Instance of Symbol 110 MovieClip in Symbol 121 MovieClip Frame 1
onClipEvent (load) { tx = _x; ty = _y; snap = false; _root.fly++; } onClipEvent (enterFrame) { _x = (_x + ((Math.random() * 6) - 3)); _y = (_y + ((Math.random() * 6) - 3)); _x = (_x - (((-tx) + _x) / 25)); _y = (_y - (((-ty) + _y) / 25)); if (this.hitTest(_parent.tongue)) { snap = true; } distance = Math.abs(_x - _parent.frog._x) + Math.abs(_y - _parent.frog._y); if (snap) { this._x = _parent.tongue._x; this._y = _parent.tongue._y; } if (this.hitTest(_parent.frog)) { this.swapDepths(_root.getNextHighestDepth()); _root.score = _root.score + 10; if (Math.random() < 0.5) { _root.croak.start(0, 0); } this.removeMovieClip(); } }
Instance of Symbol 110 MovieClip in Symbol 121 MovieClip Frame 1
onClipEvent (load) { tx = _x; ty = _y; snap = false; _root.fly++; } onClipEvent (enterFrame) { _x = (_x + ((Math.random() * 6) - 3)); _y = (_y + ((Math.random() * 6) - 3)); _x = (_x - (((-tx) + _x) / 25)); _y = (_y - (((-ty) + _y) / 25)); if (this.hitTest(_parent.tongue)) { snap = true; } distance = Math.abs(_x - _parent.frog._x) + Math.abs(_y - _parent.frog._y); if (snap) { this._x = _parent.tongue._x; this._y = _parent.tongue._y; } if (this.hitTest(_parent.frog)) { this.swapDepths(_root.getNextHighestDepth()); _root.score = _root.score + 10; if (Math.random() < 0.5) { _root.croak.start(0, 0); } this.removeMovieClip(); } }
Instance of Symbol 110 MovieClip in Symbol 121 MovieClip Frame 1
onClipEvent (load) { tx = _x; ty = _y; snap = false; _root.fly++; } onClipEvent (enterFrame) { _x = (_x + ((Math.random() * 6) - 3)); _y = (_y + ((Math.random() * 6) - 3)); _x = (_x - (((-tx) + _x) / 25)); _y = (_y - (((-ty) + _y) / 25)); if (this.hitTest(_parent.tongue)) { snap = true; } distance = Math.abs(_x - _parent.frog._x) + Math.abs(_y - _parent.frog._y); if (snap) { this._x = _parent.tongue._x; this._y = _parent.tongue._y; } if (this.hitTest(_parent.frog)) { this.swapDepths(_root.getNextHighestDepth()); _root.score = _root.score + 10; if (Math.random() < 0.5) { _root.croak.start(0, 0); } this.removeMovieClip(); } }
Instance of Symbol 110 MovieClip in Symbol 121 MovieClip Frame 1
onClipEvent (load) { tx = _x; ty = _y; snap = false; _root.fly++; } onClipEvent (enterFrame) { _x = (_x + ((Math.random() * 6) - 3)); _y = (_y + ((Math.random() * 6) - 3)); _x = (_x - (((-tx) + _x) / 25)); _y = (_y - (((-ty) + _y) / 25)); if (this.hitTest(_parent.tongue)) { snap = true; } distance = Math.abs(_x - _parent.frog._x) + Math.abs(_y - _parent.frog._y); if (snap) { this._x = _parent.tongue._x; this._y = _parent.tongue._y; } if (this.hitTest(_parent.frog)) { this.swapDepths(_root.getNextHighestDepth()); _root.score = _root.score + 10; if (Math.random() < 0.5) { _root.croak.start(0, 0); } this.removeMovieClip(); } }
Instance of Symbol 110 MovieClip in Symbol 121 MovieClip Frame 1
onClipEvent (load) { tx = _x; ty = _y; snap = false; _root.fly++; } onClipEvent (enterFrame) { _x = (_x + ((Math.random() * 6) - 3)); _y = (_y + ((Math.random() * 6) - 3)); _x = (_x - (((-tx) + _x) / 25)); _y = (_y - (((-ty) + _y) / 25)); if (this.hitTest(_parent.tongue)) { snap = true; } distance = Math.abs(_x - _parent.frog._x) + Math.abs(_y - _parent.frog._y); if (snap) { this._x = _parent.tongue._x; this._y = _parent.tongue._y; } if (this.hitTest(_parent.frog)) { this.swapDepths(_root.getNextHighestDepth()); _root.score = _root.score + 10; if (Math.random() < 0.5) { _root.croak.start(0, 0); } this.removeMovieClip(); } }
Instance of Symbol 110 MovieClip in Symbol 121 MovieClip Frame 1
onClipEvent (load) { tx = _x; ty = _y; snap = false; _root.fly++; } onClipEvent (enterFrame) { _x = (_x + ((Math.random() * 6) - 3)); _y = (_y + ((Math.random() * 6) - 3)); _x = (_x - (((-tx) + _x) / 25)); _y = (_y - (((-ty) + _y) / 25)); if (this.hitTest(_parent.tongue)) { snap = true; } distance = Math.abs(_x - _parent.frog._x) + Math.abs(_y - _parent.frog._y); if (snap) { this._x = _parent.tongue._x; this._y = _parent.tongue._y; } if (this.hitTest(_parent.frog)) { this.swapDepths(_root.getNextHighestDepth()); _root.score = _root.score + 10; if (Math.random() < 0.5) { _root.croak.start(0, 0); } this.removeMovieClip(); } }
Instance of Symbol 110 MovieClip in Symbol 121 MovieClip Frame 1
onClipEvent (load) { tx = _x; ty = _y; snap = false; _root.fly++; } onClipEvent (enterFrame) { _x = (_x + ((Math.random() * 6) - 3)); _y = (_y + ((Math.random() * 6) - 3)); _x = (_x - (((-tx) + _x) / 25)); _y = (_y - (((-ty) + _y) / 25)); if (this.hitTest(_parent.tongue)) { snap = true; } distance = Math.abs(_x - _parent.frog._x) + Math.abs(_y - _parent.frog._y); if (snap) { this._x = _parent.tongue._x; this._y = _parent.tongue._y; } if (this.hitTest(_parent.frog)) { this.swapDepths(_root.getNextHighestDepth()); _root.score = _root.score + 10; if (Math.random() < 0.5) { _root.croak.start(0, 0); } this.removeMovieClip(); } }
Instance of Symbol 110 MovieClip in Symbol 121 MovieClip Frame 1
onClipEvent (load) { tx = _x; ty = _y; snap = false; _root.fly++; } onClipEvent (enterFrame) { _x = (_x + ((Math.random() * 6) - 3)); _y = (_y + ((Math.random() * 6) - 3)); _x = (_x - (((-tx) + _x) / 25)); _y = (_y - (((-ty) + _y) / 25)); if (this.hitTest(_parent.tongue)) { snap = true; } distance = Math.abs(_x - _parent.frog._x) + Math.abs(_y - _parent.frog._y); if (snap) { this._x = _parent.tongue._x; this._y = _parent.tongue._y; } if (this.hitTest(_parent.frog)) { this.swapDepths(_root.getNextHighestDepth()); _root.score = _root.score + 10; if (Math.random() < 0.5) { _root.croak.start(0, 0); } this.removeMovieClip(); } }
Instance of Symbol 110 MovieClip in Symbol 121 MovieClip Frame 1
onClipEvent (load) { tx = _x; ty = _y; snap = false; _root.fly++; } onClipEvent (enterFrame) { _x = (_x + ((Math.random() * 6) - 3)); _y = (_y + ((Math.random() * 6) - 3)); _x = (_x - (((-tx) + _x) / 25)); _y = (_y - (((-ty) + _y) / 25)); if (this.hitTest(_parent.tongue)) { snap = true; } distance = Math.abs(_x - _parent.frog._x) + Math.abs(_y - _parent.frog._y); if (snap) { this._x = _parent.tongue._x; this._y = _parent.tongue._y; } if (this.hitTest(_parent.frog)) { this.swapDepths(_root.getNextHighestDepth()); _root.score = _root.score + 10; if (Math.random() < 0.5) { _root.croak.start(0, 0); } this.removeMovieClip(); } }
Instance of Symbol 113 MovieClip "foreground" in Symbol 121 MovieClip Frame 1
onClipEvent (load) { sx = 0; } onClipEvent (enterFrame) { sx = sx - (_parent.frog.xspeed * 2); _x = (_x - (((-sx) + _x) / 8)); if (sx < (-_width)) { sx = sx + (_width * 2); _x = (_x + (_width * 2)); } if (sx > _width) { sx = sx - (_width * 2); _x = (_x - (_width * 2)); } }
Instance of Symbol 123 MovieClip "ground" in Symbol 126 MovieClip Frame 1
onClipEvent (load) { _alpha = 0; }
Instance of Symbol 103 MovieClip "frog" in Symbol 126 MovieClip Frame 1
onClipEvent (load) { xspeed = 0; yspeed = 0; gotoAndStop ("stand"); memory = new _parent.memory(); } onClipEvent (mouseDown) { shift = true; } onClipEvent (enterFrame) { left = Key.isDown(65); right = Key.isDown(68); jump = Key.isDown(87); if (this.hitTest(_parent.death)) { _root.gotoAndStop("dead"); } if (shift and (_parent.tongue.alive == false)) { _root.lick.start(0, 0); _parent.tongue._x = _x; _parent.tongue._y = _y; angle = ((-Math.atan2(_y - _parent._ymouse, _parent._xmouse - _x)) * 180) / Math.PI; _parent.tongue._rotation = angle; _parent.tongue.rot = angle; _parent.tongue.alive = true; _parent.tongue.myspeed = 50; _parent.tongue.cooldown = 15; shift = false; } yspeed++; if (_parent.ground.hitTest(_x + _parent._x, (_y + _parent._y) + 20, true)) { while (_parent.ground.hitTest(_x + _parent._x, (_y + _parent._y) + 19, true)) { _y = (_y-1); } yspeed = 0; if (jump) { gotoAndStop ("jump"); } else if (left or right) { gotoAndStop ("move"); } else { gotoAndStop ("stand"); } if (jump) { yspeed = yspeed - 15; } } xspeed = xspeed / 1.5; if (left) { xspeed = xspeed - 3; } if (right) { xspeed = xspeed + 3; } if (xspeed > 1) { _xscale = 100; } else if (xspeed < -1) { _xscale = -100; } _y = (_y + yspeed); _x = (_x + xspeed); _parent._x = _parent._x - (((_parent._x + _x) - 300) / 25); _parent._y = _parent._y - (((_parent._y + _y) - 250) / 25); }
Instance of Symbol 105 MovieClip "tongue" in Symbol 126 MovieClip Frame 1
onClipEvent (load) { myspeed = 50; alive = false; rot = 0; cooldown = 15; } onClipEvent (enterFrame) { if (alive) { angle = ((-Math.atan2(_y - _parent.frog._y, _parent.frog._x - _x)) * 180) / Math.PI; _parent.tongue._rotation = angle - 180; if (myspeed < 0) { rot = angle - 180; myspeed = myspeed - 1; } _alpha = 100; myspeed = myspeed - 5; _x = (_x + (Math.cos((rot * Math.PI) / 180) * myspeed)); _y = (_y + (Math.sin((rot * Math.PI) / 180) * myspeed)); _parent.line.clear(); _parent.line.lineStyle(2, 16711680); _parent.line.moveTo(_parent.frog._x, _parent.frog._y); _parent.line.lineTo(_x, _y); cooldown--; if (this.hitTest(_parent.frog) and (cooldown < 0)) { _parent.line.clear(); alive = false; _alpha = 0; _parent.line.clear(); } } else { _alpha = 0; _parent.line.clear(); } }
Instance of Symbol 110 MovieClip in Symbol 126 MovieClip Frame 1
onClipEvent (load) { tx = _x; ty = _y; snap = false; _root.fly++; } onClipEvent (enterFrame) { _x = (_x + ((Math.random() * 6) - 3)); _y = (_y + ((Math.random() * 6) - 3)); _x = (_x - (((-tx) + _x) / 25)); _y = (_y - (((-ty) + _y) / 25)); if (this.hitTest(_parent.tongue)) { snap = true; } distance = Math.abs(_x - _parent.frog._x) + Math.abs(_y - _parent.frog._y); if (snap) { this._x = _parent.tongue._x; this._y = _parent.tongue._y; } if (this.hitTest(_parent.frog)) { this.swapDepths(_root.getNextHighestDepth()); _root.score = _root.score + 10; if (Math.random() < 0.5) { _root.croak.start(0, 0); } this.removeMovieClip(); } }
Instance of Symbol 110 MovieClip in Symbol 126 MovieClip Frame 1
onClipEvent (load) { tx = _x; ty = _y; snap = false; _root.fly++; } onClipEvent (enterFrame) { _x = (_x + ((Math.random() * 6) - 3)); _y = (_y + ((Math.random() * 6) - 3)); _x = (_x - (((-tx) + _x) / 25)); _y = (_y - (((-ty) + _y) / 25)); if (this.hitTest(_parent.tongue)) { snap = true; } distance = Math.abs(_x - _parent.frog._x) + Math.abs(_y - _parent.frog._y); if (snap) { this._x = _parent.tongue._x; this._y = _parent.tongue._y; } if (this.hitTest(_parent.frog)) { this.swapDepths(_root.getNextHighestDepth()); _root.score = _root.score + 10; if (Math.random() < 0.5) { _root.croak.start(0, 0); } this.removeMovieClip(); } }
Instance of Symbol 110 MovieClip in Symbol 126 MovieClip Frame 1
onClipEvent (load) { tx = _x; ty = _y; snap = false; _root.fly++; } onClipEvent (enterFrame) { _x = (_x + ((Math.random() * 6) - 3)); _y = (_y + ((Math.random() * 6) - 3)); _x = (_x - (((-tx) + _x) / 25)); _y = (_y - (((-ty) + _y) / 25)); if (this.hitTest(_parent.tongue)) { snap = true; } distance = Math.abs(_x - _parent.frog._x) + Math.abs(_y - _parent.frog._y); if (snap) { this._x = _parent.tongue._x; this._y = _parent.tongue._y; } if (this.hitTest(_parent.frog)) { this.swapDepths(_root.getNextHighestDepth()); _root.score = _root.score + 10; if (Math.random() < 0.5) { _root.croak.start(0, 0); } this.removeMovieClip(); } }
Instance of Symbol 110 MovieClip in Symbol 126 MovieClip Frame 1
onClipEvent (load) { tx = _x; ty = _y; snap = false; _root.fly++; } onClipEvent (enterFrame) { _x = (_x + ((Math.random() * 6) - 3)); _y = (_y + ((Math.random() * 6) - 3)); _x = (_x - (((-tx) + _x) / 25)); _y = (_y - (((-ty) + _y) / 25)); if (this.hitTest(_parent.tongue)) { snap = true; } distance = Math.abs(_x - _parent.frog._x) + Math.abs(_y - _parent.frog._y); if (snap) { this._x = _parent.tongue._x; this._y = _parent.tongue._y; } if (this.hitTest(_parent.frog)) { this.swapDepths(_root.getNextHighestDepth()); _root.score = _root.score + 10; if (Math.random() < 0.5) { _root.croak.start(0, 0); } this.removeMovieClip(); } }
Instance of Symbol 110 MovieClip in Symbol 126 MovieClip Frame 1
onClipEvent (load) { tx = _x; ty = _y; snap = false; _root.fly++; } onClipEvent (enterFrame) { _x = (_x + ((Math.random() * 6) - 3)); _y = (_y + ((Math.random() * 6) - 3)); _x = (_x - (((-tx) + _x) / 25)); _y = (_y - (((-ty) + _y) / 25)); if (this.hitTest(_parent.tongue)) { snap = true; } distance = Math.abs(_x - _parent.frog._x) + Math.abs(_y - _parent.frog._y); if (snap) { this._x = _parent.tongue._x; this._y = _parent.tongue._y; } if (this.hitTest(_parent.frog)) { this.swapDepths(_root.getNextHighestDepth()); _root.score = _root.score + 10; if (Math.random() < 0.5) { _root.croak.start(0, 0); } this.removeMovieClip(); } }
Instance of Symbol 110 MovieClip in Symbol 126 MovieClip Frame 1
onClipEvent (load) { tx = _x; ty = _y; snap = false; _root.fly++; } onClipEvent (enterFrame) { _x = (_x + ((Math.random() * 6) - 3)); _y = (_y + ((Math.random() * 6) - 3)); _x = (_x - (((-tx) + _x) / 25)); _y = (_y - (((-ty) + _y) / 25)); if (this.hitTest(_parent.tongue)) { snap = true; } distance = Math.abs(_x - _parent.frog._x) + Math.abs(_y - _parent.frog._y); if (snap) { this._x = _parent.tongue._x; this._y = _parent.tongue._y; } if (this.hitTest(_parent.frog)) { this.swapDepths(_root.getNextHighestDepth()); _root.score = _root.score + 10; if (Math.random() < 0.5) { _root.croak.start(0, 0); } this.removeMovieClip(); } }
Instance of Symbol 110 MovieClip in Symbol 126 MovieClip Frame 1
onClipEvent (load) { tx = _x; ty = _y; snap = false; _root.fly++; } onClipEvent (enterFrame) { _x = (_x + ((Math.random() * 6) - 3)); _y = (_y + ((Math.random() * 6) - 3)); _x = (_x - (((-tx) + _x) / 25)); _y = (_y - (((-ty) + _y) / 25)); if (this.hitTest(_parent.tongue)) { snap = true; } distance = Math.abs(_x - _parent.frog._x) + Math.abs(_y - _parent.frog._y); if (snap) { this._x = _parent.tongue._x; this._y = _parent.tongue._y; } if (this.hitTest(_parent.frog)) { this.swapDepths(_root.getNextHighestDepth()); _root.score = _root.score + 10; if (Math.random() < 0.5) { _root.croak.start(0, 0); } this.removeMovieClip(); } }
Instance of Symbol 110 MovieClip in Symbol 126 MovieClip Frame 1
onClipEvent (load) { tx = _x; ty = _y; snap = false; _root.fly++; } onClipEvent (enterFrame) { _x = (_x + ((Math.random() * 6) - 3)); _y = (_y + ((Math.random() * 6) - 3)); _x = (_x - (((-tx) + _x) / 25)); _y = (_y - (((-ty) + _y) / 25)); if (this.hitTest(_parent.tongue)) { snap = true; } distance = Math.abs(_x - _parent.frog._x) + Math.abs(_y - _parent.frog._y); if (snap) { this._x = _parent.tongue._x; this._y = _parent.tongue._y; } if (this.hitTest(_parent.frog)) { this.swapDepths(_root.getNextHighestDepth()); _root.score = _root.score + 10; if (Math.random() < 0.5) { _root.croak.start(0, 0); } this.removeMovieClip(); } }
Instance of Symbol 110 MovieClip in Symbol 126 MovieClip Frame 1
onClipEvent (load) { tx = _x; ty = _y; snap = false; _root.fly++; } onClipEvent (enterFrame) { _x = (_x + ((Math.random() * 6) - 3)); _y = (_y + ((Math.random() * 6) - 3)); _x = (_x - (((-tx) + _x) / 25)); _y = (_y - (((-ty) + _y) / 25)); if (this.hitTest(_parent.tongue)) { snap = true; } distance = Math.abs(_x - _parent.frog._x) + Math.abs(_y - _parent.frog._y); if (snap) { this._x = _parent.tongue._x; this._y = _parent.tongue._y; } if (this.hitTest(_parent.frog)) { this.swapDepths(_root.getNextHighestDepth()); _root.score = _root.score + 10; if (Math.random() < 0.5) { _root.croak.start(0, 0); } this.removeMovieClip(); } }
Instance of Symbol 110 MovieClip in Symbol 126 MovieClip Frame 1
onClipEvent (load) { tx = _x; ty = _y; snap = false; _root.fly++; } onClipEvent (enterFrame) { _x = (_x + ((Math.random() * 6) - 3)); _y = (_y + ((Math.random() * 6) - 3)); _x = (_x - (((-tx) + _x) / 25)); _y = (_y - (((-ty) + _y) / 25)); if (this.hitTest(_parent.tongue)) { snap = true; } distance = Math.abs(_x - _parent.frog._x) + Math.abs(_y - _parent.frog._y); if (snap) { this._x = _parent.tongue._x; this._y = _parent.tongue._y; } if (this.hitTest(_parent.frog)) { this.swapDepths(_root.getNextHighestDepth()); _root.score = _root.score + 10; if (Math.random() < 0.5) { _root.croak.start(0, 0); } this.removeMovieClip(); } }
Instance of Symbol 110 MovieClip in Symbol 126 MovieClip Frame 1
onClipEvent (load) { tx = _x; ty = _y; snap = false; _root.fly++; } onClipEvent (enterFrame) { _x = (_x + ((Math.random() * 6) - 3)); _y = (_y + ((Math.random() * 6) - 3)); _x = (_x - (((-tx) + _x) / 25)); _y = (_y - (((-ty) + _y) / 25)); if (this.hitTest(_parent.tongue)) { snap = true; } distance = Math.abs(_x - _parent.frog._x) + Math.abs(_y - _parent.frog._y); if (snap) { this._x = _parent.tongue._x; this._y = _parent.tongue._y; } if (this.hitTest(_parent.frog)) { this.swapDepths(_root.getNextHighestDepth()); _root.score = _root.score + 10; if (Math.random() < 0.5) { _root.croak.start(0, 0); } this.removeMovieClip(); } }
Instance of Symbol 110 MovieClip in Symbol 126 MovieClip Frame 1
onClipEvent (load) { tx = _x; ty = _y; snap = false; _root.fly++; } onClipEvent (enterFrame) { _x = (_x + ((Math.random() * 6) - 3)); _y = (_y + ((Math.random() * 6) - 3)); _x = (_x - (((-tx) + _x) / 25)); _y = (_y - (((-ty) + _y) / 25)); if (this.hitTest(_parent.tongue)) { snap = true; } distance = Math.abs(_x - _parent.frog._x) + Math.abs(_y - _parent.frog._y); if (snap) { this._x = _parent.tongue._x; this._y = _parent.tongue._y; } if (this.hitTest(_parent.frog)) { this.swapDepths(_root.getNextHighestDepth()); _root.score = _root.score + 10; if (Math.random() < 0.5) { _root.croak.start(0, 0); } this.removeMovieClip(); } }
Instance of Symbol 110 MovieClip in Symbol 126 MovieClip Frame 1
onClipEvent (load) { tx = _x; ty = _y; snap = false; _root.fly++; } onClipEvent (enterFrame) { _x = (_x + ((Math.random() * 6) - 3)); _y = (_y + ((Math.random() * 6) - 3)); _x = (_x - (((-tx) + _x) / 25)); _y = (_y - (((-ty) + _y) / 25)); if (this.hitTest(_parent.tongue)) { snap = true; } distance = Math.abs(_x - _parent.frog._x) + Math.abs(_y - _parent.frog._y); if (snap) { this._x = _parent.tongue._x; this._y = _parent.tongue._y; } if (this.hitTest(_parent.frog)) { this.swapDepths(_root.getNextHighestDepth()); _root.score = _root.score + 10; if (Math.random() < 0.5) { _root.croak.start(0, 0); } this.removeMovieClip(); } }
Instance of Symbol 110 MovieClip in Symbol 126 MovieClip Frame 1
onClipEvent (load) { tx = _x; ty = _y; snap = false; _root.fly++; } onClipEvent (enterFrame) { _x = (_x + ((Math.random() * 6) - 3)); _y = (_y + ((Math.random() * 6) - 3)); _x = (_x - (((-tx) + _x) / 25)); _y = (_y - (((-ty) + _y) / 25)); if (this.hitTest(_parent.tongue)) { snap = true; } distance = Math.abs(_x - _parent.frog._x) + Math.abs(_y - _parent.frog._y); if (snap) { this._x = _parent.tongue._x; this._y = _parent.tongue._y; } if (this.hitTest(_parent.frog)) { this.swapDepths(_root.getNextHighestDepth()); _root.score = _root.score + 10; if (Math.random() < 0.5) { _root.croak.start(0, 0); } this.removeMovieClip(); } }
Instance of Symbol 110 MovieClip in Symbol 126 MovieClip Frame 1
onClipEvent (load) { tx = _x; ty = _y; snap = false; _root.fly++; } onClipEvent (enterFrame) { _x = (_x + ((Math.random() * 6) - 3)); _y = (_y + ((Math.random() * 6) - 3)); _x = (_x - (((-tx) + _x) / 25)); _y = (_y - (((-ty) + _y) / 25)); if (this.hitTest(_parent.tongue)) { snap = true; } distance = Math.abs(_x - _parent.frog._x) + Math.abs(_y - _parent.frog._y); if (snap) { this._x = _parent.tongue._x; this._y = _parent.tongue._y; } if (this.hitTest(_parent.frog)) { this.swapDepths(_root.getNextHighestDepth()); _root.score = _root.score + 10; if (Math.random() < 0.5) { _root.croak.start(0, 0); } this.removeMovieClip(); } }
Instance of Symbol 113 MovieClip "foreground" in Symbol 126 MovieClip Frame 1
onClipEvent (load) { sx = 0; } onClipEvent (enterFrame) { sx = sx - (_parent.frog.xspeed * 2); _x = (_x - (((-sx) + _x) / 8)); if (sx < (-_width)) { sx = sx + (_width * 2); _x = (_x + (_width * 2)); } if (sx > _width) { sx = sx - (_width * 2); _x = (_x - (_width * 2)); } }
Instance of Symbol 128 MovieClip "ground" in Symbol 133 MovieClip Frame 1
onClipEvent (load) { _alpha = 0; }
Instance of Symbol 103 MovieClip "frog" in Symbol 133 MovieClip Frame 1
onClipEvent (load) { xspeed = 0; yspeed = 0; gotoAndStop ("stand"); memory = new _parent.memory(); } onClipEvent (mouseDown) { shift = true; } onClipEvent (enterFrame) { left = Key.isDown(65); right = Key.isDown(68); jump = Key.isDown(87); if (this.hitTest(_parent.death)) { _root.gotoAndStop("dead"); } if (shift and (_parent.tongue.alive == false)) { _root.lick.start(0, 0); _parent.tongue._x = _x; _parent.tongue._y = _y; angle = ((-Math.atan2(_y - _parent._ymouse, _parent._xmouse - _x)) * 180) / Math.PI; _parent.tongue._rotation = angle; _parent.tongue.rot = angle; _parent.tongue.alive = true; _parent.tongue.myspeed = 50; _parent.tongue.cooldown = 15; shift = false; } yspeed++; if (_parent.ground.hitTest(_x + _parent._x, (_y + _parent._y) + 20, true)) { while (_parent.ground.hitTest(_x + _parent._x, (_y + _parent._y) + 19, true)) { _y = (_y-1); } yspeed = 0; if (jump) { gotoAndStop ("jump"); } else if (left or right) { gotoAndStop ("move"); } else { gotoAndStop ("stand"); } if (jump) { yspeed = yspeed - 15; } } xspeed = xspeed / 1.5; if (left) { xspeed = xspeed - 3; } if (right) { xspeed = xspeed + 3; } if (xspeed > 1) { _xscale = 100; } else if (xspeed < -1) { _xscale = -100; } _y = (_y + yspeed); _x = (_x + xspeed); _parent._x = _parent._x - (((_parent._x + _x) - 300) / 25); _parent._y = _parent._y - (((_parent._y + _y) - 250) / 25); }
Instance of Symbol 105 MovieClip "tongue" in Symbol 133 MovieClip Frame 1
onClipEvent (load) { myspeed = 50; alive = false; rot = 0; cooldown = 15; } onClipEvent (enterFrame) { if (alive) { angle = ((-Math.atan2(_y - _parent.frog._y, _parent.frog._x - _x)) * 180) / Math.PI; _parent.tongue._rotation = angle - 180; if (myspeed < 0) { rot = angle - 180; myspeed = myspeed - 1; } _alpha = 100; myspeed = myspeed - 5; _x = (_x + (Math.cos((rot * Math.PI) / 180) * myspeed)); _y = (_y + (Math.sin((rot * Math.PI) / 180) * myspeed)); _parent.line.clear(); _parent.line.lineStyle(2, 16711680); _parent.line.moveTo(_parent.frog._x, _parent.frog._y); _parent.line.lineTo(_x, _y); cooldown--; if (this.hitTest(_parent.frog) and (cooldown < 0)) { _parent.line.clear(); alive = false; _alpha = 0; _parent.line.clear(); } } else { _alpha = 0; _parent.line.clear(); } }
Instance of Symbol 110 MovieClip in Symbol 133 MovieClip Frame 1
onClipEvent (load) { tx = _x; ty = _y; snap = false; _root.fly++; } onClipEvent (enterFrame) { _x = (_x + ((Math.random() * 6) - 3)); _y = (_y + ((Math.random() * 6) - 3)); _x = (_x - (((-tx) + _x) / 25)); _y = (_y - (((-ty) + _y) / 25)); if (this.hitTest(_parent.tongue)) { snap = true; } distance = Math.abs(_x - _parent.frog._x) + Math.abs(_y - _parent.frog._y); if (snap) { this._x = _parent.tongue._x; this._y = _parent.tongue._y; } if (this.hitTest(_parent.frog)) { this.swapDepths(_root.getNextHighestDepth()); _root.score = _root.score + 10; if (Math.random() < 0.5) { _root.croak.start(0, 0); } this.removeMovieClip(); } }
Instance of Symbol 110 MovieClip in Symbol 133 MovieClip Frame 1
onClipEvent (load) { tx = _x; ty = _y; snap = false; _root.fly++; } onClipEvent (enterFrame) { _x = (_x + ((Math.random() * 6) - 3)); _y = (_y + ((Math.random() * 6) - 3)); _x = (_x - (((-tx) + _x) / 25)); _y = (_y - (((-ty) + _y) / 25)); if (this.hitTest(_parent.tongue)) { snap = true; } distance = Math.abs(_x - _parent.frog._x) + Math.abs(_y - _parent.frog._y); if (snap) { this._x = _parent.tongue._x; this._y = _parent.tongue._y; } if (this.hitTest(_parent.frog)) { this.swapDepths(_root.getNextHighestDepth()); _root.score = _root.score + 10; if (Math.random() < 0.5) { _root.croak.start(0, 0); } this.removeMovieClip(); } }
Instance of Symbol 110 MovieClip in Symbol 133 MovieClip Frame 1
onClipEvent (load) { tx = _x; ty = _y; snap = false; _root.fly++; } onClipEvent (enterFrame) { _x = (_x + ((Math.random() * 6) - 3)); _y = (_y + ((Math.random() * 6) - 3)); _x = (_x - (((-tx) + _x) / 25)); _y = (_y - (((-ty) + _y) / 25)); if (this.hitTest(_parent.tongue)) { snap = true; } distance = Math.abs(_x - _parent.frog._x) + Math.abs(_y - _parent.frog._y); if (snap) { this._x = _parent.tongue._x; this._y = _parent.tongue._y; } if (this.hitTest(_parent.frog)) { this.swapDepths(_root.getNextHighestDepth()); _root.score = _root.score + 10; if (Math.random() < 0.5) { _root.croak.start(0, 0); } this.removeMovieClip(); } }
Instance of Symbol 110 MovieClip in Symbol 133 MovieClip Frame 1
onClipEvent (load) { tx = _x; ty = _y; snap = false; _root.fly++; } onClipEvent (enterFrame) { _x = (_x + ((Math.random() * 6) - 3)); _y = (_y + ((Math.random() * 6) - 3)); _x = (_x - (((-tx) + _x) / 25)); _y = (_y - (((-ty) + _y) / 25)); if (this.hitTest(_parent.tongue)) { snap = true; } distance = Math.abs(_x - _parent.frog._x) + Math.abs(_y - _parent.frog._y); if (snap) { this._x = _parent.tongue._x; this._y = _parent.tongue._y; } if (this.hitTest(_parent.frog)) { this.swapDepths(_root.getNextHighestDepth()); _root.score = _root.score + 10; if (Math.random() < 0.5) { _root.croak.start(0, 0); } this.removeMovieClip(); } }
Instance of Symbol 110 MovieClip in Symbol 133 MovieClip Frame 1
onClipEvent (load) { tx = _x; ty = _y; snap = false; _root.fly++; } onClipEvent (enterFrame) { _x = (_x + ((Math.random() * 6) - 3)); _y = (_y + ((Math.random() * 6) - 3)); _x = (_x - (((-tx) + _x) / 25)); _y = (_y - (((-ty) + _y) / 25)); if (this.hitTest(_parent.tongue)) { snap = true; } distance = Math.abs(_x - _parent.frog._x) + Math.abs(_y - _parent.frog._y); if (snap) { this._x = _parent.tongue._x; this._y = _parent.tongue._y; } if (this.hitTest(_parent.frog)) { this.swapDepths(_root.getNextHighestDepth()); _root.score = _root.score + 10; if (Math.random() < 0.5) { _root.croak.start(0, 0); } this.removeMovieClip(); } }
Instance of Symbol 110 MovieClip in Symbol 133 MovieClip Frame 1
onClipEvent (load) { tx = _x; ty = _y; snap = false; _root.fly++; } onClipEvent (enterFrame) { _x = (_x + ((Math.random() * 6) - 3)); _y = (_y + ((Math.random() * 6) - 3)); _x = (_x - (((-tx) + _x) / 25)); _y = (_y - (((-ty) + _y) / 25)); if (this.hitTest(_parent.tongue)) { snap = true; } distance = Math.abs(_x - _parent.frog._x) + Math.abs(_y - _parent.frog._y); if (snap) { this._x = _parent.tongue._x; this._y = _parent.tongue._y; } if (this.hitTest(_parent.frog)) { this.swapDepths(_root.getNextHighestDepth()); _root.score = _root.score + 10; if (Math.random() < 0.5) { _root.croak.start(0, 0); } this.removeMovieClip(); } }
Instance of Symbol 110 MovieClip in Symbol 133 MovieClip Frame 1
onClipEvent (load) { tx = _x; ty = _y; snap = false; _root.fly++; } onClipEvent (enterFrame) { _x = (_x + ((Math.random() * 6) - 3)); _y = (_y + ((Math.random() * 6) - 3)); _x = (_x - (((-tx) + _x) / 25)); _y = (_y - (((-ty) + _y) / 25)); if (this.hitTest(_parent.tongue)) { snap = true; } distance = Math.abs(_x - _parent.frog._x) + Math.abs(_y - _parent.frog._y); if (snap) { this._x = _parent.tongue._x; this._y = _parent.tongue._y; } if (this.hitTest(_parent.frog)) { this.swapDepths(_root.getNextHighestDepth()); _root.score = _root.score + 10; if (Math.random() < 0.5) { _root.croak.start(0, 0); } this.removeMovieClip(); } }
Instance of Symbol 110 MovieClip in Symbol 133 MovieClip Frame 1
onClipEvent (load) { tx = _x; ty = _y; snap = false; _root.fly++; } onClipEvent (enterFrame) { _x = (_x + ((Math.random() * 6) - 3)); _y = (_y + ((Math.random() * 6) - 3)); _x = (_x - (((-tx) + _x) / 25)); _y = (_y - (((-ty) + _y) / 25)); if (this.hitTest(_parent.tongue)) { snap = true; } distance = Math.abs(_x - _parent.frog._x) + Math.abs(_y - _parent.frog._y); if (snap) { this._x = _parent.tongue._x; this._y = _parent.tongue._y; } if (this.hitTest(_parent.frog)) { this.swapDepths(_root.getNextHighestDepth()); _root.score = _root.score + 10; if (Math.random() < 0.5) { _root.croak.start(0, 0); } this.removeMovieClip(); } }
Instance of Symbol 110 MovieClip in Symbol 133 MovieClip Frame 1
onClipEvent (load) { tx = _x; ty = _y; snap = false; _root.fly++; } onClipEvent (enterFrame) { _x = (_x + ((Math.random() * 6) - 3)); _y = (_y + ((Math.random() * 6) - 3)); _x = (_x - (((-tx) + _x) / 25)); _y = (_y - (((-ty) + _y) / 25)); if (this.hitTest(_parent.tongue)) { snap = true; } distance = Math.abs(_x - _parent.frog._x) + Math.abs(_y - _parent.frog._y); if (snap) { this._x = _parent.tongue._x; this._y = _parent.tongue._y; } if (this.hitTest(_parent.frog)) { this.swapDepths(_root.getNextHighestDepth()); _root.score = _root.score + 10; if (Math.random() < 0.5) { _root.croak.start(0, 0); } this.removeMovieClip(); } }
Instance of Symbol 110 MovieClip in Symbol 133 MovieClip Frame 1
onClipEvent (load) { tx = _x; ty = _y; snap = false; _root.fly++; } onClipEvent (enterFrame) { _x = (_x + ((Math.random() * 6) - 3)); _y = (_y + ((Math.random() * 6) - 3)); _x = (_x - (((-tx) + _x) / 25)); _y = (_y - (((-ty) + _y) / 25)); if (this.hitTest(_parent.tongue)) { snap = true; } distance = Math.abs(_x - _parent.frog._x) + Math.abs(_y - _parent.frog._y); if (snap) { this._x = _parent.tongue._x; this._y = _parent.tongue._y; } if (this.hitTest(_parent.frog)) { this.swapDepths(_root.getNextHighestDepth()); _root.score = _root.score + 10; if (Math.random() < 0.5) { _root.croak.start(0, 0); } this.removeMovieClip(); } }
Instance of Symbol 110 MovieClip in Symbol 133 MovieClip Frame 1
onClipEvent (load) { tx = _x; ty = _y; snap = false; _root.fly++; } onClipEvent (enterFrame) { _x = (_x + ((Math.random() * 6) - 3)); _y = (_y + ((Math.random() * 6) - 3)); _x = (_x - (((-tx) + _x) / 25)); _y = (_y - (((-ty) + _y) / 25)); if (this.hitTest(_parent.tongue)) { snap = true; } distance = Math.abs(_x - _parent.frog._x) + Math.abs(_y - _parent.frog._y); if (snap) { this._x = _parent.tongue._x; this._y = _parent.tongue._y; } if (this.hitTest(_parent.frog)) { this.swapDepths(_root.getNextHighestDepth()); _root.score = _root.score + 10; if (Math.random() < 0.5) { _root.croak.start(0, 0); } this.removeMovieClip(); } }
Instance of Symbol 110 MovieClip in Symbol 133 MovieClip Frame 1
onClipEvent (load) { tx = _x; ty = _y; snap = false; _root.fly++; } onClipEvent (enterFrame) { _x = (_x + ((Math.random() * 6) - 3)); _y = (_y + ((Math.random() * 6) - 3)); _x = (_x - (((-tx) + _x) / 25)); _y = (_y - (((-ty) + _y) / 25)); if (this.hitTest(_parent.tongue)) { snap = true; } distance = Math.abs(_x - _parent.frog._x) + Math.abs(_y - _parent.frog._y); if (snap) { this._x = _parent.tongue._x; this._y = _parent.tongue._y; } if (this.hitTest(_parent.frog)) { this.swapDepths(_root.getNextHighestDepth()); _root.score = _root.score + 10; if (Math.random() < 0.5) { _root.croak.start(0, 0); } this.removeMovieClip(); } }
Instance of Symbol 110 MovieClip in Symbol 133 MovieClip Frame 1
onClipEvent (load) { tx = _x; ty = _y; snap = false; _root.fly++; } onClipEvent (enterFrame) { _x = (_x + ((Math.random() * 6) - 3)); _y = (_y + ((Math.random() * 6) - 3)); _x = (_x - (((-tx) + _x) / 25)); _y = (_y - (((-ty) + _y) / 25)); if (this.hitTest(_parent.tongue)) { snap = true; } distance = Math.abs(_x - _parent.frog._x) + Math.abs(_y - _parent.frog._y); if (snap) { this._x = _parent.tongue._x; this._y = _parent.tongue._y; } if (this.hitTest(_parent.frog)) { this.swapDepths(_root.getNextHighestDepth()); _root.score = _root.score + 10; if (Math.random() < 0.5) { _root.croak.start(0, 0); } this.removeMovieClip(); } }
Instance of Symbol 110 MovieClip in Symbol 133 MovieClip Frame 1
onClipEvent (load) { tx = _x; ty = _y; snap = false; _root.fly++; } onClipEvent (enterFrame) { _x = (_x + ((Math.random() * 6) - 3)); _y = (_y + ((Math.random() * 6) - 3)); _x = (_x - (((-tx) + _x) / 25)); _y = (_y - (((-ty) + _y) / 25)); if (this.hitTest(_parent.tongue)) { snap = true; } distance = Math.abs(_x - _parent.frog._x) + Math.abs(_y - _parent.frog._y); if (snap) { this._x = _parent.tongue._x; this._y = _parent.tongue._y; } if (this.hitTest(_parent.frog)) { this.swapDepths(_root.getNextHighestDepth()); _root.score = _root.score + 10; if (Math.random() < 0.5) { _root.croak.start(0, 0); } this.removeMovieClip(); } }
Instance of Symbol 132 MovieClip in Symbol 133 MovieClip Frame 1
onClipEvent (load) { sx = 0; } onClipEvent (enterFrame) { sx = sx - (_parent.frog.xspeed * 2); _x = (_x - (((-sx) + _x) / 8)); if (sx < (-_width)) { sx = sx + (_width * 2); _x = (_x + (_width * 2)); } if (sx > _width) { sx = sx - (_width * 2); _x = (_x - (_width * 2)); } }
Symbol 137 MovieClip Frame 1
_alpha = 0;
Symbol 153 MovieClip Frame 59
_parent.gotoAndStop(1);
Symbol 162 MovieClip Frame 16
if ((_parent._x > 0) and (_parent._parent.frog._x < _parent._x)) { if ((_parent._x - _parent._parent.frog._x) < 100) { _parent._parent.frog.xspeed = _parent._parent.frog.xspeed - 70; } else if ((_parent._x - _parent._parent.frog._x) < 500) { _parent._parent.frog.xspeed = _parent._parent.frog.xspeed - 20; } } if ((_parent._x < 0) and (_parent._parent.frog._x > _parent._x)) { if ((_parent._parent.frog._x - _parent._x) < 100) { _parent._parent.frog.xspeed = _parent._parent.frog.xspeed + 70; } else if ((_parent._parent.frog._x - _parent._x) < 500) { _parent._parent.frog.xspeed = _parent._parent.frog.xspeed + 20; } }
Symbol 162 MovieClip Frame 49
_parent.gotoAndStop(1);
Symbol 163 MovieClip Frame 67
stopAllSounds(); _root.gotoAndStop("win");
Instance of Symbol 135 MovieClip "ground" in Symbol 165 MovieClip Frame 1
onClipEvent (load) { _alpha = 0; }
Instance of Symbol 103 MovieClip "frog" in Symbol 165 MovieClip Frame 1
onClipEvent (load) { xspeed = 0; yspeed = 0; gotoAndStop ("stand"); memory = new _parent.memory(); } onClipEvent (mouseDown) { shift = true; } onClipEvent (enterFrame) { left = Key.isDown(65); right = Key.isDown(68); jump = Key.isDown(87); if (this.hitTest(_parent.death)) { _root.gotoAndStop("dead"); } if (shift and (_parent.tongue.alive == false)) { _root.lick.start(0, 0); _parent.tongue._x = _x; _parent.tongue._y = _y; angle = ((-Math.atan2(_y - _parent._ymouse, _parent._xmouse - _x)) * 180) / Math.PI; _parent.tongue._rotation = angle; _parent.tongue.rot = angle; _parent.tongue.alive = true; _parent.tongue.myspeed = 50; _parent.tongue.cooldown = 15; shift = false; } yspeed++; if (_parent.ground.hitTest(_x + _parent._x, (_y + _parent._y) + 20, true)) { while (_parent.ground.hitTest(_x + _parent._x, (_y + _parent._y) + 19, true)) { _y = (_y-1); } yspeed = 0; if (jump) { gotoAndStop ("jump"); } else if (left or right) { gotoAndStop ("move"); } else { gotoAndStop ("stand"); } if (jump) { yspeed = yspeed - 15; } } xspeed = xspeed / 1.5; if (left) { xspeed = xspeed - 3; } if (right) { xspeed = xspeed + 3; } if (xspeed > 1) { _xscale = 100; } else if (xspeed < -1) { _xscale = -100; } _y = (_y + yspeed); _x = (_x + xspeed); _parent._x = _parent._x - (((_parent._x + _x) - 300) / 25); _parent._y = _parent._y - (((_parent._y + _y) - 250) / 25); }
Instance of Symbol 105 MovieClip "tongue" in Symbol 165 MovieClip Frame 1
onClipEvent (load) { myspeed = 50; alive = false; rot = 0; cooldown = 15; } onClipEvent (enterFrame) { if (alive) { angle = ((-Math.atan2(_y - _parent.frog._y, _parent.frog._x - _x)) * 180) / Math.PI; _parent.tongue._rotation = angle - 180; if (myspeed < 0) { rot = angle - 180; myspeed = myspeed - 1; } _alpha = 100; myspeed = myspeed - 5; _x = (_x + (Math.cos((rot * Math.PI) / 180) * myspeed)); _y = (_y + (Math.sin((rot * Math.PI) / 180) * myspeed)); _parent.line.clear(); _parent.line.lineStyle(2, 16711680); _parent.line.moveTo(_parent.frog._x, _parent.frog._y); _parent.line.lineTo(_x, _y); cooldown--; if (this.hitTest(_parent.frog) and (cooldown < 0)) { _parent.line.clear(); alive = false; _alpha = 0; _parent.line.clear(); } } else { _alpha = 0; _parent.line.clear(); } }
Instance of Symbol 164 MovieClip "boss" in Symbol 165 MovieClip Frame 1
onClipEvent (load) { this.gotoAndStop(1); hp = 500; attacking = false; xspeed = 0; redness = 0; dead = false; } onClipEvent (enterFrame) { if (hp <= 0) { dead = true; this.gotoAndStop(4); myColor = new Color(this); myColor.setTint(0, 0, 0, 50); } if (!dead) { if (_parent.tongue.alive and this.hitTest(_parent.tongue._x + _parent._x, _parent.tongue._y + _parent._y, true)) { hp--; redness = 255; } myColor = new Color(this); myColor.setTint(redness, 0, 0, 50); redness = redness / 1.2; if (_currentframe == 1) { attacking = false; if ((Math.random() * 700) < 5) { this.gotoAndStop(2); attacking = true; } if ((Math.random() * 700) < 5) { this.gotoAndStop(3); } xspeed = xspeed + (Math.random() - 0.5); if (_x > 0) { _xscale = 100; } if (_x < 0) { _xscale = -100; } xspeed / 1.1; if ((_x > 700) or (_x < -700)) { xspeed = 0; } _x = (_x + xspeed); } } }
Instance of Symbol 113 MovieClip "foreground" in Symbol 165 MovieClip Frame 1
onClipEvent (load) { sx = 0; } onClipEvent (enterFrame) { sx = sx - (_parent.frog.xspeed * 2); _x = (_x - (((-sx) + _x) / 8)); if (sx < (-_width)) { sx = sx + (_width * 2); _x = (_x + (_width * 2)); } if (sx > _width) { sx = sx - (_width * 2); _x = (_x - (_width * 2)); } }
Symbol 175 Button
on (release) { _root.gotoAndStop("game"); }

Library Items

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

Instance Names

"bar"Frame 1Symbol 18 MovieClip
"game"Frame 18Symbol 165 MovieClip
"death"Symbol 114 MovieClip Frame 1Symbol 76 MovieClip
"ground"Symbol 114 MovieClip Frame 1Symbol 78 MovieClip
"line"Symbol 114 MovieClip Frame 1Symbol 80 MovieClip
"frog"Symbol 114 MovieClip Frame 1Symbol 103 MovieClip
"tongue"Symbol 114 MovieClip Frame 1Symbol 105 MovieClip
"foreground"Symbol 114 MovieClip Frame 1Symbol 113 MovieClip
"ground"Symbol 121 MovieClip Frame 1Symbol 118 MovieClip
"line"Symbol 121 MovieClip Frame 1Symbol 80 MovieClip
"frog"Symbol 121 MovieClip Frame 1Symbol 103 MovieClip
"tongue"Symbol 121 MovieClip Frame 1Symbol 105 MovieClip
"death"Symbol 121 MovieClip Frame 1Symbol 76 MovieClip
"foreground"Symbol 121 MovieClip Frame 1Symbol 113 MovieClip
"ground"Symbol 126 MovieClip Frame 1Symbol 123 MovieClip
"line"Symbol 126 MovieClip Frame 1Symbol 80 MovieClip
"frog"Symbol 126 MovieClip Frame 1Symbol 103 MovieClip
"tongue"Symbol 126 MovieClip Frame 1Symbol 105 MovieClip
"death"Symbol 126 MovieClip Frame 1Symbol 76 MovieClip
"foreground"Symbol 126 MovieClip Frame 1Symbol 113 MovieClip
"ground"Symbol 133 MovieClip Frame 1Symbol 128 MovieClip
"line"Symbol 133 MovieClip Frame 1Symbol 80 MovieClip
"frog"Symbol 133 MovieClip Frame 1Symbol 103 MovieClip
"tongue"Symbol 133 MovieClip Frame 1Symbol 105 MovieClip
"death"Symbol 133 MovieClip Frame 1Symbol 76 MovieClip
"ground"Symbol 165 MovieClip Frame 1Symbol 135 MovieClip
"death"Symbol 165 MovieClip Frame 1Symbol 137 MovieClip
"line"Symbol 165 MovieClip Frame 1Symbol 80 MovieClip
"frog"Symbol 165 MovieClip Frame 1Symbol 103 MovieClip
"tongue"Symbol 165 MovieClip Frame 1Symbol 105 MovieClip
"boss"Symbol 165 MovieClip Frame 1Symbol 164 MovieClip
"foreground"Symbol 165 MovieClip Frame 1Symbol 113 MovieClip

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS1/AS2.
ExportAssets (56)Timeline Frame 1Symbol 1 as "tongue"
ExportAssets (56)Timeline Frame 1Symbol 2 as "cricket"
ExportAssets (56)Timeline Frame 1Symbol 3 as "buzz"
ExportAssets (56)Timeline Frame 1Symbol 4 as "crickets"
ExportAssets (56)Timeline Frame 1Symbol 5 as "mud"

Labels

"intro"Frame 4
"mainmenu"Frame 11
"howto"Frame 12
"dead"Frame 13
"game"Frame 14
"win"Frame 19
"stand"Symbol 103 MovieClip Frame 1
"move"Symbol 103 MovieClip Frame 2
"jump"Symbol 103 MovieClip Frame 3




http://swfchan.com/10/48640/info.shtml
Created: 29/4 -2019 13:55:59 Last modified: 29/4 -2019 13:55:59 Server time: 16/05 -2024 18:25:29