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

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

Bug Justice.swf

This is the info page for
Flash #31419

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


ActionScript [AS1/AS2]
Frame 1
_root._xscale = 81.666; _root._yscale = 81.666; Mouse.hide(); var mouseListener = new Object(); mouseListener.onMouseDown = function () { _root.gotoAndStop("main"); }; mouseListener.onMouseMove = function () { introCursor._x = _root._xmouse - 10; introCursor._y = _root._ymouse - 10; }; Mouse.addListener(mouseListener); soundtrack = new Sound(); soundtrack.setVolume(100); soundtrack.attachSound("bgLoop"); soundtrack.start(0, 9999999999); stop();
Frame 2
function init() { isTalking = false; playSound(); positiveFeedbackArray = new Array("fry1_snd", "fry2_snd", "fry13_snd", "fry4_snd", "fry5_snd", "fry6_snd", "fry7_snd", "fry8_snd", "fry9_snd", "fry10_snd"); _root.cursor.swapDepths(99999); _root.scoreMC.swapDepths(100000); _root.timeMC.swapDepths(100001); initMagnifying(); initMouseListener(); this.rootLevel.createEmptyMovieClip("stageMC", 20); this.mag.createEmptyMovieClip("stageMC", 20); _root.stageManager = new StageManager(this.rootLevel.stageMC, this.mag.stageMC); this.createEmptyMovieClip("timerMC", 100002); _root.timer = new Timer(this.timerMC); this.createEmptyMovieClip("scoreMC", 100003); _root.scoreManager = new ScoreManager(this.scoreMC); _root.setMask(_root.mask); } function initMagnifying() { this.magV = {magmovie:"rootLevel", xpos:0, ypos:0, viewerxsize:100, viewerysize:100, magnification:2}; this.attachMovie(magV.magmovie, magV.magmovie, 0); this.createEmptyMovieClip("viewer", 1); this.attachMovie(magV.magmovie, "mag", 2); this.createEmptyMovieClip("mask", 3); this.mag.setMask(this.cursor.mag); this.magmo = this[magV.magmovie]; magmo._x = magV.xpos; magmo._y = magV.ypos; mag._x = magV.xpos; mag._y = magV.ypos; mag.magfactor = magV.magnification; mag._xscale = (mag._yscale = 100 * mag.magfactor); mag.xoffset = mag._x * mag.magfactor; mag.yoffset = mag._y * mag.magfactor; } function initMouseListener() { Mouse.hide(); var _local2 = new Object(); _local2.onMouseDown = function () { _root.mouseIsDown = true; }; _local2.onMouseUp = function () { _root.mouseIsDown = false; _root.dispatcher.checkHit(); }; _local2.onMouseMove = function () { _root.cursor._x = (viewer._x = _root._xmouse - 16); _root.cursor._y = (viewer._y = _root._ymouse - 16); mag._x = ((viewer._x - (mag.magfactor * _root._xmouse)) + mag.xoffset) + 32; mag._y = ((viewer._y - (mag.magfactor * _root._ymouse)) + mag.yoffset) + 32; }; Mouse.addListener(_local2); } function playSound() { isTalking = true; var _local2 = new Sound(); _local2.setVolume(80); _local2.attachSound("dieDieDie_snd"); _local2.start(); tkTimout = setTimeout(this, "toggleIsTalking", _local2.duration, false); } function positiveFeedback() { if (!isTalking) { isTalking = true; var _local4 = positiveFeedbackArray.length; var _local3 = random(_local4 - 1); var _local5 = positiveFeedbackArray[_local3]; var _local2 = new Sound(); _local2.setVolume(100); _local2.attachSound(_local5); _local2.start(); prevRnd = _local3; trace("POSITIVE FEEDBACK"); trace("DURATION = " + _local2.duration); tkTimout = setTimeout(this, "toggleIsTalking", _local2.duration, false); } } function toggleIsTalking(bool) { trace("TOGGLE IS TALKING"); isTalking = bool; } function reset() { _root.scoreManager.destroy(); this.createEmptyMovieClip("scoreMC", 100003); _root.scoreManager = new ScoreManager(this.scoreMC); _root.stageManager.init(); _root.timer.init(); } if (_global.$tweenManager == undefined) { _global.$tweenManager = new zigo.tweenManager(); } else { _global.$tweenManager.cleanUp(); _global.$tweenManager.init(); } com.robertpenner.easing.Back; com.robertpenner.easing.Bounce; com.robertpenner.easing.Circ; com.robertpenner.easing.Cubic; com.robertpenner.easing.Elastic; com.robertpenner.easing.Expo; com.robertpenner.easing.Linear; com.robertpenner.easing.Quad; com.robertpenner.easing.Quart; com.robertpenner.easing.Quint; com.robertpenner.easing.Sine; var Mp = MovieClip.prototype; Mp.addListener = function () { if (!this._listeners) { AsBroadcaster.initialize(this); } this.addListener.apply(this, arguments); }; ASSetPropFlags(Mp, "addListener", 1, 0); Mp.tween = function (props, pEnd, seconds, animType, delay, callback, extra1, extra2) { if (_global.$tweenManager.isTweenLocked(this)) { trace("tween not added, this movieclip is locked"); return(undefined); } if (arguments.length < 2) { trace("tween not added, props & pEnd must be defined"); return(undefined); } if (typeof(props) == "string") { if (props.indexOf(",") > -1) { props = props.split(" ").join("").split(","); } else { props = [props]; } } if (!(pEnd instanceof Array)) { pEnd = [pEnd]; while (pEnd.length < props.length) { pEnd.push(pEnd[0]); } } if (seconds == undefined) { seconds = 2; } else if (seconds < 0.01) { seconds = 0; } if ((delay < 0.01) || (delay == undefined)) { delay = 0; } switch (typeof(animType)) { case "string" : animType = animType.toLowerCase(); if (animType == "linear") { var eqf = com.robertpenner.easing.Linear.easeNone; } else if (animType.indexOf("easeoutin") == 0) { var t = animType.substr(9); t = t.charAt(0).toUpperCase() + t.substr(1); var eqf = com.robertpenner.easing[t].easeOutIn; } else if (animType.indexOf("easeinout") == 0) { var t = animType.substr(9); t = t.charAt(0).toUpperCase() + t.substr(1); var eqf = com.robertpenner.easing[t].easeInOut; } else if (animType.indexOf("easein") == 0) { var t = animType.substr(6); t = t.charAt(0).toUpperCase() + t.substr(1); var eqf = com.robertpenner.easing[t].easeIn; } else if (animType.indexOf("easeout") == 0) { var t = animType.substr(7); t = t.charAt(0).toUpperCase() + t.substr(1); var eqf = com.robertpenner.easing[t].easeOut; } if (eqf == undefined) { var eqf = com.robertpenner.easing.Expo.easeOut; } break; case "function" : var eqf = animType; break; case "object" : if ((animType.ease != undefined) && (animType.pts != undefined)) { var eqf = animType.ease; extra1 = animType.pts; } else { var eqf = com.robertpenner.easing.Expo.easeOut; } break; default : var eqf = com.robertpenner.easing.Expo.easeOut; } switch (typeof(callback)) { case "function" : callback = {func:callback, scope:this._parent}; break; case "string" : var ilp; var funcp; var scope; var args; var a; ilp = callback.indexOf("("); funcp = callback.slice(0, ilp); scope = eval (funcp.slice(0, funcp.lastIndexOf("."))); func = eval (funcp); args = callback.slice(ilp + 1, callback.lastIndexOf(")")).split(","); var i = 0; while (i < args.length) { a = eval (args[i]); if (a != undefined) { args[i] = a; } i++; } callback = {func:func, scope:scope, args:args}; } if (_global.$tweenManager.autoStop) { _global.$tweenManager.removeTween(this); } if (delay > 0) { _global.$tweenManager.addTweenWithDelay(delay, this, props, pEnd, seconds, eqf, callback, extra1, extra2); } else { _global.$tweenManager.addTween(this, props, pEnd, seconds, eqf, callback, extra1, extra2); } }; Mp.stopTween = function (props) { if (typeof(props) == "string") { if (props.indexOf(",") > -1) { props = props.split(" ").join("").split(","); } else { props = [props]; } } _global.$tweenManager.removeTween(this, props); }; Mp.isTweening = function (prop) { return(_global.$tweenManager.isTweening(this, prop)); }; Mp.getTweens = function () { return(_global.$tweenManager.getTweens(this)); }; Mp.lockTween = function () { _global.$tweenManager.lockTween(this, true); }; Mp.unlockTween = function () { _global.$tweenManager.lockTween(this, false); }; Mp.isTweenLocked = function () { return(_global.$tweenManager.isTweenLocked(this)); }; Mp.isTweenPaused = function (prop) { return(_global.$tweenManager.isTweenPaused(this, prop)); }; Mp.pauseTween = function (props) { var _local4; if (props != undefined) { if (typeof(props) == "string") { if (props.indexOf(",") > -1) { props = props.split(" ").join("").split(","); } else { props = [props]; } } _local4 = {}; for (var _local5 in props) { _local4[props[_local5]] = true; } } _global.$tweenManager.pauseTween(this, _local4); }; Mp.unpauseTween = function (props) { var _local4; if (props != undefined) { if (typeof(props) == "string") { if (props.indexOf(",") > -1) { props = props.split(" ").join("").split(","); } else { props = [props]; } } _local4 = {}; for (var _local5 in props) { _local4[props[_local5]] = true; } } _global.$tweenManager.unpauseTween(this, _local4); }; Mp.pauseAllTweens = function () { _global.$tweenManager.pauseTween(); }; Mp.unpauseAllTweens = function () { _global.$tweenManager.unpauseTween(); }; Mp.stopAllTweens = function () { _global.$tweenManager.stopAll(); }; Mp.ffTween = function (props) { var _local4; if (props != undefined) { if (typeof(props) == "string") { if (props.indexOf(",") > -1) { props = props.split(" ").join("").split(","); } else { props = [props]; } } _local4 = {}; for (var _local5 in props) { _local4[props[_local5]] = true; } } _global.$tweenManager.ffTween(this, _local4); }; Mp.rewTween = function (props) { var _local4; if (props != undefined) { if (typeof(props) == "string") { if (props.indexOf(",") > -1) { props = props.split(" ").join("").split(","); } else { props = [props]; } } _local4 = {}; for (var _local5 in props) { _local4[props[_local5]] = true; } } _global.$tweenManager.rewTween(this, _local4); }; Mp.alphaTo = function (destAlpha, seconds, animType, delay, callback, extra1, extra2) { this.tween(["_alpha"], [destAlpha], seconds, animType, delay, callback, extra1, extra2); }; Mp.scaleTo = function (destScale, seconds, animType, delay, callback, extra1, extra2) { this.tween(["_xscale", "_yscale"], [destScale, destScale], seconds, animType, delay, callback, extra1, extra2); }; Mp.sizeTo = function (destSize, seconds, animType, delay, callback, extra1, extra2) { this.tween(["_width", "_height"], [destSize, destSize], seconds, animType, delay, callback, extra1, extra2); }; Mp.slideTo = function (destX, destY, seconds, animType, delay, callback, extra1, extra2) { this.tween(["_x", "_y"], [destX, destY], seconds, animType, delay, callback, extra1, extra2); }; Mp.rotateTo = function (destRotation, seconds, animType, delay, callback, extra1, extra2) { this.tween(["_rotation"], [destRotation], seconds, animType, delay, callback, extra1, extra2); }; _global.getColorTransObj = function (type, amt, rgb) { switch (type) { case "brightness" : var _local4 = 100 - Math.abs(amt); var _local6 = 0; if (amt > 0) { _local6 = 256 * (amt / 100); } return({ra:_local4, rb:_local6, ga:_local4, gb:_local6, ba:_local4, bb:_local6}); case "brightOffset" : _local6 = 256 * (amt / 100); return({ra:100, rb:_local6, ga:100, gb:_local6, ba:100, bb:_local6}); case "contrast" : var _local2 = {}; _local2.ra = (_local2.ga = (_local2.ba = amt)); _local2.rb = (_local2.gb = (_local2.bb = 128 - (1.28 * amt))); return(_local2); case "invertColor" : _local2 = {}; _local2.ra = (_local2.ga = (_local2.ba = 100 - (2 * amt))); _local2.rb = (_local2.gb = (_local2.bb = amt * 2.55)); return(_local2); case "tint" : if ((rgb == undefined) || (rgb == null)) { } else { var _local8 = rgb >> 16; var _local9 = (rgb >> 8) & 255; var _local7 = rgb & 255; var _local5 = amt / 100; _local2 = {rb:_local8 * _local5, gb:_local9 * _local5, bb:_local7 * _local5}; _local2.ra = (_local2.ga = (_local2.ba = 100 - amt)); return(_local2); } } return({rb:0, ra:100, gb:0, ga:100, bb:0, ba:100}); }; Mp.brightnessTo = function (bright, seconds, animType, delay, callback, extra1, extra2) { this.tween(["_ct_"], [getColorTransObj("brightness", bright)], seconds, animType, delay, callback, extra1, extra2); }; Mp.brightOffsetTo = function (percent, seconds, animType, delay, callback, extra1, extra2) { this.tween(["_ct_"], [getColorTransObj("brightOffset", percent)], seconds, animType, delay, callback, extra1, extra2); }; Mp.contrastTo = function (percent, seconds, animType, delay, callback, extra1, extra2) { this.tween(["_ct_"], [getColorTransObj("contrast", percent)], seconds, animType, delay, callback, extra1, extra2); }; Mp.colorTo = function (rgb, seconds, animType, delay, callback, extra1, extra2) { this.tween(["_ct_"], [getColorTransObj("tint", 100, rgb)], seconds, animType, delay, callback, extra1, extra2); }; Mp.colorTransformTo = function (ra, rb, ga, gb, ba, bb, aa, ab, seconds, animType, delay, callback, extra1, extra2) { var _local2 = {ra:ra, rb:rb, ga:ga, gb:gb, ba:ba, bb:bb, aa:aa, ab:ab}; this.tween(["_ct_"], [_local2], seconds, animType, delay, callback, extra1, extra2); }; Mp.invertColorTo = function (percent, seconds, animType, delay, callback, extra1, extra2) { this.tween(["_ct_"], [getColorTransObj("invertColor", percent)], seconds, animType, delay, callback, extra1, extra2); }; Mp.tintTo = function (rgb, percent, seconds, animType, delay, callback, extra1, extra2) { this.tween(["_ct_"], [getColorTransObj("tint", percent, rgb)], seconds, animType, delay, callback, extra1, extra2); }; Mp.getFrame = function () { return(this._currentframe); }; Mp.setFrame = function (fr) { this.gotoAndStop(Math.round(fr)); }; Mp.addProperty("_frame", Mp.getFrame, Mp.setFrame); Mp.frameTo = function (endframe, duration, animType, delay, callback, extra1, extra2) { if (endframe == undefined) { endframe = this._totalframes; } this.tween("_frame", endframe, duration, animType, delay, callback, extra1, extra2); }; var TFP = TextField.prototype; if (!TFP.origAddListener) { TFP.origAddListener = TFP.addListener; ASSetPropFlags(TFP, "origAddListener", 1, 0); TFP.addListener = function () { if (!this._listeners) { AsBroadcaster.initialize(this); } this.origAddListener.apply(this, arguments); }; } var $_$methods = ["tween", "stopTween", "isTweening", "getTweens", "lockTween", "isTweenLocked", "unlockTween", "isTweenPaused", "pauseTween", "unpauseTween", "pauseAllTweens", "unpauseAllTweens", "stopAllTweens", "ffTween", "rewTween", "getFrame", "setFrame", "_frame", "frameTo", "alphaTo", "brightnessTo", "colorTo", "colorTransformTo", "invertColorTo", "tintTo", "scaleTo", "sizeTo", "slideTo", "rotateTo", "brightOffsetTo", "contrastTo"]; for (var $_$i in $_$methods) { ASSetPropFlags(Mp, $_$methods[$_$i], 1, 0); if ($_$methods[$_$i].toLowerCase().indexOf("frame") == -1) { TFP[$_$methods[$_$i]] = Mp[$_$methods[$_$i]]; ASSetPropFlags(TFP, $_$methods[$_$i], 1, 0); } } delete Mp; delete TFP; delete $_$methods; delete $_$i; init();
Symbol 19 MovieClip [playAgain_mc] Frame 1
stop();
Symbol 19 MovieClip [playAgain_mc] Frame 2
stop();
Symbol 116 MovieClip [ant] Frame 1
this._parent.parentClass.checkCandy(); this._y = this._y - 14;
Symbol 116 MovieClip [ant] Frame 3
this._parent.parentClass.checkCandy(); this._y = this._y - 14;
Symbol 116 MovieClip [ant] Frame 5
this._parent.parentClass.checkCandy(); this._y = this._y - 14;
Symbol 116 MovieClip [ant] Frame 7
stop(); this._parent.parentClass.walk();
Symbol 116 MovieClip [ant] Frame 8
this._parent.parentClass.checkCandy(); this._x = this._x + 14; this._y = this._y - 14;
Symbol 116 MovieClip [ant] Frame 10
this._parent.parentClass.checkCandy(); this._x = this._x + 14; this._y = this._y - 14;
Symbol 116 MovieClip [ant] Frame 12
this._parent.parentClass.checkCandy(); this._x = this._x + 14; this._y = this._y - 14;
Symbol 116 MovieClip [ant] Frame 14
stop(); this._parent.parentClass.walk();
Symbol 116 MovieClip [ant] Frame 15
this._parent.parentClass.checkCandy(); this._x = this._x + 12;
Symbol 116 MovieClip [ant] Frame 17
this._parent.parentClass.checkCandy(); this._x = this._x + 14;
Symbol 116 MovieClip [ant] Frame 19
this._parent.parentClass.checkCandy(); this._x = this._x + 12;
Symbol 116 MovieClip [ant] Frame 21
stop(); this._parent.parentClass.walk();
Symbol 116 MovieClip [ant] Frame 22
this._parent.parentClass.checkCandy(); this._x = this._x + 14; this._y = this._y + 14;
Symbol 116 MovieClip [ant] Frame 24
this._parent.parentClass.checkCandy(); this._x = this._x + 14; this._y = this._y + 14;
Symbol 116 MovieClip [ant] Frame 26
this._parent.parentClass.checkCandy(); this._x = this._x + 14; this._y = this._y + 14;
Symbol 116 MovieClip [ant] Frame 28
stop(); this._parent.parentClass.walk();
Symbol 116 MovieClip [ant] Frame 29
this._parent.parentClass.checkCandy(); this._y = this._y + 14;
Symbol 116 MovieClip [ant] Frame 31
this._parent.parentClass.checkCandy(); this._y = this._y + 14;
Symbol 116 MovieClip [ant] Frame 33
this._parent.parentClass.checkCandy(); this._y = this._y + 14;
Symbol 116 MovieClip [ant] Frame 35
stop(); this._parent.parentClass.walk();
Symbol 116 MovieClip [ant] Frame 36
this._parent.parentClass.checkCandy(); this._x = this._x - 14; this._y = this._y + 14;
Symbol 116 MovieClip [ant] Frame 38
this._parent.parentClass.checkCandy(); this._x = this._x - 14; this._y = this._y + 14;
Symbol 116 MovieClip [ant] Frame 40
this._parent.parentClass.checkCandy(); this._x = this._x - 14; this._y = this._y + 14;
Symbol 116 MovieClip [ant] Frame 42
stop(); this._parent.parentClass.walk();
Symbol 116 MovieClip [ant] Frame 43
this._parent.parentClass.checkCandy(); this._x = this._x - 12;
Symbol 116 MovieClip [ant] Frame 45
this._parent.parentClass.checkCandy(); this._x = this._x - 14;
Symbol 116 MovieClip [ant] Frame 47
this._parent.parentClass.checkCandy(); this._x = this._x - 12;
Symbol 116 MovieClip [ant] Frame 49
stop(); this._parent.parentClass.walk();
Symbol 116 MovieClip [ant] Frame 50
this._parent.parentClass.checkCandy(); this._x = this._x - 14; this._y = this._y - 14;
Symbol 116 MovieClip [ant] Frame 52
this._parent.parentClass.checkCandy(); this._x = this._x - 14; this._y = this._y - 14;
Symbol 116 MovieClip [ant] Frame 54
this._parent.parentClass.checkCandy(); this._x = this._x - 14; this._y = this._y - 14;
Symbol 116 MovieClip [ant] Frame 56
stop(); this._parent.parentClass.walk();
Symbol 116 MovieClip [ant] Frame 81
gotoAndPlay ("flop");
Symbol 186 MovieClip [spider] Frame 1
this._parent.parentClass.checkCandy(); this._y = this._y - 14;
Symbol 186 MovieClip [spider] Frame 3
this._parent.parentClass.checkCandy(); this._y = this._y - 14;
Symbol 186 MovieClip [spider] Frame 5
this._parent.parentClass.checkCandy(); this._y = this._y - 14;
Symbol 186 MovieClip [spider] Frame 7
this._parent.parentClass.walk();
Symbol 186 MovieClip [spider] Frame 8
this._parent.parentClass.checkCandy(); this._x = this._x + 14; this._y = this._y - 14;
Symbol 186 MovieClip [spider] Frame 10
this._parent.parentClass.checkCandy(); this._x = this._x + 14; this._y = this._y - 14;
Symbol 186 MovieClip [spider] Frame 12
this._parent.parentClass.checkCandy(); this._x = this._x + 14; this._y = this._y - 14;
Symbol 186 MovieClip [spider] Frame 14
this._parent.parentClass.walk();
Symbol 186 MovieClip [spider] Frame 15
this._parent.parentClass.checkCandy(); this._x = this._x + 14;
Symbol 186 MovieClip [spider] Frame 17
this._parent.parentClass.checkCandy(); this._x = this._x + 14;
Symbol 186 MovieClip [spider] Frame 19
this._parent.parentClass.checkCandy(); this._x = this._x + 14;
Symbol 186 MovieClip [spider] Frame 21
this._parent.parentClass.walk();
Symbol 186 MovieClip [spider] Frame 22
this._parent.parentClass.checkCandy(); this._x = this._x + 14; this._y = this._y + 14;
Symbol 186 MovieClip [spider] Frame 24
this._parent.parentClass.checkCandy(); this._x = this._x + 14; this._y = this._y + 14;
Symbol 186 MovieClip [spider] Frame 26
this._parent.parentClass.checkCandy(); this._x = this._x + 14; this._y = this._y + 14;
Symbol 186 MovieClip [spider] Frame 28
this._parent.parentClass.walk();
Symbol 186 MovieClip [spider] Frame 29
this._parent.parentClass.checkCandy(); this._y = this._y + 14;
Symbol 186 MovieClip [spider] Frame 31
this._parent.parentClass.checkCandy(); this._y = this._y + 14;
Symbol 186 MovieClip [spider] Frame 33
this._parent.parentClass.checkCandy(); this._y = this._y + 14;
Symbol 186 MovieClip [spider] Frame 35
this._parent.parentClass.walk();
Symbol 186 MovieClip [spider] Frame 36
this._parent.parentClass.checkCandy(); this._x = this._x - 14; this._y = this._y + 14;
Symbol 186 MovieClip [spider] Frame 38
this._parent.parentClass.checkCandy(); this._x = this._x - 14; this._y = this._y + 14;
Symbol 186 MovieClip [spider] Frame 40
this._parent.parentClass.checkCandy(); this._x = this._x - 14; this._y = this._y + 14;
Symbol 186 MovieClip [spider] Frame 42
this._parent.parentClass.walk();
Symbol 186 MovieClip [spider] Frame 43
this._parent.parentClass.checkCandy(); this._x = this._x - 14;
Symbol 186 MovieClip [spider] Frame 45
this._parent.parentClass.checkCandy(); this._x = this._x - 14;
Symbol 186 MovieClip [spider] Frame 47
this._parent.parentClass.checkCandy(); this._x = this._x - 14;
Symbol 186 MovieClip [spider] Frame 49
this._parent.parentClass.walk();
Symbol 186 MovieClip [spider] Frame 50
this._parent.parentClass.checkCandy(); this._x = this._x - 14; this._y = this._y - 14;
Symbol 186 MovieClip [spider] Frame 52
this._parent.parentClass.checkCandy(); this._x = this._x - 14; this._y = this._y - 14;
Symbol 186 MovieClip [spider] Frame 54
this._parent.parentClass.checkCandy(); this._x = this._x - 14; this._y = this._y - 14;
Symbol 186 MovieClip [spider] Frame 56
this._parent.parentClass.walk();
Symbol 186 MovieClip [spider] Frame 79
gotoAndPlay ("flop");
Symbol 254 MovieClip [fry] Frame 59
this._parent._parent.parentClass.runOffScreen();
Symbol 254 MovieClip [fry] Frame 73
stop();
Symbol 354 MovieClip [beetle] Frame 1
this._parent.parentClass.checkCandy(); this._y = this._y - 14;
Symbol 354 MovieClip [beetle] Frame 3
this._parent.parentClass.checkCandy(); this._y = this._y - 14;
Symbol 354 MovieClip [beetle] Frame 5
this._parent.parentClass.checkCandy(); this._y = this._y - 14;
Symbol 354 MovieClip [beetle] Frame 7
stop(); this._parent.parentClass.walk();
Symbol 354 MovieClip [beetle] Frame 8
this._parent.parentClass.checkCandy(); this._x = this._x + 14; this._y = this._y - 14;
Symbol 354 MovieClip [beetle] Frame 10
this._parent.parentClass.checkCandy(); this._x = this._x + 14; this._y = this._y - 14;
Symbol 354 MovieClip [beetle] Frame 12
this._parent.parentClass.checkCandy(); this._x = this._x + 14; this._y = this._y - 14;
Symbol 354 MovieClip [beetle] Frame 14
stop(); this._parent.parentClass.walk();
Symbol 354 MovieClip [beetle] Frame 15
this._parent.parentClass.checkCandy(); this._x = this._x + 14;
Symbol 354 MovieClip [beetle] Frame 17
this._parent.parentClass.checkCandy(); this._x = this._x + 14;
Symbol 354 MovieClip [beetle] Frame 19
this._parent.parentClass.checkCandy(); this._x = this._x + 14;
Symbol 354 MovieClip [beetle] Frame 21
stop(); this._parent.parentClass.walk();
Symbol 354 MovieClip [beetle] Frame 22
this._parent.parentClass.checkCandy(); this._x = this._x + 14; this._y = this._y + 14;
Symbol 354 MovieClip [beetle] Frame 24
this._parent.parentClass.checkCandy(); this._x = this._x + 14; this._y = this._y + 14;
Symbol 354 MovieClip [beetle] Frame 26
this._parent.parentClass.checkCandy(); this._x = this._x + 14; this._y = this._y + 14;
Symbol 354 MovieClip [beetle] Frame 28
stop(); this._parent.parentClass.walk();
Symbol 354 MovieClip [beetle] Frame 29
this._parent.parentClass.checkCandy(); this._y = this._y + 14;
Symbol 354 MovieClip [beetle] Frame 31
this._parent.parentClass.checkCandy(); this._y = this._y + 14;
Symbol 354 MovieClip [beetle] Frame 33
this._parent.parentClass.checkCandy(); this._y = this._y + 14;
Symbol 354 MovieClip [beetle] Frame 35
stop(); this._parent.parentClass.walk();
Symbol 354 MovieClip [beetle] Frame 36
this._parent.parentClass.checkCandy(); this._x = this._x - 14; this._y = this._y + 14;
Symbol 354 MovieClip [beetle] Frame 38
this._parent.parentClass.checkCandy(); this._x = this._x - 14; this._y = this._y + 14;
Symbol 354 MovieClip [beetle] Frame 40
this._parent.parentClass.checkCandy(); this._x = this._x - 14; this._y = this._y + 14;
Symbol 354 MovieClip [beetle] Frame 42
stop(); this._parent.parentClass.walk();
Symbol 354 MovieClip [beetle] Frame 43
this._parent.parentClass.checkCandy(); this._x = this._x - 14;
Symbol 354 MovieClip [beetle] Frame 45
this._parent.parentClass.checkCandy(); this._x = this._x - 14;
Symbol 354 MovieClip [beetle] Frame 47
this._parent.parentClass.checkCandy(); this._x = this._x - 14;
Symbol 354 MovieClip [beetle] Frame 49
stop(); this._parent.parentClass.walk();
Symbol 354 MovieClip [beetle] Frame 50
this._parent.parentClass.checkCandy(); this._x = this._x - 14; this._y = this._y - 14;
Symbol 354 MovieClip [beetle] Frame 52
this._parent.parentClass.checkCandy(); this._x = this._x - 14; this._y = this._y - 14;
Symbol 354 MovieClip [beetle] Frame 54
this._parent.parentClass.checkCandy(); this._x = this._x - 14; this._y = this._y - 14;
Symbol 354 MovieClip [beetle] Frame 56
stop(); this._parent.parentClass.walk();
Symbol 354 MovieClip [beetle] Frame 87
gotoAndPlay ("flop");
Symbol 364 MovieClip [introCursor_mc] Frame 1
stop();
Symbol 364 MovieClip [introCursor_mc] Frame 2
stop();
Symbol 403 MovieClip [__Packages.com.robertpenner.easing.Quad] Frame 0
class com.robertpenner.easing.Quad { function Quad () { } static function easeIn(t, b, c, d) { t = t / d; return(((c * t) * t) + b); } static function easeOut(t, b, c, d) { t = t / d; return((((-c) * t) * (t - 2)) + b); } static function easeInOut(t, b, c, d) { t = t / (d / 2); if (t < 1) { return((((c / 2) * t) * t) + b); } t--; return((((-c) / 2) * ((t * (t - 2)) - 1)) + b); } static function easeOutIn(t, b, c, d) { t = t / (d / 2); if (t < 1) { t--; return((((-c) / 2) * ((t * t) - 1)) + b); } t--; return(((c / 2) * ((t * t) + 1)) + b); } }
Symbol 404 MovieClip [__Packages.com.robertpenner.easing.Circ] Frame 0
class com.robertpenner.easing.Circ { function Circ () { } static function easeIn(t, b, c, d) { t = t / d; return(((-c) * (Math.sqrt(1 - (t * t)) - 1)) + b); } static function easeOut(t, b, c, d) { t = (t / d) - 1; return((c * Math.sqrt(1 - (t * t))) + b); } static function easeInOut(t, b, c, d) { t = t / (d / 2); if (t < 1) { return((((-c) / 2) * (Math.sqrt(1 - (t * t)) - 1)) + b); } t = t - 2; return(((c / 2) * (Math.sqrt(1 - (t * t)) + 1)) + b); } static function easeOutIn(t, b, c, d) { t = t / (d / 2); if (t < 1) { t--; return(((c / 2) * Math.sqrt(1 - (t * t))) + b); } t--; return(((c / 2) * (2 - Math.sqrt(1 - (t * t)))) + b); } }
Symbol 405 MovieClip [__Packages.com.robertpenner.easing.Quart] Frame 0
class com.robertpenner.easing.Quart { function Quart () { } static function easeIn(t, b, c, d) { t = t / d; return(((((c * t) * t) * t) * t) + b); } static function easeOut(t, b, c, d) { t = (t / d) - 1; return(((-c) * ((((t * t) * t) * t) - 1)) + b); } static function easeInOut(t, b, c, d) { t = t / (d / 2); if (t < 1) { return((((((c / 2) * t) * t) * t) * t) + b); } t = t - 2; return((((-c) / 2) * ((((t * t) * t) * t) - 2)) + b); } static function easeOutIn(t, b, c, d) { t = t / (d / 2); if (t < 1) { t--; return((((-c) / 2) * ((((t * t) * t) * t) - 1)) + b); } t--; return(((c / 2) * ((((t * t) * t) * t) + 1)) + b); } }
Symbol 406 MovieClip [__Packages.ScoreManager] Frame 0
class ScoreManager { static var thisClass; var targetMC, levelArray, numberArray, totalScore, scoreCounterMC, timeBonusTime, timeBonusMC, timeBonusNumbersMC, nextLevelMC, highScoreMC; function ScoreManager (tMC) { thisClass = this; targetMC = tMC; init(); } function init() { trace("SCORE " + targetMC); initNumberArray(); currentScore = 0; setCurrentScore(0); } function initNumberArray() { levelArray = new Array(20, 70, 160, 300, 500, 900, 1200, 1800); numberArray = new Array("num_0", "num_1", "num_2", "num_3", "num_4", "num_5", "num_6", "num_7", "num_8", "num_9"); } function setCurrentScore(num) { currentScore = currentScore + num; displayScore(); } function displayScore() { trace((("SET SCORE " + currentScore) + " / ") + totalScore); scoreCounterMC = targetMC.createEmptyMovieClip("scoreCounterMC", 0); scoreCounterMC._x = 142; scoreCounterMC._y = 6; var _local6 = currentScore.toString(); var _local4 = _local6.split(""); var _local2 = 0; while (_local2 < _local4.length) { var _local3 = scoreCounterMC.createEmptyMovieClip(_local2, _local2); var _local5 = scoreCounterMC._width; _local3.attachMovie(numberArray[_local4[_local2]], _local2, _local2); _local3._x = _local5; trace((((("new clip " + numberArray[_local4[_local2]]) + " i = ") + _local2) + " newMC = ") + _local3); _local2++; } } function nextLevel() { trace("NEXT LEVEL"); _root.timer.stopTimer(); _root.dispatcher.pauseGame(); timeBonusTime = _root.timer.getRemaining(); trace("TIME BONUS TIME = " + timeBonusTime); if (timeBonusTime > 100) { timeBonusTime = timeBonusTime - 100; _root.timer.setValue(100); } } function initTimeBonus() { timeBonusMC = targetMC.attachMovie("timeBonus_mc", "timeBonusMC", 2345, {_x:200, _y:144}); } function timeBonus() { trace("timebonustime = " + timeBonusTime); if (timeBonusTime > 0) { _root.timer.increaseValue(2); timeBonusTime = timeBonusTime - 2; var _local3 = setTimeout(this, "timeBonus", 50); displayTimeBonus(); } else { trace("done"); timeBonusMC._visible = false; timeBonusNumbersMC._visible = false; currentLevel++; displayNextLevel(); } } function displayNextLevel() { nextLevelMC = targetMC.attachMovie("nextLevel_mc", "nextLevelMC", 2345, {_x:200, _y:144}); timeBonusNumbersMC = targetMC.createEmptyMovieClip("timeBonusNumbersMC", 699); timeBonusNumbersMC._x = 420; timeBonusNumbersMC._y = 144; var _local6 = levelArray[currentLevel].toString(); var _local4 = _local6.split(""); var _local2 = 0; while (_local2 < _local4.length) { var _local3 = timeBonusNumbersMC.createEmptyMovieClip(_local2, _local2); var _local5 = timeBonusNumbersMC._width; _local3.attachMovie(numberArray[_local4[_local2]], _local2, _local2); _local3._x = _local5; trace((((("new clip " + numberArray[_local4[_local2]]) + " i = ") + _local2) + " newMC = ") + _local3); _local2++; } var _local7 = setTimeout(thisClass, "beginLevel", 1000); } function beginLevel() { nextLevelMC._visible = false; timeBonusNumbersMC._visible = false; _root.timer.startTimer(); } function displayHighScore() { highScoreMC = targetMC.createEmptyMovieClip("highScoreMC", 599); highScoreMC._x = 414; highScoreMC._y = 182; var _local6 = currentScore.toString(); var _local4 = _local6.split(""); var _local2 = 0; while (_local2 < _local4.length) { var _local3 = highScoreMC.createEmptyMovieClip(_local2, _local2); var _local5 = highScoreMC._width; _local3.attachMovie(numberArray[_local4[_local2]], _local2, _local2); _local3._x = _local5; trace((((("new clip " + numberArray[_local4[_local2]]) + " i = ") + _local2) + " newMC = ") + _local3); _local2++; } } function displayTimeBonus() { timeBonusNumbersMC = targetMC.createEmptyMovieClip("timeBonusNumbersMC", 699); timeBonusNumbersMC._x = 420; timeBonusNumbersMC._y = 144; var _local6 = timeBonusTime.toString(); var _local4 = _local6.split(""); var _local2 = 0; while (_local2 < _local4.length) { var _local3 = timeBonusNumbersMC.createEmptyMovieClip(_local2, _local2); var _local5 = timeBonusNumbersMC._width; _local3.attachMovie(numberArray[_local4[_local2]], _local2, _local2); _local3._x = _local5; trace((((("new clip " + numberArray[_local4[_local2]]) + " i = ") + _local2) + " newMC = ") + _local3); _local2++; } } function destroy() { highScoreMC._visible = false; } var currentScore = 0; var currentLevel = 0; }
Symbol 407 MovieClip [__Packages.com.robertpenner.easing.Sine] Frame 0
class com.robertpenner.easing.Sine { function Sine () { } static function easeIn(t, b, c, d) { return((((-c) * Math.cos((t / d) * (Math.PI/2))) + c) + b); } static function easeOut(t, b, c, d) { return((c * Math.sin((t / d) * (Math.PI/2))) + b); } static function easeInOut(t, b, c, d) { return((((-c) / 2) * (Math.cos((Math.PI * t) / d) - 1)) + b); } static function easeOutIn(t, b, c, d) { t = t / (d / 2); if (t < 1) { return(((c / 2) * Math.sin((Math.PI * t) / 2)) + b); } t--; return((((-c) / 2) * (Math.cos((Math.PI * t) / 2) - 2)) + b); } }
Symbol 408 MovieClip [__Packages.com.robertpenner.easing.Back] Frame 0
class com.robertpenner.easing.Back { function Back () { } static function easeIn(t, b, c, d, s) { if (s == undefined) { s = 1.70158; } t = t / d; return((((c * t) * t) * (((s + 1) * t) - s)) + b); } static function easeOut(t, b, c, d, s) { if (s == undefined) { s = 1.70158; } t = (t / d) - 1; return((c * (((t * t) * (((s + 1) * t) + s)) + 1)) + b); } static function easeInOut(t, b, c, d, s) { if (s == undefined) { s = 1.70158; } t = t / (d / 2); if (t < 1) { s = s * 1.525; return(((c / 2) * ((t * t) * (((s + 1) * t) - s))) + b); } t = t - 2; s = s * 1.525; return(((c / 2) * (((t * t) * (((s + 1) * t) + s)) + 2)) + b); } static function easeOutIn(t, b, c, d, s) { if (s == undefined) { s = 1.70158; } t = t / (d / 2); if (t < 1) { t--; s = s * 1.525; return(((c / 2) * (((t * t) * (((s + 1) * t) + s)) + 1)) + b); } t--; s = s * 1.525; return(((c / 2) * (((t * t) * (((s + 1) * t) - s)) + 1)) + b); } }
Symbol 409 MovieClip [__Packages.com.robertpenner.easing.Quint] Frame 0
class com.robertpenner.easing.Quint { function Quint () { } static function easeIn(t, b, c, d) { t = t / d; return((((((c * t) * t) * t) * t) * t) + b); } static function easeOut(t, b, c, d) { t = (t / d) - 1; return((c * (((((t * t) * t) * t) * t) + 1)) + b); } static function easeInOut(t, b, c, d) { t = t / (d / 2); if (t < 1) { return(((((((c / 2) * t) * t) * t) * t) * t) + b); } t = t - 2; return(((c / 2) * (((((t * t) * t) * t) * t) + 2)) + b); } static function easeOutIn(t, b, c, d) { t = t / (d / 2); t--; return(((c / 2) * (((((t * t) * t) * t) * t) + 1)) + b); } }
Symbol 410 MovieClip [__Packages.Timer] Frame 0
class Timer { static var thisClass; var targetMC, gameIsOver, levelArray, numberArray, remaining, elapsedTime, startTime, numCandies, bonus, nextLevelNumbersMC, timeCounterMC; function Timer (tMC) { thisClass = this; targetMC = tMC; gameIsOver = true; init(); } function init() { currentLevel = 1; initNumberArray(); setValue(30); startTimer(); } function initNumberArray() { levelArray = new Array(20, 70, 160, 300, 500, 900, 1200, 1800); numberArray = new Array("num_0", "num_1", "num_2", "num_3", "num_4", "num_5", "num_6", "num_7", "num_8", "num_9"); } function getRemaining() { return(remaining); } function setValue(num) { elapsedTime = num; remaining = num; } function increaseValue(num) { elapsedTime = elapsedTime + num; displayTime(elapsedTime); } function startTimer() { startTime = getTimer(); gameIsOver = false; timing = true; timerEnterFrame(); } function stopTimer() { timing = false; targetMC.onEnterFrame = null; } function timerEnterFrame() { if (thisClass.timing) { targetMC.onEnterFrame = timerEnterFrame; thisClass.elapsedTime = thisClass.remaining - Math.floor((getTimer() - thisClass.startTime) / 1000); if (thisClass.prevTime != thisClass.elapsedTime) { trace("time remaining = " + thisClass.elapsedTime); thisClass.displayTime(thisClass.elapsedTime); } if (thisClass.elapsedTime <= 0) { thisClass.stopTimer(); thisClass.checkBoard(); } thisClass.prevTime = thisClass.elapsedTime; } } function checkBoard() { numCandies = _root.stageManager.candyArray.length; trace("num Candies = " + numCandies); _root.dispatcher.pauseBugs(); if (numCandies == 0) { gameOver(); } else { bonus = numCandies * 50; nextLevel(); } } function nextLevel() { trace("% num candies %" + numCandies); targetMC.attachMovie("candiesSaved_mc", "candiesSavedMC", 2345, {_x:72, _y:178}); nextLevelNumbersMC = targetMC.candiesSavedMC.createEmptyMovieClip("nextLevelNumbersMC", 1); nextLevelNumbersMC._x = 290; nextLevelNumbersMC._y = 0; var _local6 = numCandies.toString(); var _local4 = _local6.split(""); var _local2 = 0; while (_local2 < _local4.length) { var _local3 = nextLevelNumbersMC.createEmptyMovieClip(_local2, _local2); var _local5 = nextLevelNumbersMC._width; _local3.attachMovie(numberArray[_local4[_local2]], _local2, _local2); _local3._x = _local5; trace((((("new clip " + numberArray[_local4[_local2]]) + " i = ") + _local2) + " newMC = ") + _local3); _local2++; } nextLevelNumbersMC = targetMC.candiesSavedMC.createEmptyMovieClip("nextLevelNumbersMC", 3); nextLevelNumbersMC._x = 294; nextLevelNumbersMC._y = 42; _local6 = currentLevel.toString(); _local4 = _local6.split(""); _local2 = 0; while (_local2 < _local4.length) { var _local3 = nextLevelNumbersMC.createEmptyMovieClip(_local2, _local2); var _local5 = nextLevelNumbersMC._width; _local3.attachMovie(numberArray[_local4[_local2]], _local2, _local2); _local3._x = _local5; trace((((("new clip " + numberArray[_local4[_local2]]) + " i = ") + _local2) + " newMC = ") + _local3); _local2++; } nextLevelNumbersMC = targetMC.candiesSavedMC.createEmptyMovieClip("nextLevelNumbersMC", 2); nextLevelNumbersMC._x = 430; nextLevelNumbersMC._y = 0; _local6 = bonus.toString(); _local4 = _local6.split(""); _local2 = 0; while (_local2 < _local4.length) { var _local3 = nextLevelNumbersMC.createEmptyMovieClip(_local2, _local2 + 50); var _local5 = nextLevelNumbersMC._width; _local3.attachMovie(numberArray[_local4[_local2]], _local2 + 50, _local2 + 50); _local3._x = _local5; trace((((("new clip " + numberArray[_local4[_local2]]) + " i = ") + _local2) + " newMC = ") + _local3); _local2++; } scoreBonus(bonus); } function scoreBonus(scr) { if (scr > 0) { _root.scoreManager.setCurrentScore(5); scr = scr - 5; var _local3 = new Sound(); _local3.setVolume(60); _local3.attachSound("bing_snd"); _local3.start(); bonus = bonus - 5; var _local5 = setTimeout(this, "scoreBonus", 100, scr); } else { trace("done"); currentLevel++; startNextLevel(); } } function startNextLevel() { _root.dispatcher.walk(); targetMC.candiesSavedMC.removeMovieClip(); _root.stageManager.addMoreCandy(); setValue(30); startTimer(); _root.dispatcher.addMoreBugs(); } function gameOver() { trace("GAME OVER"); gameIsOver = true; var _local3 = new Sound(); _local3.setVolume(80); _local3.attachSound("gameOver_snd"); _local3.start(); targetMC.attachMovie("gameOver_mc", "gameOverMC", 2345, {_x:232, _y:144}); targetMC.attachMovie("highScore_mc", "highScoreMC", 2346, {_x:204, _y:182}); targetMC.attachMovie("playAgain_mc", "playAgainMC", 2347, {_x:218, _y:238}); _root.scoreManager.displayHighScore(); _root.pointer_mc._visible = false; _root.flag.stop(); _root.removeMouseListener(); Mouse.show(); targetMC.playAgainMC.onRollOver = function () { this.gotoAndStop(2); }; targetMC.playAgainMC.onRollOut = (targetMC.playAgainMC.onDragOut = function () { this.gotoAndStop(1); }); targetMC.playAgainMC.onRelease = function () { Timer.thisClass.destroy(); _root.dispatcher.destroyBugs(); _root.reset(); }; } function displayTime(num) { timeCounterMC = targetMC.createEmptyMovieClip("timeCounterMC", 0); timeCounterMC._x = 555; timeCounterMC._y = 6; num = num.toString(); var _local5 = num.split(""); var _local2 = 0; while (_local2 < _local5.length) { var _local3 = timeCounterMC.createEmptyMovieClip(_local2, _local2); var _local4 = timeCounterMC._width; _local3.attachMovie(numberArray[_local5[_local2]], _local2, _local2); _local3._x = _local4; _local2++; } } function destroy() { targetMC.highScoreMC.removeMovieClip(); targetMC.gameOverMC.removeMovieClip(); targetMC.playAgainMC.removeMovieClip(); } var timing = false; var currentLevel = 0; }
Symbol 411 MovieClip [__Packages.com.robertpenner.easing.Linear] Frame 0
class com.robertpenner.easing.Linear { function Linear () { } static function easeNone(t, b, c, d) { return(((c * t) / d) + b); } static function easeIn(t, b, c, d) { return(((c * t) / d) + b); } static function easeOut(t, b, c, d) { return(((c * t) / d) + b); } static function easeInOut(t, b, c, d) { return(((c * t) / d) + b); } static function easeOutIn(t, b, c, d) { return(((c * t) / d) + b); } }
Symbol 412 MovieClip [__Packages.com.robertpenner.easing.Expo] Frame 0
class com.robertpenner.easing.Expo { function Expo () { } static function easeIn(t, b, c, d) { return(((t == 0) ? (b) : ((c * Math.pow(2, 10 * ((t / d) - 1))) + b))); } static function easeOut(t, b, c, d) { return(((t == d) ? (b + c) : ((c * ((-Math.pow(2, (-10 * t) / d)) + 1)) + b))); } static function easeInOut(t, b, c, d) { if (t == 0) { return(b); } if (t == d) { return(b + c); } t = t / (d / 2); if (t < 1) { return(((c / 2) * Math.pow(2, 10 * (t - 1))) + b); } t--; return(((c / 2) * ((-Math.pow(2, -10 * t)) + 2)) + b); } static function easeOutIn(t, b, c, d) { if (t == 0) { return(b); } if (t == d) { return(b + c); } t = t / (d / 2); if (t < 1) { return(((c / 2) * ((-Math.pow(2, -10 * t)) + 1)) + b); } return(((c / 2) * (Math.pow(2, 10 * (t - 2)) + 1)) + b); } }
Symbol 413 MovieClip [__Packages.com.robertpenner.easing.Elastic] Frame 0
class com.robertpenner.easing.Elastic { function Elastic () { } static function easeIn(t, b, c, d, a, p) { if (t == 0) { return(b); } t = t / d; if (t == 1) { return(b + c); } if (!p) { p = d * 0.3; } if ((!a) || (a < Math.abs(c))) { a = c; var _local7 = p / 4; } else { var _local7 = (p / (Math.PI*2)) * Math.asin(c / a); } t = t - 1; return((-((a * Math.pow(2, 10 * t)) * Math.sin((((t * d) - _local7) * (Math.PI*2)) / p))) + b); } static function easeOut(t, b, c, d, a, p) { if (t == 0) { return(b); } t = t / d; if (t == 1) { return(b + c); } if (!p) { p = d * 0.3; } if ((!a) || (a < Math.abs(c))) { a = c; var _local7 = p / 4; } else { var _local7 = (p / (Math.PI*2)) * Math.asin(c / a); } return((((a * Math.pow(2, -10 * t)) * Math.sin((((t * d) - _local7) * (Math.PI*2)) / p)) + c) + b); } static function easeInOut(t, b, c, d, a, p) { if (t == 0) { return(b); } t = t / (d / 2); if (t == 2) { return(b + c); } if (!p) { p = d * 0.45; } if ((!a) || (a < Math.abs(c))) { a = c; var _local7 = p / 4; } else { var _local7 = (p / (Math.PI*2)) * Math.asin(c / a); } if (t < 1) { t = t - 1; return((-0.5 * ((a * Math.pow(2, 10 * t)) * Math.sin((((t * d) - _local7) * (Math.PI*2)) / p))) + b); } t = t - 1; return(((((a * Math.pow(2, -10 * t)) * Math.sin((((t * d) - _local7) * (Math.PI*2)) / p)) * 0.5) + c) + b); } static function easeOutIn(t, b, c, d, a, p) { if (t == 0) { return(b); } t = t / (d / 2); if (t == 2) { return(b + c); } if (!p) { p = d * 0.45; } if ((!a) || (a < Math.abs(c))) { a = c; var _local7 = p / 4; } else { var _local7 = (p / (Math.PI*2)) * Math.asin(c / a); } if (t < 1) { return(((0.5 * ((a * Math.pow(2, -10 * t)) * Math.sin((((t * d) - _local7) * (Math.PI*2)) / p))) + (c / 2)) + b); } return(((c / 2) + (0.5 * ((a * Math.pow(2, 10 * (t - 2))) * Math.sin((((t * d) - _local7) * (Math.PI*2)) / p)))) + b); } }
Symbol 414 MovieClip [__Packages.StageManager] Frame 0
class StageManager { static var thisClass; var targetMC, magMC, keyListener, candyMcArray, candyArray, candyAvailArray; function StageManager (tMC, mMC) { targetMC = tMC; magMC = mMC; thisClass = this; init(); } function init() { availStomp = 1; initDispatcher(); removeKeyListener(); initKeyListener(); initStomp(); initCandy(); } function initKeyListener() { keyListener = new Object(); keyListener.onKeyDown = function () { var _local1 = Key.getCode(); trace("KEY PRESSED = " + _local1); switch (_local1) { case 32 : trace("C"); StageManager.thisClass.stomp(); break; case 49 : trace("C"); StageManager.thisClass.addStomp(); break; } }; Key.addListener(keyListener); } function removeKeyListener() { Key.removeListener(keyListener); } function initDispatcher() { _root.dispatcher = new Dispatcher(targetMC, magMC); } function initCandy() { candyMcArray = new Array("candy1", "candy2", "candy3", "candy4", "candy5", "candy6", "candy7", "candy8"); candyArray = new Array(); candyAvailArray = new Array(); var _local2 = 0; while (_local2 < candyMcArray.length) { var _local4 = random(200) + 200; var _local3 = random(150) + 150; trace(candyMcArray[_local2]); var _local5 = new Candy(candyMcArray[_local2], targetMC, magMC, depth, _local4, _local3); candyArray.push(_local2); candyAvailArray.push(_local5); depth++; _local2++; } } function addMoreCandy() { var _local6 = candyMcArray.length - candyArray.length; var _local2 = 0; while (_local2 < _local6) { var _local4 = random(200) + 200; var _local3 = random(150) + 150; trace(candyMcArray[_local2]); var _local5 = new Candy(candyMcArray[_local2], targetMC, magMC, depth, _local4, _local3); candyArray.push(_local2); candyAvailArray.push(_local5); depth++; _local2++; } } function takeCandy(num) { trace("TAKE CANDY"); candyAvailArray[num].remove(false); candyAvailArray.splice(num, 1); } function removeCandy(num) { candyArray.splice(candyArray.length - 1, 1); if (candyArray.length == 0) { _root.timer.stopTimer(); _root.timer.gameOver(); _root.dispatcher.pauseBugs(); } } function dropCandy(typ, xPos, yPos, num) { trace("drop candy"); if ((((xPos < 640) && (xPos > 0)) && (yPos > 0)) && (yPos < 480)) { candyAvailArray.push(new Candy(typ, targetMC, magMC, depth, xPos, yPos)); depth++; } else { removeCandy(num); } } function addStomp() { trace("adding stomp"); availStomp = availStomp + 2; initStomp(); } function initStomp() { trace("init stomp " + availStomp); var i = 0; while (i < 10) { eval ((targetMC + ".stomp") + i).removeMovieClip(); i++; } var i = 0; while (i < availStomp) { var stompMC = targetMC.attachMovie("stomp_mc", "stomp" + i, i + 99999); stompMC._x = (66 * i) + 32; stompMC._y = 402; i++; } availStomp--; } function stomp() { if (availStomp >= 0) { _root.rootLevel.foot.tween("_y", -204, 0.1, "linear"); _root.rootLevel.foot.tween("_y", -104, 0.1, "easeInBounce", 0.2); _root.rootLevel.tween("_y", -6, 0.1, "easeInBounce", 0.3); _root.rootLevel.tween("_y", 0, 0.1, "easeInBounce", 0.4); var tmOut = setTimeout(_root.dispatcher, "stomp", 400); eval ((targetMC + ".stomp") + availStomp).removeMovieClip(); availStomp--; trace("STOMP"); } } var availStomp = 1; var depth = 0; }
Symbol 415 MovieClip [__Packages.Dispatcher] Frame 0
class Dispatcher { static var thisClass; var targetMC, magMC, bugArray; function Dispatcher (tMC, mMC) { thisClass = this; targetMC = tMC; magMC = mMC; init(); } function init() { bugArray = new Array(); createAnts(2); createSpiders(1); createBeetles(1); } function addMoreBugs() { createAnts(2); createSpiders(1); createBeetles(1); } function addAnt() { createAnts(1); } function addSpider() { createSpiders(1); } function addBeetle() { createBeetles(1); } function createAnts(num) { var _local3 = bugArray.length; var _local2 = 0; while (_local2 < num) { _local3 = bugArray.length; bugArray.push(new Bug("ant", targetMC, magMC, _local3)); _local2++; } } function createSpiders(num) { var _local3 = bugArray.length; var _local2 = 0; while (_local2 < num) { _local3 = bugArray.length; bugArray.push(new Bug("spider", targetMC, magMC, _local3)); _local2++; } } function createBeetles(num) { var _local3 = bugArray.length; var _local2 = 0; while (_local2 < num) { _local3 = bugArray.length; bugArray.push(new Bug("beetle", targetMC, magMC, _local3)); _local2++; } } function checkHit() { var _local4 = false; var _local2 = 0; while (_local2 < bugArray.length) { var _local3 = bugArray[_local2].checkHit(); if (_local3 == true) { trace("YOU HIT"); break; } _local2++; } if (!_local4) { } } function checkCandy() { var _local6 = bugArray.length; var _local5 = _root.stageManager.candyArray.length; var _local4 = 0; while (_local4 < _local6) { var _local3 = 0; while (_local3 < _local5) { if (bugArray[_local4].bugMC.hitTest(_root.stageManager.candyArray[_local4].candyMC)) { trace("take some fucking candy"); } _local3++; } _local4++; } } function stomp() { trace("STOMP LENGTH = " + bugArray.length); var _local3 = bugArray.length; var _local2 = 0; while (_local2 < _local3) { bugArray[_local2].stomp(); _local2++; } var _local4 = setTimeout(thisClass, "walk", 2000); } function walk() { var _local3 = bugArray.length; var _local2 = 0; while (_local2 < _local3) { bugArray[_local2].paused = false; bugArray[_local2].isRunning = false; bugArray[_local2].walk(); _local2++; } } function pauseBugs() { var _local3 = bugArray.length; var _local2 = 0; while (_local2 < _local3) { bugArray[_local2].pauseBug(); _local2++; } } function destroyBugs() { var _local3 = bugArray.length; var _local2 = 0; while (_local2 < _local3) { bugArray[_local2].destroy(); _local2++; } } }
Symbol 416 MovieClip [__Packages.Bug] Frame 0
class Bug { var targetMC, typ, magMC, depth, directionArray, bugMC, bugMagMC, candyNum, candyType; function Bug (t, tMC, mMC, i) { targetMC = tMC; typ = t; magMC = mMC; depth = i; rndDir = random(directionArray.length); init(); } function init() { directionArray = new Array("north", "northeast", "east", "southeast", "south", "southwest", "west", "northwest"); rndDir = random(directionArray.length - 3) + 1; attachMC(); } function attachMC() { bugMC = targetMC.createEmptyMovieClip("bug" + depth, depth + 10000); bugMagMC = magMC.createEmptyMovieClip("bug" + depth, depth + 10000); bugMC.parentClass = this; bugMagMC.parentClass = this; var _local2 = random(3); bugMC = bugMC.attachMovie(typ, typ + "MC", 0); bugMagMC = bugMagMC.attachMovie(typ, typ + "MC", 0); if (_local2 == 0) { bugMC._y = (bugMagMC._y = 510 + random(400)); bugMC._x = (bugMagMC._x = random(640)); } else if (_local2 == 1) { bugMC._y = (bugMagMC._y = -40 - random(400)); bugMC._x = (bugMagMC._x = random(400) + 240); } else if (_local2 == 2) { bugMC._y = (bugMagMC._y = random(200) + 260); bugMC._x = (bugMagMC._x = -40 - random(400)); } else if (_local2 == 3) { bugMC._y = (bugMagMC._y = random(480)); bugMC._x = (bugMagMC._x = 660 + random(400)); } } function walk() { if (!paused) { if (carryingCandy) { runOffScreen(); } else if (!isRunning) { if (bugMC.hitTest(_root.rootLevel.foot)) { trace("OVER THE FOOT!!!"); bugMC.stop(); bugMagMC.stop(); currentDirection = currentDirection + random(3); if (currentDirection > 7) { currentDirection = random(3); } if (isRunning) { rndDir = rndDir + random(3); if (rndDir > 7) { rndDir = random(3); } bugMC.gotoAndPlay(directionArray[rndDir]); bugMagMC.gotoAndPlay(directionArray[rndDir]); } else { currentDirection = currentDirection + random(3); if (currentDirection > 7) { currentDirection = random(3); } bugMC.gotoAndPlay(directionArray[currentDirection]); bugMagMC.gotoAndPlay(directionArray[currentDirection]); } bugMC.gotoAndPlay(directionArray[rndDir]); bugMagMC.gotoAndPlay(directionArray[rndDir]); } else if (typ == "beetle") { var _local9 = random(3); if (_local9 == 0) { var _local7 = random(directionArray.length); currentDirection = _local7; } else { var _local7 = currentDirection; } bugMC.gotoAndPlay(directionArray[_local7]); bugMagMC.gotoAndPlay(directionArray[_local7]); } else { var _local11 = 0; var _local10 = 640; var _local5 = 0; var _local4 = 480; if (bugMC._x < _local11) { if (bugMC._y < _local5) { var _local6 = "southeast"; } else if (bugMC._y > _local4) { var _local6 = "northeast"; } else { var _local6 = "east"; } trace(_local6); trace((("x=" + bugMC._x) + " y=") + bugMC._y); bugMC.gotoAndPlay(_local6); bugMagMC.gotoAndPlay(_local6); } else if (bugMC._x > _local10) { if (bugMC._y < _local5) { var _local6 = "southwest"; } else if (bugMC._y > _local4) { var _local6 = "northwest"; } else { var _local6 = "west"; } trace(_local6); trace((("x=" + bugMC._x) + " y=") + bugMC._y); bugMC.gotoAndPlay(_local6); bugMagMC.gotoAndPlay(_local6); } else if (bugMC._y > _local4) { var _local6 = "north"; trace(_local6); trace((("x=" + bugMC._x) + " y=") + bugMC._y); bugMC.gotoAndPlay(_local6); bugMagMC.gotoAndPlay(_local6); } else if (bugMC._y < _local5) { var _local6 = "south"; trace(_local6); trace((("x=" + bugMC._x) + " y=") + bugMC._y); bugMC.gotoAndPlay(_local6); bugMagMC.gotoAndPlay(_local6); } else { var _local7 = _root.stageManager.candyAvailArray.length - 1; var _local8 = _root.stageManager.candyAvailArray[_local7].candyMC._x; var _local3 = _root.stageManager.candyAvailArray[_local7].candyMC._y; if (bugMC._x < _local8) { if (bugMC._y < (_local3 - 10)) { var _local6 = "southeast"; } else if (bugMC._y > (_local3 + 10)) { var _local6 = "northeast"; } else { var _local6 = "east"; } trace(_local6); bugMC.gotoAndPlay(_local6); bugMagMC.gotoAndPlay(_local6); } else if (bugMC._x > _local8) { if (bugMC._y < (_local3 - 10)) { var _local6 = "southwest"; } else if (bugMC._y > (_local3 + 10)) { var _local6 = "northwest"; } else { var _local6 = "west"; } trace(_local6); bugMC.gotoAndPlay(_local6); bugMagMC.gotoAndPlay(_local6); } else if (bugMC._y > _local3) { var _local6 = "north"; trace(_local6); bugMC.gotoAndPlay(_local6); bugMagMC.gotoAndPlay(_local6); } else if (bugMC._y < _local3) { var _local6 = "south"; trace(_local6); bugMC.gotoAndPlay(_local6); bugMagMC.gotoAndPlay(_local6); } else { var _local6 = random(directionArray.length); currentDirection = _local6; bugMC.gotoAndPlay(directionArray[_local6]); bugMagMC.gotoAndPlay(directionArray[_local6]); } } } } else { runOffScreen(); } } } function checkHit() { if (bugMagMC.hitTest(_root.cursor.mag)) { hit(); _root.positiveFeedback(); return(true); } return(false); } function hit() { bugMC.attachMovie("fry", "fryMC", 1); bugMC.fryMC._y = -71; bugMagMC.attachMovie("fry", "fryMC", 1); bugMagMC.fryMC._y = -71; if ((hitCount > 1) && (!isHit)) { bugMC.stop(); bugMagMC.stop(); bugMC.gotoAndPlay("flip"); isHit = true; bugMagMC.gotoAndPlay("flip"); if (carryingCandy) { dropCandy(); } if (typ == "spider") { _root.scoreManager.setCurrentScore(3); } else if (typ == "ant") { _root.scoreManager.setCurrentScore(2); } else { _root.scoreManager.setCurrentScore(5); _root.stageManager.addStomp(); } trace("hit count = " + hitCount); } hitCount++; } function stomp() { paused = true; bugMC.stop(); bugMagMC.stop(); bugMC.gotoAndPlay("flip"); bugMagMC.gotoAndPlay("flip"); dropCandy(); carryingCandy = false; } function runOffScreen() { if (_root.timer.timing == true) { isRunning = true; bugMC.gotoAndPlay(directionArray[rndDir]); bugMagMC.gotoAndPlay(directionArray[rndDir]); if ((((bugMC._x > 640) || (bugMC._x < 0)) || (bugMC._y > 480)) || (bugMC._y < 0)) { if (typ == "ant") { _root.dispatcher.addAnt(); } else if (typ == "spider") { _root.dispatcher.addSpider(); } else if (typ == "beetle") { _root.dispatcher.addBeetle(); } if (carryingCandy) { _root.stageManager.removeCandy(candyNum); } destroy(); } } } function checkCandy() { if (typ != "beetle") { if (!carryingCandy) { if ((((bugMC._x > 0) && (bugMC._x < 640)) && (bugMC._y > 0)) && (bugMC._y < 480)) { var _local4 = _root.stageManager.candyAvailArray.length; var _local3 = 0; while (_local3 < _root.stageManager.candyAvailArray.length) { if (bugMC.hitTest(_root.stageManager.candyAvailArray[_local3].candyMC)) { trace("take some fucking candy"); takeCandy(_local3); break; } _local3++; } } } } } function takeCandy(num) { candyNum = num; candyType = _root.stageManager.candyAvailArray[num].typ; bugMagMC.attachMovie(candyType, "candyMC", 11999); bugMC.attachMovie(candyType, "candyMC", 11999); carryingCandy = true; runOffScreen(); _root.stageManager.takeCandy(num); } function dropCandy() { if (bugMagMC.candyMC != undefined) { trace("bugMagMC.candyMC " + bugMagMC.candyMC); bugMagMC.candyMC.removeMovieClip(); bugMC.candyMC.removeMovieClip(); toggleCarryCandy(); _root.stageManager.dropCandy(candyType, bugMC._x, bugMC._y, candyNum); } } function toggleCarryCandy() { carryingCandy = false; } function pauseBug() { paused = true; bugMC.stop(); bugMagMC.stop(); } function destroy() { bugMC.removeMovieClip(); bugMagMC.removeMovieClip(); } var currentDirection = 1; var hitCount = 0; var isRunning = false; var carryingCandy = false; var isHit = false; var paused = false; var rndDir = 1; }
Symbol 417 MovieClip [__Packages.Candy] Frame 0
class Candy { var targetMC, typ, magMC, depth, xpos, ypos, candyMC, candyMagMC; function Candy (t, tMC, mMC, i, xin, yin) { targetMC = tMC; typ = t; magMC = mMC; depth = i; xpos = xin; ypos = yin; init(); } function init() { attachMC(); } function attachMC() { trace("new candy " + typ); candyMC = targetMC.createEmptyMovieClip("candy" + depth, depth + 10); candyMagMC = magMC.createEmptyMovieClip("candy" + depth, depth + 10); candyMC.parentClass = this; candyMagMC.parentClass = this; candyMC._y = (candyMagMC._y = ypos); candyMC._x = (candyMagMC._x = xpos); candyMC.attachMovie(typ, typ + "MC", 0); candyMagMC.attachMovie(typ, typ + "MC", 0); } function checkHit() { } function remove(bool) { candyMC._visible = bool; candyMagMC._visible = bool; } }
Symbol 418 MovieClip [__Packages.com.robertpenner.easing.Bounce] Frame 0
class com.robertpenner.easing.Bounce { function Bounce () { } static function easeOut(t, b, c, d) { t = t / d; if (t < 0.363636363636364) { return((c * ((7.5625 * t) * t)) + b); } if (t < 0.727272727272727) { t = t - 0.545454545454545; return((c * (((7.5625 * t) * t) + 0.75)) + b); } if (t < 0.909090909090909) { t = t - 0.818181818181818; return((c * (((7.5625 * t) * t) + 0.9375)) + b); } t = t - 0.954545454545455; return((c * (((7.5625 * t) * t) + 0.984375)) + b); } static function easeIn(t, b, c, d) { return((c - easeOut(d - t, 0, c, d)) + b); } static function easeInOut(t, b, c, d) { if (t < (d / 2)) { return((easeIn(t * 2, 0, c, d) * 0.5) + b); } return(((easeOut((t * 2) - d, 0, c, d) * 0.5) + (c * 0.5)) + b); } static function easeOutIn(t, b, c, d) { if (t < (d / 2)) { return((easeOut(t * 2, 0, c, d) * 0.5) + b); } return(((easeIn((t * 2) - d, 0, c, d) * 0.5) + (c * 0.5)) + b); } }
Symbol 419 MovieClip [__Packages.zigo.tweenManager] Frame 0
class zigo.tweenManager { var playing, autoStop, broadcastEvents, autoOverwrite, ints, lockedTweens, tweenList, updateTime, tweenHolder, updateIntId, now; function tweenManager () { playing = false; autoStop = false; broadcastEvents = false; autoOverwrite = true; ints = new Array(); lockedTweens = new Object(); tweenList = new Array(); } function cleanUp() { if (!((tweenList instanceof Array) && (tweenList.length > 0))) { return(undefined); } for (var _local2 in tweenList) { if (tweenList[_local2].mc._x == undefined) { tweenList.splice(Number(_local2), 1); } } if (tweenList.length == 0) { tweenList = []; deinit(); } for (var _local2 in ints) { if ((ints[_local2] != undefined) && (ints[_local2].mc._x == undefined)) { removeDelayedTween(Number(_local2)); } } } function set updateInterval(time) { if (playing) { deinit(); updateTime = time; init(); } else { updateTime = time; } //return(updateInterval); } function get updateInterval() { return(updateTime); } function set controllerDepth(v) { if (_global.isNaN(v) == true) { return; } if (tweenHolder._name != undefined) { tweenHolder.swapDepths(v); } else { _th_depth = v; } //return(controllerDepth); } function get controllerDepth() { return(_th_depth); } function init() { if (updateTime > 0) { clearInterval(updateIntId); updateIntId = setInterval(this, "update", updateTime); } else { if (tweenHolder._name == undefined) { tweenHolder = _root.createEmptyMovieClip("_th_", _th_depth); } var tm = this; tweenHolder.onEnterFrame = function () { tm.update.call(tm); }; } playing = true; now = getTimer(); } function deinit() { playing = false; clearInterval(updateIntId); delete tweenHolder.onEnterFrame; } function update() { var _local2; var _local10; var _local3; var _local13 = false; _local10 = tweenList.length; if (broadcastEvents) { var _local4; var _local7; var _local5; var _local9; _local4 = {}; _local7 = {}; _local5 = {}; _local9 = {}; } while (_local10--) { _local2 = tweenList[_local10]; if (_local2.mc._x == undefined) { _local13 = true; continue; } if (_local2.pt != -1) { continue; } if ((_local2.ts + _local2.d) > now) { if (_local2.ctm == undefined) { _local2.mc[_local2.pp] = _local2.ef(now - _local2.ts, _local2.ps, _local2.ch, _local2.d, _local2.e1, _local2.e2); } else { var _local8 = {}; for (_local3 in _local2.ctm) { _local8[_local3] = _local2.ef(now - _local2.ts, _local2.stm[_local3], _local2.ctm[_local3], _local2.d, _local2.e1, _local2.e2); } _local2.c.setTransform(_local8); } if (broadcastEvents) { if (_local4[targetPath(_local2.mc)] == undefined) { _local4[targetPath(_local2.mc)] = _local2.mc; } if (_local5[targetPath(_local2.mc)] == undefined) { _local5[targetPath(_local2.mc)] = []; } _local5[targetPath(_local2.mc)].push(((_local2.ctm != undefined) ? "_ct_" : (_local2.pp))); } if (_local2.cb.updfunc != undefined) { var _local6 = _local2.cb.updfunc; if ((typeof(_local6) == "string") && (_local2.cb.updscope != undefined)) { _local6 = _local2.cb.updscope[_local6]; } _local6.apply(_local2.cb.updscope, _local2.cb.updargs); } } else { if (_local2.ctm == undefined) { _local2.mc[_local2.pp] = _local2.ps + _local2.ch; } else { var _local8 = {}; for (_local3 in _local2.ctm) { _local8[_local3] = _local2.stm[_local3] + _local2.ctm[_local3]; } _local2.c.setTransform(_local8); } if (broadcastEvents) { if (_local4[targetPath(_local2.mc)] == undefined) { _local4[targetPath(_local2.mc)] = _local2.mc; } if (_local7[targetPath(_local2.mc)] == undefined) { _local7[targetPath(_local2.mc)] = _local2.mc; } if (_local5[targetPath(_local2.mc)] == undefined) { _local5[targetPath(_local2.mc)] = []; } _local5[targetPath(_local2.mc)].push(((_local2.ctm != undefined) ? "_ct_" : (_local2.pp))); if (_local9[targetPath(_local2.mc)] == undefined) { _local9[targetPath(_local2.mc)] = []; } _local9[targetPath(_local2.mc)].push(((_local2.ctm != undefined) ? "_ct_" : (_local2.pp))); } if (_local2.cb.updfunc != undefined) { var _local6 = _local2.cb.updfunc; if ((typeof(_local6) == "string") && (_local2.cb.updscope != undefined)) { _local6 = _local2.cb.updscope[_local6]; } _local6.updfunc.apply(_local2.cb.updscope, _local2.cb.updargs); } if (endt == undefined) { var endt = new Array(); } endt.push(_local10); } } if (_local13) { cleanUp(); } for (_local3 in _local4) { _local4[_local3].broadcastMessage("onTweenUpdate", {target:_local4[_local3], props:_local5[_local3]}); } if (endt != undefined) { endTweens(endt); } for (_local3 in _local7) { _local7[_local3].broadcastMessage("onTweenEnd", {target:_local7[_local3], props:_local9[_local3]}); } now = getTimer(); if (updateTime > 0) { updateAfterEvent(); } } function endTweens(tid_arr) { var _local2; var _local9; var _local3; var _local5; var _local8; _local2 = []; _local9 = tid_arr.length; _local3 = 0; while (_local3 < _local9) { _local5 = tweenList[tid_arr[_local3]].cb; if (_local5 != undefined) { var _local6 = true; for (_local8 in _local2) { if (_local2[_local8] == _local5) { _local6 = false; break; } } if (_local6) { _local2.push(_local5); } } tweenList.splice(tid_arr[_local3], 1); _local3++; } _local3 = 0; while (_local3 < _local2.length) { var _local4 = _local2[_local3].func; if ((typeof(_local4) == "string") && (_local2[_local3].scope != undefined)) { _local4 = _local2[_local3].scope[_local4]; } _local4.apply(_local2[_local3].scope, _local2[_local3].args); _local3++; } if (tweenList.length == 0) { deinit(); } } function removeDelayedTween(index) { clearInterval(ints[index].intid); ints[index] = undefined; var _local2 = true; for (var _local3 in ints) { if (ints[_local3] != undefined) { _local2 = false; break; } } if (_local2) { ints = []; } } function addTween(mc, props, pEnd, sec, eqFunc, callback, extra1, extra2) { var _local4; var _local13; var _local6; var _local3; var _local2; if (!playing) { init(); } var _local12 = []; for (_local4 in props) { _local13 = props[_local4]; _local6 = true; if (_local13.substr(0, 4) != "_ct_") { var _local17 = ((typeof(pEnd[_local4]) == "string") ? (Number(pEnd[_local4])) : (pEnd[_local4] - mc[_local13])); if (autoOverwrite) { for (_local3 in tweenList) { _local2 = tweenList[_local3]; if ((_local2.mc == mc) && (_local2.pp == _local13)) { _local2.ps = mc[_local13]; _local2.ch = _local17; _local2.ts = now; _local2.d = sec * 1000; _local2.ef = eqFunc; _local2.cb = callback; _local2.e1 = extra1; _local2.e2 = extra2; _local2.pt = -1; _local6 = false; _local12.push(_local2.pp); break; } } } if (_local6) { tweenList.unshift({mc:mc, pp:_local13, ps:mc[_local13], ch:_local17, ts:now, d:sec * 1000, ef:eqFunc, cb:callback, e1:extra1, e2:extra2, pt:-1}); } } else { var _local16 = new Color(mc); var _local20 = _local16.getTransform(); var _local19 = {}; for (_local3 in pEnd[_local4]) { if ((pEnd[_local4][_local3] != _local20[_local3]) && (pEnd[_local4][_local3] != undefined)) { _local19[_local3] = ((typeof(pEnd[_local4][_local3]) == "string") ? (_local20[_local3] + Number(pEnd[_local4][_local3])) : (pEnd[_local4][_local3] - _local20[_local3])); } } if (autoOverwrite) { for (_local3 in tweenList) { _local2 = tweenList[_local3]; if ((_local2.mc == mc) && (_local2.ctm != undefined)) { _local2.c = _local16; _local2.stm = _local20; (_local2.ctm = _local19); (_local2.ts = now); _local2.d = sec * 1000; _local2.ef = eqFunc; _local2.cb = callback; _local2.e1 = extra1; _local2.e2 = extra2; _local2.pt = -1; _local6 = false; _local12.push("_ct_"); break; } } } if (_local6) { tweenList.unshift({mc:mc, c:_local16, stm:_local20, ctm:_local19, ts:now, d:sec * 1000, ef:eqFunc, cb:callback, e1:extra1, e2:extra2, pt:-1}); } } } if (broadcastEvents) { if (_local12.length > 0) { mc.broadcastMessage("onTweenInterrupt", {target:mc, props:_local12}); } mc.broadcastMessage("onTweenStart", {target:mc, props:props}); } if (callback.startfunc != undefined) { var _local27 = callback.startfunc; if ((typeof(_local27) == "string") && (callback.startscope != undefined)) { _local27 = callback.startscope[_local27]; } _local27.apply(callback.startscope, callback.startargs); } if (sec == 0) { update(); } } function addTweenWithDelay(delay, mc, props, pEnd, sec, eqFunc, callback, extra1, extra2) { var il; var _local3; il = ints.length; _local3 = setInterval(function (obj) { obj.removeDelayedTween(il); if (mc._x != undefined) { obj.addTween(mc, props, pEnd, sec, eqFunc, callback, extra1, extra2); } }, delay * 1000, this); ints[il] = {mc:mc, props:props, pend:pEnd, intid:_local3, st:getTimer(), delay:delay * 1000, args:arguments.slice(1), pt:-1}; if (!playing) { init(); } } function removeTween(mc, props) { var _local8; var _local2; var _local5; _local8 = false; if ((props == undefined) && (broadcastEvents != true)) { _local8 = true; } _local2 = tweenList.length; var _local4 = {}; while (_local2--) { if (tweenList[_local2].mc == mc) { if (_local8) { tweenList.splice(_local2, 1); } else { for (_local5 in props) { if (tweenList[_local2].pp == props[_local5]) { tweenList.splice(_local2, 1); if (_local4[targetPath(mc)] == undefined) { _local4[targetPath(mc)] = {t:mc, p:[]}; } _local4[targetPath(mc)].p.push(props[_local5]); } else if (((props[_local5] == "_ct_") && (tweenList[_local2].ctm != undefined)) && (tweenList[_local2].mc == mc)) { tweenList.splice(_local2, 1); if (_local4[targetPath(mc)] == undefined) { _local4[targetPath(mc)] = {t:mc, p:[]}; } _local4[targetPath(mc)].p.push("_ct_"); } } } } } _local2 = ints.length; while (_local2--) { if (ints[_local2].mc == mc) { if (_local8) { removeDelayedTween(Number(_local2)); } else { for (_local5 in props) { for (var _local11 in ints[_local2].props) { if (ints[_local2].props[_local11] == props[_local5]) { ints[_local2].props.splice(_local11, 1); ints[_local2].pend.splice(_local11, 1); if (_local4[targetPath(mc)] == undefined) { _local4[targetPath(mc)] = {t:mc, p:[]}; } _local4[targetPath(mc)].p.push(props[_local5]); } } if (ints[_local2].props.length == 0) { clearInterval(ints[_local2].intid); } } } } } if (broadcastEvents) { for (var _local11 in _local4) { if (_local4[_local11].p.length > 0) { _local4[_local11].t.broadcastMessage("onTweenInterrupt", {target:_local4[_local11].t, props:_local4[_local11].p}); } } } if (tweenList.length == 0) { deinit(); } } function isTweening(mc, prop) { var _local4 = prop == undefined; for (var _local6 in tweenList) { var _local2 = tweenList[_local6]; if (((tweenList[_local6].mc == mc) && (tweenList[_local6].pt == -1)) && ((_local4 || (prop == _local2.pp)) || ((prop == "_ct_") && (_local2.ctm != undefined)))) { return(true); } } return(false); } function getTweens(mc) { var _local2 = 0; for (var _local4 in tweenList) { if (tweenList[_local4].mc == mc) { _local2++; } } return(_local2); } function lockTween(mc, bool) { lockedTweens[targetPath(mc)] = bool; } function isTweenLocked(mc) { if (lockedTweens[targetPath(mc)] == undefined) { return(false); } return(lockedTweens[targetPath(mc)]); } function ffTween(mc, propsObj) { var _local4 = mc == undefined; var _local6 = propsObj == undefined; for (var _local8 in tweenList) { var _local2 = tweenList[_local8]; if (((_local2.mc == mc) || (_local4)) && (_local6 || (propsObj[_local2.pp] == true))) { if (_local2.pt != -1) { _local2.pt = -1; } _local2.ts = now - _local2.d; } } for (var _local8 in ints) { if (ints[_local8] != undefined) { if ((ints[_local8].mc == mc) || (_local4)) { if (ints[_local8].mc._x != undefined) { var _local3 = ints[_local8].args; _local3[3] = 0; addTween.apply(this, _local3); } removeDelayedTween(Number(_local8)); } } } update(); } function rewTween(mc, propsObj) { var _local3 = mc == undefined; var _local5 = propsObj == undefined; for (var _local7 in tweenList) { var _local2 = tweenList[_local7]; if (((_local2.mc == mc) || (_local3)) && (_local5 || (propsObj[_local2.pp] == true))) { if (_local2.pt != -1) { _local2.pt = -1; } _local2.ts = now; } } for (var _local7 in ints) { if (ints[_local7] != undefined) { if ((ints[_local7].mc == mc) || (_local3)) { if (ints[_local7].mc._x != undefined) { addTween.apply(this, ints[_local7].args); } removeDelayedTween(Number(_local7)); } } } update(); } function isTweenPaused(mc, prop) { if (mc == undefined) { return(null); } var _local5 = prop == undefined; for (var _local6 in tweenList) { var _local2 = tweenList[_local6]; if ((tweenList[_local6].mc == mc) && ((_local5 || (prop == _local2.pp)) || ((prop == "_ct_") && (_local2.ctm != undefined)))) { return(Boolean(tweenList[_local6].pt != -1)); } } for (var _local6 in ints) { if ((ints[_local6] != undefined) && (ints[_local6].mc == mc)) { return(Boolean(ints[_local6].pt != -1)); } } return(false); } function pauseTween(mc, propsObj) { var _local3 = mc == undefined; if ((_local3 == false) && (isTweenPaused(mc) == true)) { return(undefined); } var _local6 = propsObj == undefined; for (var _local7 in tweenList) { var _local2 = tweenList[_local7]; if (((_local2.pt == -1) && ((_local2.mc == mc) || (_local3))) && ((_local6 || (propsObj[_local2.pp] == true)) || ((propsObj._ct_ != undefined) && (_local2.ctm != undefined)))) { _local2.pt = now; } } for (var _local7 in ints) { if (ints[_local7] != undefined) { if ((ints[_local7].pt == -1) && ((ints[_local7].mc == mc) || (_local3))) { ints[_local7].pt = now; } } } } function unpauseTween(mc, propsObj) { var _local4 = mc == undefined; if ((_local4 == false) && (isTweenPaused(mc) === false)) { return(undefined); } var _local7 = propsObj == undefined; if (!playing) { init(); } for (var _local2 in tweenList) { var _local3 = tweenList[_local2]; if ((((_local3.pt != -1) && ((_local3.mc == mc) || (_local4))) && (_local7 || (propsObj[_local3.pp] == true))) || ((propsObj._ct_ != undefined) && (_local3.ctm != undefined))) { _local3.ts = now - (_local3.pt - _local3.ts); _local3.pt = -1; } } for (var _local2 in ints) { if (ints[_local2] != undefined) { if ((ints[_local2].pt != -1) && ((ints[_local2].mc == mc) || (_local4))) { ints[_local2].delay = ints[_local2].delay - (ints[_local2].pt - ints[_local2].st); ints[_local2].st = now; ints[_local2].intid = setInterval(function (obj, id) { obj.addTween.apply(obj, obj.ints[id].args); clearInterval(obj.ints[id].intid); obj.ints[id] = undefined; }, ints[_local2].delay, this, _local2); } } } } function pauseAll() { pauseTween(); } function unpauseAll() { unpauseTween(); } function stopAll() { for (var _local2 in ints) { removeDelayedTween(Number(_local2)); } tweenList = new Array(); deinit(); } function toString() { return("[AS2 tweenManager 1.2.0]"); } var _th_depth = 6789; }
Symbol 420 MovieClip [__Packages.com.robertpenner.easing.Cubic] Frame 0
class com.robertpenner.easing.Cubic { function Cubic () { } static function easeIn(t, b, c, d) { t = t / d; return((((c * t) * t) * t) + b); } static function easeOut(t, b, c, d) { t = (t / d) - 1; return((c * (((t * t) * t) + 1)) + b); } static function easeInOut(t, b, c, d) { t = t / (d / 2); if (t < 1) { return(((((c / 2) * t) * t) * t) + b); } t = t - 2; return(((c / 2) * (((t * t) * t) + 2)) + b); } static function easeOutIn(t, b, c, d) { t = t / (d / 2); t--; return(((c / 2) * (((t * t) * t) + 1)) + b); } }

Library Items

Symbol 1 Sound [fry10_snd]
Symbol 2 Sound [bing_snd]
Symbol 3 Sound [bgLoop]
Symbol 4 Sound [gameOver_snd]
Symbol 5 Sound [fry7_snd]
Symbol 6 Sound [fry6_snd]
Symbol 7 Sound [fry5_snd]
Symbol 8 Sound [fry4_snd]
Symbol 9 Sound [fry3_snd]
Symbol 10 Sound [fry2_snd]
Symbol 11 Sound [fry1_snd]
Symbol 12 Sound [fry9_snd]
Symbol 13 Sound [fry8_snd]
Symbol 14 Sound [dieDieDie_snd]
Symbol 15 BitmapUsed by:16
Symbol 16 GraphicUses:15Used by:19
Symbol 17 BitmapUsed by:18
Symbol 18 GraphicUses:17Used by:19
Symbol 19 MovieClip [playAgain_mc]Uses:16 18
Symbol 20 BitmapUsed by:21
Symbol 21 GraphicUses:20Used by:22
Symbol 22 MovieClip [gameOver_mc]Uses:21
Symbol 23 BitmapUsed by:24
Symbol 24 GraphicUses:23Used by:25
Symbol 25 MovieClip [highScore_mc]Uses:24
Symbol 26 BitmapUsed by:27
Symbol 27 GraphicUses:26Used by:28
Symbol 28 MovieClip [num_0]Uses:27
Symbol 29 BitmapUsed by:30
Symbol 30 GraphicUses:29Used by:31
Symbol 31 MovieClip [num_1]Uses:30
Symbol 32 BitmapUsed by:33
Symbol 33 GraphicUses:32Used by:34
Symbol 34 MovieClip [num_2]Uses:33
Symbol 35 BitmapUsed by:36
Symbol 36 GraphicUses:35Used by:37
Symbol 37 MovieClip [num_3]Uses:36
Symbol 38 BitmapUsed by:39
Symbol 39 GraphicUses:38Used by:40
Symbol 40 MovieClip [num_4]Uses:39
Symbol 41 BitmapUsed by:42
Symbol 42 GraphicUses:41Used by:43
Symbol 43 MovieClip [num_5]Uses:42
Symbol 44 BitmapUsed by:45
Symbol 45 GraphicUses:44Used by:46
Symbol 46 MovieClip [num_6]Uses:45
Symbol 47 BitmapUsed by:48
Symbol 48 GraphicUses:47Used by:49
Symbol 49 MovieClip [num_7]Uses:48
Symbol 50 BitmapUsed by:51
Symbol 51 GraphicUses:50Used by:52
Symbol 52 MovieClip [num_8]Uses:51
Symbol 53 BitmapUsed by:54
Symbol 54 GraphicUses:53Used by:55
Symbol 55 MovieClip [num_9]Uses:54
Symbol 56 BitmapUsed by:57
Symbol 57 GraphicUses:56Used by:116
Symbol 58 BitmapUsed by:59
Symbol 59 GraphicUses:58Used by:116
Symbol 60 BitmapUsed by:61
Symbol 61 GraphicUses:60Used by:116
Symbol 62 BitmapUsed by:63
Symbol 63 GraphicUses:62Used by:116
Symbol 64 BitmapUsed by:65
Symbol 65 GraphicUses:64Used by:116
Symbol 66 BitmapUsed by:67
Symbol 67 GraphicUses:66Used by:116
Symbol 68 BitmapUsed by:69
Symbol 69 GraphicUses:68Used by:116
Symbol 70 BitmapUsed by:71
Symbol 71 GraphicUses:70Used by:116
Symbol 72 BitmapUsed by:73
Symbol 73 GraphicUses:72Used by:116
Symbol 74 BitmapUsed by:75
Symbol 75 GraphicUses:74Used by:116
Symbol 76 BitmapUsed by:77
Symbol 77 GraphicUses:76Used by:116
Symbol 78 BitmapUsed by:79
Symbol 79 GraphicUses:78Used by:116
Symbol 80 BitmapUsed by:81
Symbol 81 GraphicUses:80Used by:116
Symbol 82 BitmapUsed by:83
Symbol 83 GraphicUses:82Used by:116
Symbol 84 BitmapUsed by:85
Symbol 85 GraphicUses:84Used by:116
Symbol 86 BitmapUsed by:87
Symbol 87 GraphicUses:86Used by:116
Symbol 88 BitmapUsed by:89
Symbol 89 GraphicUses:88Used by:116
Symbol 90 BitmapUsed by:91
Symbol 91 GraphicUses:90Used by:116
Symbol 92 BitmapUsed by:93
Symbol 93 GraphicUses:92Used by:116
Symbol 94 BitmapUsed by:95
Symbol 95 GraphicUses:94Used by:116
Symbol 96 BitmapUsed by:97
Symbol 97 GraphicUses:96Used by:116
Symbol 98 BitmapUsed by:99
Symbol 99 GraphicUses:98Used by:116
Symbol 100 BitmapUsed by:101
Symbol 101 GraphicUses:100Used by:116
Symbol 102 BitmapUsed by:103
Symbol 103 GraphicUses:102Used by:116
Symbol 104 BitmapUsed by:105
Symbol 105 GraphicUses:104Used by:116
Symbol 106 BitmapUsed by:107
Symbol 107 GraphicUses:106Used by:116
Symbol 108 BitmapUsed by:109
Symbol 109 GraphicUses:108Used by:116
Symbol 110 BitmapUsed by:111
Symbol 111 GraphicUses:110Used by:116
Symbol 112 BitmapUsed by:113
Symbol 113 GraphicUses:112Used by:116
Symbol 114 BitmapUsed by:115
Symbol 115 GraphicUses:114Used by:116
Symbol 116 MovieClip [ant]Uses:57 59 61 63 65 67 69 71 73 75 77 79 81 83 85 87 89 91 93 95 97 99 101 103 105 107 109 111 113 115
Symbol 117 BitmapUsed by:118
Symbol 118 GraphicUses:117Used by:119
Symbol 119 MovieClipUses:118Used by:127
Symbol 120 BitmapUsed by:121
Symbol 121 GraphicUses:120Used by:127
Symbol 122 GraphicUsed by:123
Symbol 123 MovieClip [invisible_sheild]Uses:122Used by:126
Symbol 124 BitmapUsed by:125
Symbol 125 GraphicUses:124Used by:126
Symbol 126 MovieClipUses:123 125Used by:127
Symbol 127 MovieClip [rootLevel]Uses:119 121 126
Symbol 128 BitmapUsed by:129
Symbol 129 GraphicUses:128Used by:186
Symbol 130 BitmapUsed by:131
Symbol 131 GraphicUses:130Used by:186
Symbol 132 BitmapUsed by:133
Symbol 133 GraphicUses:132Used by:186
Symbol 134 BitmapUsed by:135
Symbol 135 GraphicUses:134Used by:186
Symbol 136 BitmapUsed by:137
Symbol 137 GraphicUses:136Used by:186
Symbol 138 BitmapUsed by:139
Symbol 139 GraphicUses:138Used by:186
Symbol 140 BitmapUsed by:141
Symbol 141 GraphicUses:140Used by:186
Symbol 142 BitmapUsed by:143
Symbol 143 GraphicUses:142Used by:186
Symbol 144 BitmapUsed by:145
Symbol 145 GraphicUses:144Used by:186
Symbol 146 BitmapUsed by:147
Symbol 147 GraphicUses:146Used by:186
Symbol 148 BitmapUsed by:149
Symbol 149 GraphicUses:148Used by:186
Symbol 150 BitmapUsed by:151
Symbol 151 GraphicUses:150Used by:186
Symbol 152 BitmapUsed by:153
Symbol 153 GraphicUses:152Used by:186
Symbol 154 BitmapUsed by:155
Symbol 155 GraphicUses:154Used by:186
Symbol 156 BitmapUsed by:157
Symbol 157 GraphicUses:156Used by:186
Symbol 158 BitmapUsed by:159
Symbol 159 GraphicUses:158Used by:186
Symbol 160 BitmapUsed by:161
Symbol 161 GraphicUses:160Used by:186
Symbol 162 BitmapUsed by:163
Symbol 163 GraphicUses:162Used by:186
Symbol 164 BitmapUsed by:165
Symbol 165 GraphicUses:164Used by:186
Symbol 166 BitmapUsed by:167
Symbol 167 GraphicUses:166Used by:186
Symbol 168 BitmapUsed by:169
Symbol 169 GraphicUses:168Used by:186
Symbol 170 BitmapUsed by:171
Symbol 171 GraphicUses:170Used by:186
Symbol 172 BitmapUsed by:173
Symbol 173 GraphicUses:172Used by:186
Symbol 174 BitmapUsed by:175
Symbol 175 GraphicUses:174Used by:186
Symbol 176 BitmapUsed by:177
Symbol 177 GraphicUses:176Used by:186
Symbol 178 BitmapUsed by:179
Symbol 179 GraphicUses:178Used by:186
Symbol 180 BitmapUsed by:181
Symbol 181 GraphicUses:180Used by:186
Symbol 182 BitmapUsed by:183
Symbol 183 GraphicUses:182Used by:186
Symbol 184 BitmapUsed by:185
Symbol 185 GraphicUses:184Used by:186
Symbol 186 MovieClip [spider]Uses:129 131 133 135 137 139 141 143 145 147 149 151 153 155 157 159 161 163 165 167 169 171 173 175 177 179 181 183 185
Symbol 187 BitmapUsed by:188
Symbol 188 GraphicUses:187Used by:254
Symbol 189 SoundUsed by:254
Symbol 190 BitmapUsed by:191
Symbol 191 GraphicUses:190Used by:254
Symbol 192 BitmapUsed by:193
Symbol 193 GraphicUses:192Used by:254
Symbol 194 BitmapUsed by:195
Symbol 195 GraphicUses:194Used by:254
Symbol 196 BitmapUsed by:197
Symbol 197 GraphicUses:196Used by:254
Symbol 198 BitmapUsed by:199
Symbol 199 GraphicUses:198Used by:254
Symbol 200 BitmapUsed by:201
Symbol 201 GraphicUses:200Used by:254
Symbol 202 BitmapUsed by:203
Symbol 203 GraphicUses:202Used by:254
Symbol 204 BitmapUsed by:205
Symbol 205 GraphicUses:204Used by:254
Symbol 206 BitmapUsed by:207
Symbol 207 GraphicUses:206Used by:254
Symbol 208 BitmapUsed by:209
Symbol 209 GraphicUses:208Used by:254
Symbol 210 BitmapUsed by:211
Symbol 211 GraphicUses:210Used by:254
Symbol 212 BitmapUsed by:213
Symbol 213 GraphicUses:212Used by:254
Symbol 214 BitmapUsed by:215
Symbol 215 GraphicUses:214Used by:254
Symbol 216 BitmapUsed by:217
Symbol 217 GraphicUses:216Used by:254
Symbol 218 BitmapUsed by:219
Symbol 219 GraphicUses:218Used by:254
Symbol 220 BitmapUsed by:221
Symbol 221 GraphicUses:220Used by:254
Symbol 222 BitmapUsed by:223
Symbol 223 GraphicUses:222Used by:254
Symbol 224 BitmapUsed by:225
Symbol 225 GraphicUses:224Used by:254
Symbol 226 BitmapUsed by:227
Symbol 227 GraphicUses:226Used by:254
Symbol 228 BitmapUsed by:229
Symbol 229 GraphicUses:228Used by:254
Symbol 230 BitmapUsed by:231
Symbol 231 GraphicUses:230Used by:254
Symbol 232 BitmapUsed by:233
Symbol 233 GraphicUses:232Used by:254
Symbol 234 BitmapUsed by:235
Symbol 235 GraphicUses:234Used by:254
Symbol 236 BitmapUsed by:237
Symbol 237 GraphicUses:236Used by:254
Symbol 238 BitmapUsed by:239
Symbol 239 GraphicUses:238Used by:254
Symbol 240 BitmapUsed by:241
Symbol 241 GraphicUses:240Used by:254
Symbol 242 BitmapUsed by:243
Symbol 243 GraphicUses:242Used by:254
Symbol 244 BitmapUsed by:245
Symbol 245 GraphicUses:244Used by:254
Symbol 246 BitmapUsed by:247
Symbol 247 GraphicUses:246Used by:254
Symbol 248 BitmapUsed by:249
Symbol 249 GraphicUses:248Used by:254
Symbol 250 BitmapUsed by:251
Symbol 251 GraphicUses:250Used by:254
Symbol 252 BitmapUsed by:253
Symbol 253 GraphicUses:252Used by:254
Symbol 254 MovieClip [fry]Uses:188 189 191 193 195 197 199 201 203 205 207 209 211 213 215 217 219 221 223 225 227 229 231 233 235 237 239 241 243 245 247 249 251 253
Symbol 255 BitmapUsed by:256
Symbol 256 GraphicUses:255Used by:257
Symbol 257 MovieClip [candy1]Uses:256
Symbol 258 BitmapUsed by:259
Symbol 259 GraphicUses:258Used by:260
Symbol 260 MovieClip [candy7]Uses:259
Symbol 261 BitmapUsed by:262
Symbol 262 GraphicUses:261Used by:263
Symbol 263 MovieClip [candy4]Uses:262
Symbol 264 BitmapUsed by:265
Symbol 265 GraphicUses:264Used by:266
Symbol 266 MovieClip [candy3]Uses:265
Symbol 267 BitmapUsed by:268
Symbol 268 GraphicUses:267Used by:269
Symbol 269 MovieClip [candy2]Uses:268
Symbol 270 BitmapUsed by:271
Symbol 271 GraphicUses:270Used by:272
Symbol 272 MovieClip [candy5]Uses:271
Symbol 273 BitmapUsed by:274
Symbol 274 GraphicUses:273Used by:275
Symbol 275 MovieClip [candy6]Uses:274
Symbol 276 BitmapUsed by:277
Symbol 277 GraphicUses:276Used by:278
Symbol 278 MovieClip [candy8]Uses:277
Symbol 279 BitmapUsed by:280
Symbol 280 GraphicUses:279Used by:281  Timeline
Symbol 281 MovieClip [stomp_mc]Uses:280
Symbol 282 BitmapUsed by:283
Symbol 283 GraphicUses:282Used by:284
Symbol 284 MovieClip [candiesSaved_mc]Uses:283
Symbol 285 BitmapUsed by:286
Symbol 286 GraphicUses:285Used by:354
Symbol 287 BitmapUsed by:288
Symbol 288 GraphicUses:287Used by:354
Symbol 289 BitmapUsed by:290 291
Symbol 290 GraphicUses:289Used by:354
Symbol 291 GraphicUses:289Used by:354
Symbol 292 BitmapUsed by:293
Symbol 293 GraphicUses:292Used by:354
Symbol 294 BitmapUsed by:295
Symbol 295 GraphicUses:294Used by:354
Symbol 296 BitmapUsed by:297 298
Symbol 297 GraphicUses:296Used by:354
Symbol 298 GraphicUses:296Used by:354
Symbol 299 BitmapUsed by:300
Symbol 300 GraphicUses:299Used by:354
Symbol 301 BitmapUsed by:302
Symbol 302 GraphicUses:301Used by:354
Symbol 303 BitmapUsed by:304 305
Symbol 304 GraphicUses:303Used by:354
Symbol 305 GraphicUses:303Used by:354
Symbol 306 BitmapUsed by:307
Symbol 307 GraphicUses:306Used by:354
Symbol 308 BitmapUsed by:309
Symbol 309 GraphicUses:308Used by:354
Symbol 310 BitmapUsed by:311 312
Symbol 311 GraphicUses:310Used by:354
Symbol 312 GraphicUses:310Used by:354
Symbol 313 BitmapUsed by:314
Symbol 314 GraphicUses:313Used by:354
Symbol 315 BitmapUsed by:316
Symbol 316 GraphicUses:315Used by:354
Symbol 317 BitmapUsed by:318
Symbol 318 GraphicUses:317Used by:354
Symbol 319 BitmapUsed by:320
Symbol 320 GraphicUses:319Used by:354
Symbol 321 BitmapUsed by:322
Symbol 322 GraphicUses:321Used by:354
Symbol 323 BitmapUsed by:324 325
Symbol 324 GraphicUses:323Used by:354
Symbol 325 GraphicUses:323Used by:354
Symbol 326 BitmapUsed by:327
Symbol 327 GraphicUses:326Used by:354
Symbol 328 BitmapUsed by:329
Symbol 329 GraphicUses:328Used by:354
Symbol 330 BitmapUsed by:331 332
Symbol 331 GraphicUses:330Used by:354
Symbol 332 GraphicUses:330Used by:354
Symbol 333 BitmapUsed by:334
Symbol 334 GraphicUses:333Used by:354
Symbol 335 BitmapUsed by:336
Symbol 336 GraphicUses:335Used by:354
Symbol 337 BitmapUsed by:338 339
Symbol 338 GraphicUses:337Used by:354
Symbol 339 GraphicUses:337Used by:354
Symbol 340 BitmapUsed by:341
Symbol 341 GraphicUses:340Used by:354
Symbol 342 BitmapUsed by:343
Symbol 343 GraphicUses:342Used by:354
Symbol 344 BitmapUsed by:345
Symbol 345 GraphicUses:344Used by:354
Symbol 346 BitmapUsed by:347
Symbol 347 GraphicUses:346Used by:354
Symbol 348 BitmapUsed by:349
Symbol 349 GraphicUses:348Used by:354
Symbol 350 BitmapUsed by:351
Symbol 351 GraphicUses:350Used by:354
Symbol 352 BitmapUsed by:353
Symbol 353 GraphicUses:352Used by:354
Symbol 354 MovieClip [beetle]Uses:286 288 290 291 293 295 297 298 300 302 304 305 307 309 311 312 314 316 318 320 322 324 325 327 329 331 332 334 336 338 339 341 343 345 347 349 351 353
Symbol 355 BitmapUsed by:356
Symbol 356 GraphicUses:355Used by:357
Symbol 357 MovieClip [score_mc]Uses:356Used by:Timeline
Symbol 358 BitmapUsed by:359
Symbol 359 GraphicUses:358Used by:360
Symbol 360 MovieClipUses:359Used by:364
Symbol 361 BitmapUsed by:362
Symbol 362 GraphicUses:361Used by:363
Symbol 363 MovieClipUses:362Used by:364
Symbol 364 MovieClip [introCursor_mc]Uses:360 363Used by:Timeline
Symbol 365 BitmapUsed by:366
Symbol 366 GraphicUses:365Used by:Timeline
Symbol 367 BitmapUsed by:368
Symbol 368 GraphicUses:367Used by:379
Symbol 369 BitmapUsed by:370
Symbol 370 GraphicUses:369Used by:379
Symbol 371 BitmapUsed by:372
Symbol 372 GraphicUses:371Used by:379
Symbol 373 BitmapUsed by:374
Symbol 374 GraphicUses:373Used by:379
Symbol 375 BitmapUsed by:376
Symbol 376 GraphicUses:375Used by:379
Symbol 377 BitmapUsed by:378
Symbol 378 GraphicUses:377Used by:379
Symbol 379 MovieClipUses:368 370 372 374 376 378Used by:Timeline
Symbol 380 BitmapUsed by:381
Symbol 381 GraphicUses:380Used by:392
Symbol 382 BitmapUsed by:383
Symbol 383 GraphicUses:382Used by:392
Symbol 384 BitmapUsed by:385
Symbol 385 GraphicUses:384Used by:392
Symbol 386 BitmapUsed by:387
Symbol 387 GraphicUses:386Used by:392
Symbol 388 BitmapUsed by:389
Symbol 389 GraphicUses:388Used by:392
Symbol 390 BitmapUsed by:391
Symbol 391 GraphicUses:390Used by:392
Symbol 392 MovieClipUses:381 383 385 387 389 391Used by:Timeline
Symbol 403 MovieClip [__Packages.com.robertpenner.easing.Quad]
Symbol 404 MovieClip [__Packages.com.robertpenner.easing.Circ]
Symbol 405 MovieClip [__Packages.com.robertpenner.easing.Quart]
Symbol 406 MovieClip [__Packages.ScoreManager]
Symbol 407 MovieClip [__Packages.com.robertpenner.easing.Sine]
Symbol 408 MovieClip [__Packages.com.robertpenner.easing.Back]
Symbol 409 MovieClip [__Packages.com.robertpenner.easing.Quint]
Symbol 410 MovieClip [__Packages.Timer]
Symbol 411 MovieClip [__Packages.com.robertpenner.easing.Linear]
Symbol 412 MovieClip [__Packages.com.robertpenner.easing.Expo]
Symbol 413 MovieClip [__Packages.com.robertpenner.easing.Elastic]
Symbol 414 MovieClip [__Packages.StageManager]
Symbol 415 MovieClip [__Packages.Dispatcher]
Symbol 416 MovieClip [__Packages.Bug]
Symbol 417 MovieClip [__Packages.Candy]
Symbol 418 MovieClip [__Packages.com.robertpenner.easing.Bounce]
Symbol 419 MovieClip [__Packages.zigo.tweenManager]
Symbol 420 MovieClip [__Packages.com.robertpenner.easing.Cubic]
Symbol 393 GraphicUsed by:394
Symbol 394 MovieClipUses:393Used by:Timeline
Symbol 395 GraphicUsed by:396
Symbol 396 MovieClipUses:395Used by:399
Symbol 397 BitmapUsed by:398
Symbol 398 GraphicUses:397Used by:399
Symbol 399 MovieClipUses:396 398Used by:Timeline
Symbol 400 BitmapUsed by:401
Symbol 401 GraphicUses:400Used by:402
Symbol 402 MovieClipUses:401Used by:Timeline

Instance Names

"introCursor"Frame 1Symbol 364 MovieClip [introCursor_mc]
"mask"Frame 2Symbol 394 MovieClip
"cursor"Frame 2Symbol 399 MovieClip
"scoreMC"Frame 2Symbol 357 MovieClip [score_mc]
"timeMC"Frame 2Symbol 402 MovieClip
"bg"Symbol 127 MovieClip [rootLevel] Frame 1Symbol 119 MovieClip
"foot"Symbol 127 MovieClip [rootLevel] Frame 1Symbol 126 MovieClip
"regular"Symbol 364 MovieClip [introCursor_mc] Frame 1Symbol 360 MovieClip
"selected"Symbol 364 MovieClip [introCursor_mc] Frame 2Symbol 363 MovieClip
"mag"Symbol 399 MovieClip Frame 1Symbol 396 MovieClip

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS1/AS2.
ExportAssets (56)Timeline Frame 1Symbol 1 as "fry10_snd"
ExportAssets (56)Timeline Frame 1Symbol 2 as "bing_snd"
ExportAssets (56)Timeline Frame 1Symbol 3 as "bgLoop"
ExportAssets (56)Timeline Frame 1Symbol 4 as "gameOver_snd"
ExportAssets (56)Timeline Frame 1Symbol 5 as "fry7_snd"
ExportAssets (56)Timeline Frame 1Symbol 6 as "fry6_snd"
ExportAssets (56)Timeline Frame 1Symbol 7 as "fry5_snd"
ExportAssets (56)Timeline Frame 1Symbol 8 as "fry4_snd"
ExportAssets (56)Timeline Frame 1Symbol 9 as "fry3_snd"
ExportAssets (56)Timeline Frame 1Symbol 10 as "fry2_snd"
ExportAssets (56)Timeline Frame 1Symbol 11 as "fry1_snd"
ExportAssets (56)Timeline Frame 1Symbol 12 as "fry9_snd"
ExportAssets (56)Timeline Frame 1Symbol 13 as "fry8_snd"
ExportAssets (56)Timeline Frame 1Symbol 14 as "dieDieDie_snd"
ExportAssets (56)Timeline Frame 1Symbol 19 as "playAgain_mc"
ExportAssets (56)Timeline Frame 1Symbol 22 as "gameOver_mc"
ExportAssets (56)Timeline Frame 1Symbol 25 as "highScore_mc"
ExportAssets (56)Timeline Frame 1Symbol 28 as "num_0"
ExportAssets (56)Timeline Frame 1Symbol 31 as "num_1"
ExportAssets (56)Timeline Frame 1Symbol 34 as "num_2"
ExportAssets (56)Timeline Frame 1Symbol 37 as "num_3"
ExportAssets (56)Timeline Frame 1Symbol 40 as "num_4"
ExportAssets (56)Timeline Frame 1Symbol 43 as "num_5"
ExportAssets (56)Timeline Frame 1Symbol 46 as "num_6"
ExportAssets (56)Timeline Frame 1Symbol 49 as "num_7"
ExportAssets (56)Timeline Frame 1Symbol 52 as "num_8"
ExportAssets (56)Timeline Frame 1Symbol 55 as "num_9"
ExportAssets (56)Timeline Frame 1Symbol 116 as "ant"
ExportAssets (56)Timeline Frame 1Symbol 123 as "invisible_sheild"
ExportAssets (56)Timeline Frame 1Symbol 127 as "rootLevel"
ExportAssets (56)Timeline Frame 1Symbol 186 as "spider"
ExportAssets (56)Timeline Frame 1Symbol 254 as "fry"
ExportAssets (56)Timeline Frame 1Symbol 257 as "candy1"
ExportAssets (56)Timeline Frame 1Symbol 260 as "candy7"
ExportAssets (56)Timeline Frame 1Symbol 263 as "candy4"
ExportAssets (56)Timeline Frame 1Symbol 266 as "candy3"
ExportAssets (56)Timeline Frame 1Symbol 269 as "candy2"
ExportAssets (56)Timeline Frame 1Symbol 272 as "candy5"
ExportAssets (56)Timeline Frame 1Symbol 275 as "candy6"
ExportAssets (56)Timeline Frame 1Symbol 278 as "candy8"
ExportAssets (56)Timeline Frame 1Symbol 281 as "stomp_mc"
ExportAssets (56)Timeline Frame 1Symbol 284 as "candiesSaved_mc"
ExportAssets (56)Timeline Frame 1Symbol 354 as "beetle"
ExportAssets (56)Timeline Frame 1Symbol 357 as "score_mc"
ExportAssets (56)Timeline Frame 1Symbol 364 as "introCursor_mc"
ExportAssets (56)Timeline Frame 1Symbol 403 as "__Packages.com.robertpenner.easing.Quad"
ExportAssets (56)Timeline Frame 1Symbol 404 as "__Packages.com.robertpenner.easing.Circ"
ExportAssets (56)Timeline Frame 1Symbol 405 as "__Packages.com.robertpenner.easing.Quart"
ExportAssets (56)Timeline Frame 1Symbol 406 as "__Packages.ScoreManager"
ExportAssets (56)Timeline Frame 1Symbol 407 as "__Packages.com.robertpenner.easing.Sine"
ExportAssets (56)Timeline Frame 1Symbol 408 as "__Packages.com.robertpenner.easing.Back"
ExportAssets (56)Timeline Frame 1Symbol 409 as "__Packages.com.robertpenner.easing.Quint"
ExportAssets (56)Timeline Frame 1Symbol 410 as "__Packages.Timer"
ExportAssets (56)Timeline Frame 1Symbol 411 as "__Packages.com.robertpenner.easing.Linear"
ExportAssets (56)Timeline Frame 1Symbol 412 as "__Packages.com.robertpenner.easing.Expo"
ExportAssets (56)Timeline Frame 1Symbol 413 as "__Packages.com.robertpenner.easing.Elastic"
ExportAssets (56)Timeline Frame 1Symbol 414 as "__Packages.StageManager"
ExportAssets (56)Timeline Frame 1Symbol 415 as "__Packages.Dispatcher"
ExportAssets (56)Timeline Frame 1Symbol 416 as "__Packages.Bug"
ExportAssets (56)Timeline Frame 1Symbol 417 as "__Packages.Candy"
ExportAssets (56)Timeline Frame 1Symbol 418 as "__Packages.com.robertpenner.easing.Bounce"
ExportAssets (56)Timeline Frame 1Symbol 419 as "__Packages.zigo.tweenManager"
ExportAssets (56)Timeline Frame 1Symbol 420 as "__Packages.com.robertpenner.easing.Cubic"

Labels

"main"Frame 2
"north"Symbol 116 MovieClip [ant] Frame 1
"northeast"Symbol 116 MovieClip [ant] Frame 8
"east"Symbol 116 MovieClip [ant] Frame 15
"southeast"Symbol 116 MovieClip [ant] Frame 22
"south"Symbol 116 MovieClip [ant] Frame 29
"southwest"Symbol 116 MovieClip [ant] Frame 36
"west"Symbol 116 MovieClip [ant] Frame 43
"northwest"Symbol 116 MovieClip [ant] Frame 50
"flip"Symbol 116 MovieClip [ant] Frame 57
"flop"Symbol 116 MovieClip [ant] Frame 65
"north"Symbol 186 MovieClip [spider] Frame 1
"northeast"Symbol 186 MovieClip [spider] Frame 8
"east"Symbol 186 MovieClip [spider] Frame 15
"southeast"Symbol 186 MovieClip [spider] Frame 22
"south"Symbol 186 MovieClip [spider] Frame 29
"southwest"Symbol 186 MovieClip [spider] Frame 36
"west"Symbol 186 MovieClip [spider] Frame 43
"northwest"Symbol 186 MovieClip [spider] Frame 50
"flip"Symbol 186 MovieClip [spider] Frame 57
"flop"Symbol 186 MovieClip [spider] Frame 63
"north"Symbol 354 MovieClip [beetle] Frame 1
"northeast"Symbol 354 MovieClip [beetle] Frame 8
"east"Symbol 354 MovieClip [beetle] Frame 15
"southeast"Symbol 354 MovieClip [beetle] Frame 22
"south"Symbol 354 MovieClip [beetle] Frame 29
"southwest"Symbol 354 MovieClip [beetle] Frame 36
"west"Symbol 354 MovieClip [beetle] Frame 43
"northwest"Symbol 354 MovieClip [beetle] Frame 50
"flip"Symbol 354 MovieClip [beetle] Frame 57
"flop"Symbol 354 MovieClip [beetle] Frame 67




http://swfchan.com/7/31419/info.shtml
Created: 18/5 -2019 15:50:39 Last modified: 18/5 -2019 15:50:39 Server time: 02/05 -2024 22:53:36