Frame 1
_global.$createTweenController = function () {
var _local3 = _root.createEmptyMovieClip("__tweenController__", 123432);
_local3.$_tweenPropList = new Array();
_local3.$_tTime = getTimer();
_local3.onEnterFrame = _global.$updateTweens;
};
ASSetPropFlags(_global, "$createTweenController", 1, 0);
_global.$removeTweenController = function () {
delete _root.__tweenController__.$_tweenPropList;
delete _root.__tweenController__.$_tTime;
delete _root.__tweenController__.onEnterFrame;
_root.__tweenController__.removeMovieClip();
};
ASSetPropFlags(_global, "$removeTweenController", 1, 0);
_global.$addTween = function (mtarget, prop, propDest, timeSeconds, animType, delay, callback, extra1, extra2, extras) {
if (timeSeconds == undefined) {
timeSeconds = 0;
}
if ((animType == undefined) || (animType == "")) {
animType = "easeOutExpo";
}
if (delay == undefined) {
delay = 0;
}
if (typeof(prop) == "string") {
var _local7 = [prop];
var _local11 = [mtarget[prop]];
var _local9 = [propDest];
} else {
var _local7 = [];
var _local11 = [];
var _local9 = [];
for (var _local32 in prop) {
_local11.push(mtarget[prop[_local32]]);
}
for (var _local32 in prop) {
_local7.push(prop[_local32]);
}
for (var _local32 in propDest) {
_local9.push(propDest[_local32]);
}
}
var _local12 = false;
if (_root.__tweenController__ == undefined) {
_global.$createTweenController();
}
var _local4 = _root.__tweenController__.$_tweenPropList;
var _local8 = _root.__tweenController__.$_tTime;
for (var _local32 in _local11) {
if ((_local9[_local32] != undefined) && (!mtarget.$_isTweenLocked)) {
if (mtarget.$_tweenCount > 0) {
var _local3 = 0;
while (_local3 < _local4.length) {
if ((_local4[_local3]._targ == mtarget) && (_local4[_local3]._prop == _local7[_local32])) {
if ((_local8 + (delay * 1000)) < _local4[_local3]._timeDest) {
_local4.splice(_local3, 1);
_local3--;
mtarget.$_tweenCount--;
}
}
_local3++;
}
}
_local4.push({_prop:_local7[_local32], _targ:mtarget, _propStart:undefined, _propDest:_local9[_local32], _timeStart:_local8, _timeDest:_local8 + (timeSeconds * 1000), _animType:animType, _extra1:extra1, _extra2:extra2, _extras:extras, _delay:delay, _isPaused:false, _timePaused:0, _callback:(_local12 ? undefined : (callback))});
mtarget.$_tweenCount = ((mtarget.$_tweenCount > 0) ? (mtarget.$_tweenCount + 1) : 1);
_local12 = true;
}
}
ASSetPropFlags(mtarget, "$_tweenCount", 1, 0);
};
ASSetPropFlags(_global, "$addTween", 1, 0);
_global.$updateTweens = function () {
var _local8 = (this.$_tTime = getTimer());
var _local6 = 0;
while (_local6 < this.$_tweenPropList.length) {
var _local3 = this.$_tweenPropList[_local6];
if (_local3._targ.toString() == undefined) {
this.$_tweenPropList.splice(_local6, 1);
_local6--;
} else if (((_local3._timeStart + (_local3._delay * 1000)) <= _local8) && (!_local3._isPaused)) {
if (_local3._propStart == undefined) {
if (_local3._prop.substr(0, 10) == "__special_") {
if (_local3._prop == "__special_mc_frame__") {
_local3._propStart = _local3._targ._currentframe;
} else if (_local3._prop == "__special_mc_ra__") {
_local3._propStart = new Color(_local3._targ).getTransform().ra;
} else if (_local3._prop == "__special_mc_rb__") {
_local3._propStart = new Color(_local3._targ).getTransform().rb;
} else if (_local3._prop == "__special_mc_ga__") {
_local3._propStart = new Color(_local3._targ).getTransform().ga;
} else if (_local3._prop == "__special_mc_gb__") {
_local3._propStart = new Color(_local3._targ).getTransform().gb;
} else if (_local3._prop == "__special_mc_ba__") {
_local3._propStart = new Color(_local3._targ).getTransform().ba;
} else if (_local3._prop == "__special_mc_bb__") {
_local3._propStart = new Color(_local3._targ).getTransform().bb;
} else if (_local3._prop == "__special_mc_aa__") {
_local3._propStart = new Color(_local3._targ).getTransform().aa;
} else if (_local3._prop == "__special_mc_ab__") {
_local3._propStart = new Color(_local3._targ).getTransform().ab;
} else if (_local3._prop == "__special_text_r__") {
_local3._propStart = _local3._targ.textColor >> 16;
} else if (_local3._prop == "__special_text_g__") {
_local3._propStart = (_local3._targ.textColor & 65280) >> 8;
} else if (_local3._prop == "__special_text_b__") {
_local3._propStart = _local3._targ.textColor & 255;
} else if (_local3._prop == "__special_sound_volume__") {
_local3._propStart = _local3._targ.getVolume();
} else if (_local3._prop == "__special_sound_pan__") {
_local3._propStart = _local3._targ.getPan();
} else if (_local3._prop == "__special_bst_t__") {
_local3._propStart = 0;
_local3._extras.__special_bst_ix__ = _local3._targ._x;
_local3._extras.__special_bst_iy__ = _local3._targ._y;
} else if (_local3._prop == "__special_blur_x__") {
var _local5 = 0;
while (_local5 < _local3._targ.filters.length) {
if (_local3._targ.filters[_local5] instanceof flash.filters.BlurFilter) {
_local3._propStart = _local3._targ.filters[_local5].blurX;
}
_local5++;
}
if (_local3._propStart == undefined) {
_local3._propStart = 0;
}
} else if (_local3._prop == "__special_blur_y__") {
var _local5 = 0;
while (_local5 < _local3._targ.filters.length) {
if (_local3._targ.filters[_local5] instanceof flash.filters.BlurFilter) {
_local3._propStart = _local3._targ.filters[_local5].blurY;
}
_local5++;
}
if (_local3._propStart == undefined) {
_local3._propStart = 0;
}
} else if (_local3._prop == "__special_glow_color__") {
var _local5 = 0;
while (_local5 < _local3._targ.filters.length) {
if (_local3._targ.filters[_local5] instanceof flash.filters.GlowFilter) {
_local3._propStart = _local3._targ.filters[_local5].color;
}
_local5++;
}
if (_local3._propStart == undefined) {
_local3._propStart = 16777215 /* 0xFFFFFF */;
}
} else if (_local3._prop == "__special_glow_alpha__") {
var _local5 = 0;
while (_local5 < _local3._targ.filters.length) {
if (_local3._targ.filters[_local5] instanceof flash.filters.GlowFilter) {
_local3._propStart = _local3._targ.filters[_local5].alpha;
}
_local5++;
}
if (_local3._propStart == undefined) {
_local3._propStart = 1;
}
} else if (_local3._prop == "__special_glow_blurX__") {
var _local5 = 0;
while (_local5 < _local3._targ.filters.length) {
if (_local3._targ.filters[_local5] instanceof flash.filters.GlowFilter) {
_local3._propStart = _local3._targ.filters[_local5].blurX;
}
_local5++;
}
if (_local3._propStart == undefined) {
_local3._propStart = 0;
}
} else if (_local3._prop == "__special_glow_blurY__") {
var _local5 = 0;
while (_local5 < _local3._targ.filters.length) {
if (_local3._targ.filters[_local5] instanceof flash.filters.GlowFilter) {
_local3._propStart = _local3._targ.filters[_local5].blurY;
}
_local5++;
}
if (_local3._propStart == undefined) {
_local3._propStart = 0;
}
} else if (_local3._prop == "__special_glow_strength__") {
var _local5 = 0;
while (_local5 < _local3._targ.filters.length) {
if (_local3._targ.filters[_local5] instanceof flash.filters.GlowFilter) {
_local3._propStart = _local3._targ.filters[_local5].strength;
}
_local5++;
}
if (_local3._propStart == undefined) {
_local3._propStart = 1;
}
} else if (_local3._prop == "__special_bevel_distance__") {
var _local5 = 0;
while (_local5 < _local3._targ.filters.length) {
if (_local3._targ.filters[_local5] instanceof flash.filters.BevelFilter) {
_local3._propStart = _local3._targ.filters[_local5].distance;
}
_local5++;
}
if (_local3._propStart == undefined) {
_local3._propStart = 0;
}
} else if (_local3._prop == "__special_bevel_angle__") {
var _local5 = 0;
while (_local5 < _local3._targ.filters.length) {
if (_local3._targ.filters[_local5] instanceof flash.filters.BevelFilter) {
_local3._propStart = _local3._targ.filters[_local5].angle;
}
_local5++;
}
if (_local3._propStart == undefined) {
_local3._propStart = 45;
}
} else if (_local3._prop == "__special_bevel_highlightColor__") {
var _local5 = 0;
while (_local5 < _local3._targ.filters.length) {
if (_local3._targ.filters[_local5] instanceof flash.filters.BevelFilter) {
_local3._propStart = _local3._targ.filters[_local5].highlightColor;
}
_local5++;
}
if (_local3._propStart == undefined) {
_local3._propStart = 16777215 /* 0xFFFFFF */;
}
} else if (_local3._prop == "__special_bevel_highlightAlpha__") {
var _local5 = 0;
while (_local5 < _local3._targ.filters.length) {
if (_local3._targ.filters[_local5] instanceof flash.filters.BevelFilter) {
_local3._propStart = _local3._targ.filters[_local5].highlightAlpha;
}
_local5++;
}
if (_local3._propStart == undefined) {
_local3._propStart = 1;
}
} else if (_local3._prop == "__special_bevel_shadowColor__") {
var _local5 = 0;
while (_local5 < _local3._targ.filters.length) {
if (_local3._targ.filters[_local5] instanceof flash.filters.BevelFilter) {
_local3._propStart = _local3._targ.filters[_local5].shadowColor;
}
_local5++;
}
if (_local3._propStart == undefined) {
_local3._propStart = 0;
}
} else if (_local3._prop == "__special_bevel_shadowAlpha__") {
var _local5 = 0;
while (_local5 < _local3._targ.filters.length) {
if (_local3._targ.filters[_local5] instanceof flash.filters.BevelFilter) {
_local3._propStart = _local3._targ.filters[_local5].shadowAlpha;
}
_local5++;
}
if (_local3._propStart == undefined) {
_local3._propStart = 1;
}
} else if (_local3._prop == "__special_bevel_blurX__") {
var _local5 = 0;
while (_local5 < _local3._targ.filters.length) {
if (_local3._targ.filters[_local5] instanceof flash.filters.BevelFilter) {
_local3._propStart = _local3._targ.filters[_local5].blurX;
}
_local5++;
}
if (_local3._propStart == undefined) {
_local3._propStart = 0;
}
} else if (_local3._prop == "__special_bevel_blurY__") {
var _local5 = 0;
while (_local5 < _local3._targ.filters.length) {
if (_local3._targ.filters[_local5] instanceof flash.filters.BevelFilter) {
_local3._propStart = _local3._targ.filters[_local5].blurY;
}
_local5++;
}
if (_local3._propStart == undefined) {
_local3._propStart = 0;
}
} else if (_local3._prop == "__special_bevel_strength__") {
var _local5 = 0;
while (_local5 < _local3._targ.filters.length) {
if (_local3._targ.filters[_local5] instanceof flash.filters.BevelFilter) {
_local3._propStart = _local3._targ.filters[_local5].strength;
}
_local5++;
}
if (_local3._propStart == undefined) {
_local3._propStart = 1;
}
} else {
_local3._propStart = _local3._targ[_local3._prop];
}
} else {
_local3._propStart = _local3._targ[_local3._prop];
}
}
var _local10 = _local3._timeDest + (_local3._delay * 1000);
if (_local10 <= _local8) {
var _local4 = _local3._propDest;
} else {
var _local4 = _global.findTweenValue(_local3._propStart, _local3._propDest, _local3._timeStart, _local8 - (_local3._delay * 1000), _local3._timeDest, _local3._animType, _local3._extra1, _local3._extra2);
}
_local3._targ[_local3._prop] = (_local3._extras.mustRound ? (Math.round(_local4)) : (_local4));
if (_local3._prop == "__special_mc_frame__") {
_local3._targ.gotoAndStop(Math.round(_local4));
} else if (_local3._prop == "__special_mc_ra__") {
new Color(_local3._targ).setTransform({ra:_local4});
} else if (_local3._prop == "__special_mc_rb__") {
new Color(_local3._targ).setTransform({rb:_local4});
} else if (_local3._prop == "__special_mc_ga__") {
new Color(_local3._targ).setTransform({ga:_local4});
} else if (_local3._prop == "__special_mc_gb__") {
new Color(_local3._targ).setTransform({gb:_local4});
} else if (_local3._prop == "__special_mc_ba__") {
new Color(_local3._targ).setTransform({ba:_local4});
} else if (_local3._prop == "__special_mc_bb__") {
new Color(_local3._targ).setTransform({bb:_local4});
} else if (_local3._prop == "__special_mc_aa__") {
new Color(_local3._targ).setTransform({aa:_local4});
} else if (_local3._prop == "__special_mc_ab__") {
new Color(_local3._targ).setTransform({ab:_local4});
}
if (_local3._prop == "__special_bst_t__") {
var _local7 = _local3._extras;
var _local9 = _global.findPointOnCurve(_local7.__special_bst_ix__, _local7.__special_bst_iy__, _local7.__special_bst_cx__, _local7.__special_bst_cy__, _local7.__special_bst_dx__, _local7.__special_bst_dy__, _local4);
if (_local3._extras.mustRound) {
_local3._targ._x = Math.round(_local9.x);
_local3._targ._y = Math.round(_local9.y);
} else {
_local3._targ._x = _local9.x;
_local3._targ._y = _local9.y;
}
}
if ((typeof(_local3._targ) != "movieclip") && (_local3._prop == "__special_text_b__")) {
_local3._targ.textColor = ((_local3._targ.__special_text_r__ << 16) + (_local3._targ.__special_text_g__ << 8)) + _local3._targ.__special_text_b__;
}
if (_local3._prop == "__special_sound_volume__") {
_local3._targ.setVolume(_local4);
}
if (_local3._prop == "__special_sound_pan__") {
_local3._targ.setPan(_local4);
}
if (_local3._prop == "__special_blur_x__") {
_global.$setFilterProperty(_local3._targ, "blur_blurX", _local4, _local3._extras);
}
if (_local3._prop == "__special_blur_y__") {
_global.$setFilterProperty(_local3._targ, "blur_blurY", _local4, _local3._extras);
}
if (_local3._prop == "__special_glow_color__") {
_global.$setFilterProperty(_local3._targ, "glow_color", _global.findTweenColor(_local3, _local8), _local3._extras);
}
if (_local3._prop == "__special_glow_alpha__") {
_global.$setFilterProperty(_local3._targ, "glow_alpha", _local4, _local3._extras);
}
if (_local3._prop == "__special_glow_blurX__") {
_global.$setFilterProperty(_local3._targ, "glow_blurX", _local4, _local3._extras);
}
if (_local3._prop == "__special_glow_blurY__") {
_global.$setFilterProperty(_local3._targ, "glow_blurY", _local4, _local3._extras);
}
if (_local3._prop == "__special_glow_strength__") {
_global.$setFilterProperty(_local3._targ, "glow_strength", _local4, _local3._extras);
}
if (_local3._prop == "__special_bevel_distance__") {
_global.$setFilterProperty(_local3._targ, "bevel_distance", _local4, _local3._extras);
}
if (_local3._prop == "__special_bevel_angle__") {
_global.$setFilterProperty(_local3._targ, "bevel_angle", _local4, _local3._extras);
}
if (_local3._prop == "__special_bevel_highlightColor__") {
_global.$setFilterProperty(_local3._targ, "bevel_highlightColor", _global.findTweenColor(_local3, _local8), _local3._extras);
}
if (_local3._prop == "__special_bevel_highlightAlpha__") {
_global.$setFilterProperty(_local3._targ, "bevel_highlightAlpha", _local4, _local3._extras);
}
if (_local3._prop == "__special_bevel_shadowColor__") {
_global.$setFilterProperty(_local3._targ, "bevel_shadowColor", _global.findTweenColor(_local3, _local8), _local3._extras);
}
if (_local3._prop == "__special_bevel_shadowAlpha__") {
_global.$setFilterProperty(_local3._targ, "bevel_shadowAlpha", _local4, _local3._extras);
}
if (_local3._prop == "__special_bevel_blurX__") {
_global.$setFilterProperty(_local3._targ, "bevel_blurX", _local4, _local3._extras);
}
if (_local3._prop == "__special_bevel_blurY__") {
_global.$setFilterProperty(_local3._targ, "bevel_blurY", _local4, _local3._extras);
}
if (_local3._prop == "__special_bevel_strength__") {
_global.$setFilterProperty(_local3._targ, "bevel_strength", _local4, _local3._extras);
}
if (_local3._targ.onTweenUpdate != undefined) {
_local3._targ.onTweenUpdate(_local3._prop);
}
if (_local10 <= _local8) {
if (_local3._targ.onTweenComplete != undefined) {
_local3._targ.onTweenComplete(_local3._prop);
}
_global.$stopTween(_local3._targ, [_local3._prop], false);
_local6--;
if (_local3._callback != undefined) {
if (_global.backwardCallbackTweening) {
var _local11 = _local3._targ.createEmptyMovieClip("__child__", 122344);
_local3._callback.apply(_local11, null);
_local11.removeMovieClip();
} else {
_local3._callback.apply(_local3._targ, null);
}
}
}
}
_local6++;
}
if (this.$_tweenPropList.length == 0) {
_global.$removeTweenController();
}
};
ASSetPropFlags(_global, "$updateTween", 1, 0);
_global.$stopTween = function (mtarget, props, wipeFuture) {
var _local4 = _root.__tweenController__.$_tweenPropList;
var _local7;
for (var _local9 in _local4) {
_local7 = _local4[_local9]._prop;
var _local5 = 0;
while ((_local5 < props.length) || ((_local5 < 1) && (props == undefined))) {
if (((_local4[_local9]._targ == mtarget) && ((_local7 == props[_local5]) || (props == undefined))) && (wipeFuture || ((_local4[_local9]._timeDest + (_local4[_local9]._delay * 1000)) <= getTimer()))) {
switch (_local7) {
case "__special_mc_frame__" :
case "__special_mc_ra__" :
case "__special_mc_rb__" :
case "__special_mc_ga__" :
case "__special_mc_gb__" :
case "__special_mc_ba__" :
case "__special_mc_bb__" :
case "__special_mc_aa__" :
case "__special_mc_ab__" :
case "__special_sound_volume__" :
case "__special_bst_t__" :
delete mtarget[_local7];
break;
case "__special_text_b__" :
delete mtarget.__special_text_r__;
delete mtarget.__special_text_g__;
delete mtarget.__special_text_b__;
}
_local4.splice(_local9, 1);
}
_local5++;
}
}
if (props == undefined) {
delete mtarget.$_tweenCount;
} else {
mtarget.$_tweenCount = 0;
for (var _local9 in _local4) {
if (_local4[_local9]._targ == mtarget) {
mtarget.$_tweenCount++;
}
}
if (mtarget.$_tweenCount == 0) {
delete mtarget.$_tweenCount;
}
}
if (_local4.length == 0) {
_global.$removeTweenController();
}
};
ASSetPropFlags(_global, "$stopTween", 1, 0);
_global.$setFilterProperty = function (mtarget, propName, propValue, extras) {
var _local1;
var _local7 = false;
var _local3 = [];
_local1 = 0;
while (_local1 < mtarget.filters.length) {
_local3.push(mtarget.filters[_local1]);
_local1++;
}
if (propName.substr(0, 5) == "blur_") {
_local1 = 0;
while (_local1 < mtarget.filters.length) {
if (_local3[_local1] instanceof flash.filters.BlurFilter) {
_local3[_local1][propName.substr(5)] = propValue;
if (extras.__special_blur_quality__ != undefined) {
_local3[_local1].quality = extras.__special_blur_quality__;
}
_local7 = true;
break;
}
_local1++;
}
if (!_local7) {
var _local9;
var _local8 = ((extras.__special_blur_quality__ == undefined) ? 2 : (extras.__special_blur_quality__));
if (propName == "blur_blurX") {
_local9 = new flash.filters.BlurFilter(propValue, 0, _local8);
}
if (propName == "blur_blurY") {
_local9 = new flash.filters.BlurFilter(0, propValue, _local8);
}
_local3.push(_local9);
}
} else if (propName.substr(0, 5) == "glow_") {
_local1 = 0;
while (_local1 < mtarget.filters.length) {
if (_local3[_local1] instanceof flash.filters.GlowFilter) {
_local3[_local1][propName.substr(5)] = propValue;
if (extras.__special_glow_quality__ != undefined) {
_local3[_local1].quality = extras.__special_glow_quality__;
}
if (extras.__special_glow_inner__ != undefined) {
_local3[_local1].inner = extras.__special_glow_inner__;
}
if (extras.__special_glow_knockout__ != undefined) {
_local3[_local1].knockout = extras.__special_glow_knockout__;
}
_local7 = true;
break;
}
_local1++;
}
if (!_local7) {
var _local8 = ((extras.__special_glow_quality__ == undefined) ? 2 : (extras.__special_glow_quality__));
var _local12 = ((extras.__special_glow_inner__ == undefined) ? false : (extras.__special_glow_inner__));
var _local10 = ((extras.__special_glow_knockout__ == undefined) ? false : (extras.__special_glow_knockout__));
if (propName == "glow_color") {
var _local9 = new flash.filters.GlowFilter(propValue, 1, 0, 0, 1, _local8, _local12, _local10);
}
if (propName == "glow_alpha") {
var _local9 = new flash.filters.GlowFilter(16777215, propValue, 0, 0, 1, _local8, _local12, _local10);
}
if (propName == "glow_blurX") {
var _local9 = new flash.filters.GlowFilter(16777215, 1, propValue, 0, 1, _local8, _local12, _local10);
}
if (propName == "glow_blurY") {
var _local9 = new flash.filters.GlowFilter(16777215, 1, 0, propValue, 1, _local8, _local12, _local10);
}
if (propName == "glow_strength") {
var _local9 = new flash.filters.GlowFilter(16777215, 1, 0, 0, propValue, _local8, _local12, _local10);
}
_local3.push(_local9);
}
} else if (propName.substr(0, 6) == "bevel_") {
_local1 = 0;
while (_local1 < mtarget.filters.length) {
if (_local3[_local1] instanceof flash.filters.BevelFilter) {
_local3[_local1][propName.substr(6)] = propValue;
if (extras.__special_bevel_quality__ != undefined) {
_local3[_local1].quality = extras.__special_bevel_quality__;
}
if (extras.__special_bevel_type__ != undefined) {
_local3[_local1].inner = extras.__special_bevel_type__;
}
if (extras.__special_bevel_knockout__ != undefined) {
_local3[_local1].knockout = extras.__special_bevel_knockout__;
}
_local7 = true;
break;
}
_local1++;
}
if (!_local7) {
var _local8 = ((extras.__special_bevel_quality__ == undefined) ? 2 : (extras.__special_bevel_quality__));
var _local11 = ((extras.__special_bevel_type__ == undefined) ? "inner" : (extras.__special_bevel_type__));
var _local10 = ((extras.__special_bevel_knockout__ == undefined) ? false : (extras.__special_bevel_knockout__));
if (propName == "bevel_distance") {
var _local9 = new flash.filters.BevelFilter(propValue, 45, 16777215, 1, 0, 1, 0, 0, 1, _local8, _local11, _local10);
}
if (propName == "bevel_angle") {
var _local9 = new flash.filters.BevelFilter(0, propValue, 16777215, 1, 0, 1, 0, 0, 1, _local8, _local11, _local10);
}
if (propName == "bevel_highlightColor") {
var _local9 = new flash.filters.BevelFilter(0, 45, propValue, 1, 0, 1, 0, 0, 1, _local8, _local11, _local10);
}
if (propName == "bevel_highlightAlpha") {
var _local9 = new flash.filters.BevelFilter(0, 45, 16777215, propValue, 0, 1, 0, 0, 1, _local8, _local11, _local10);
}
if (propName == "bevel_shadowColor") {
var _local9 = new flash.filters.BevelFilter(0, 45, 16777215, 1, propValue, 1, 0, 0, 1, _local8, _local11, _local10);
}
if (propName == "bevel_shadowAlpha") {
var _local9 = new flash.filters.BevelFilter(0, 45, 16777215, 1, 0, propValue, 0, 0, 1, _local8, _local11, _local10);
}
if (propName == "bevel_blurX") {
var _local9 = new flash.filters.BevelFilter(0, 45, 16777215, 1, 0, 1, propValue, 0, 1, _local8, _local11, _local10);
}
if (propName == "bevel_blurY") {
var _local9 = new flash.filters.BevelFilter(0, 45, 16777215, 1, 0, 1, 0, propValue, 1, _local8, _local11, _local10);
}
if (propName == "bevel_strength") {
var _local9 = new flash.filters.BevelFilter(0, 45, 16777215, 1, 0, 1, 0, 0, propValue, _local8, _local11, _local10);
}
_local3.push(_local9);
}
} else {
return(undefined);
}
mtarget.filters = _local3;
};
MovieClip.prototype.tween = (TextField.prototype.tween = (Sound.prototype.tween = function (prop, propDest, timeSeconds, animType, delay, callback, extra1, extra2) {
_global.$addTween(this, prop, propDest, timeSeconds, animType, delay, callback, extra1, extra2);
}));
ASSetPropFlags(MovieClip.prototype, "tween", 1, 0);
ASSetPropFlags(TextField.prototype, "tween", 1, 0);
ASSetPropFlags(Sound.prototype, "tween", 1, 0);
MovieClip.prototype.roundedTween = (TextField.prototype.roundedTween = (Sound.prototype.roundedTween = function (prop, propDest, timeSeconds, animType, delay, callback, extra1, extra2) {
_global.$addTween(this, prop, propDest, timeSeconds, animType, delay, callback, extra1, extra2, {mustRound:true});
}));
ASSetPropFlags(MovieClip.prototype, "roundedTween", 1, 0);
ASSetPropFlags(TextField.prototype, "roundedTween", 1, 0);
ASSetPropFlags(Sound.prototype, "roundedTween", 1, 0);
MovieClip.prototype.stopTween = (TextField.prototype.stopTween = (Sound.prototype.stopTween = function (props) {
if (typeof(props) == "string") {
props = [props];
}
if (props != undefined) {
var _local4 = 1;
while (_local4 < arguments.length) {
props.push(arguments[_local4]);
_local4++;
}
}
_global.$stopTween(this, props, true);
}));
ASSetPropFlags(MovieClip.prototype, "stopTween", 1, 0);
ASSetPropFlags(TextField.prototype, "stopTween", 1, 0);
ASSetPropFlags(Sound.prototype, "stopTween", 1, 0);
MovieClip.prototype.pauseTween = (TextField.prototype.pauseTween = (Sound.prototype.pauseTween = function (props) {
if (props != undefined) {
if (typeof(props) == "string") {
props = [props];
}
var _local6 = 1;
while (_local6 < Arguments.length) {
props.push(Arguments[_local6]);
_local6++;
}
}
var _local4 = _root.__tweenController__.$_tweenPropList;
var _local5;
for (var _local7 in _local4) {
if ((_local4[_local7]._targ == this) && (!_local4[_local7]._isPaused)) {
if (props != undefined) {
_local5 = false;
for (var _local6 in props) {
if (props[_local6] == _local4[_local7]._prop) {
_local5 = true;
break;
}
}
}
if ((props == undefined) || (_local5)) {
_local4[_local7]._isPaused = true;
_local4[_local7]._timePaused = _root.__tweenController__.$_tTime;
}
}
}
}));
ASSetPropFlags(MovieClip.prototype, "pauseTween", 1, 0);
ASSetPropFlags(TextField.prototype, "pauseTween", 1, 0);
ASSetPropFlags(Sound.prototype, "pauseTween", 1, 0);
MovieClip.prototype.resumeTween = (TextField.prototype.resumeTween = (Sound.prototype.resumeTween = function (props) {
if (props != undefined) {
if (typeof(props) == "string") {
props = [props];
}
var _local7 = 1;
while (_local7 < Arguments.length) {
props.push(Arguments[_local7]);
_local7++;
}
}
var _local3 = _root.__tweenController__.$_tweenPropList;
var _local5;
var _local6;
for (var _local8 in _local3) {
if ((_local3[_local8]._targ == this) && (_local3[_local8]._isPaused)) {
if (props != undefined) {
_local5 = false;
for (var _local7 in props) {
if (props[_local7] == _local3[_local8]._prop) {
_local5 = true;
break;
}
}
}
if ((props == undefined) || (_local5)) {
_local3[_local8]._isPaused = false;
_local6 = _root.__tweenController__.$_tTime - _local3[_local8]._timePaused;
_local3[_local8]._timeStart = _local3[_local8]._timeStart + _local6;
_local3[_local8]._timeDest = _local3[_local8]._timeDest + _local6;
_local3[_local8]._timePaused = 0;
}
}
}
}));
ASSetPropFlags(MovieClip.prototype, "resumeTween", 1, 0);
ASSetPropFlags(TextField.prototype, "resumeTween", 1, 0);
ASSetPropFlags(Sound.prototype, "resumeTween", 1, 0);
MovieClip.prototype.lockTween = (TextField.prototype.lockTween = (Sound.prototype.lockTween = function () {
this.$_isTweenLocked = true;
ASSetPropFlags(this, "this.$_isTweenLocked", 1, 0);
}));
ASSetPropFlags(MovieClip.prototype, "lockTween", 1, 0);
ASSetPropFlags(TextField.prototype, "lockTween", 1, 0);
ASSetPropFlags(Sound.prototype, "lockTween", 1, 0);
MovieClip.prototype.unlockTween = (TextField.prototype.unlockTween = (Sound.prototype.unlockTween = function () {
delete this.$_isTweenLocked;
}));
ASSetPropFlags(MovieClip.prototype, "unlockTween", 1, 0);
ASSetPropFlags(TextField.prototype, "unlockTween", 1, 0);
ASSetPropFlags(Sound.prototype, "unlockTween", 1, 0);
MovieClip.prototype.getTweens = (TextField.prototype.getTweens = (Sound.prototype.getTweens = function () {
return(this.$_tweenCount);
}));
ASSetPropFlags(MovieClip.prototype, "getTweens", 1, 0);
ASSetPropFlags(TextField.prototype, "getTweens", 1, 0);
ASSetPropFlags(Sound.prototype, "getTweens", 1, 0);
MovieClip.prototype.isTweening = (TextField.prototype.isTweening = (Sound.prototype.isTweening = function () {
return(((this.$_tweenCount > 0) ? true : false));
}));
ASSetPropFlags(MovieClip.prototype, "isTweening", 1, 0);
ASSetPropFlags(TextField.prototype, "isTweening", 1, 0);
ASSetPropFlags(Sound.prototype, "isTweening", 1, 0);
MovieClip.prototype.alphaTo = (TextField.prototype.alphaTo = function (propDest_a, timeSeconds, animType, delay, callback, extra1, extra2) {
_global.$addTween(this, "_alpha", propDest_a, timeSeconds, animType, delay, callback, extra1, extra2);
});
ASSetPropFlags(MovieClip.prototype, "alphaTo", 1, 0);
ASSetPropFlags(TextField.prototype, "alphaTo", 1, 0);
MovieClip.prototype.frameTo = function (propDest_frame, timeSeconds, animType, delay, callback, extra1, extra2) {
_global.$addTween(this, "__special_mc_frame__", propDest_frame, timeSeconds, animType, delay, callback, extra1, extra2);
};
ASSetPropFlags(MovieClip.prototype, "frameTo", 1, 0);
MovieClip.prototype.resizeTo = (TextField.prototype.resizeTo = function (propDest_width, propDest_height, timeSeconds, animType, delay, callback, extra1, extra2) {
_global.$addTween(this, ["_width", "_height"], [propDest_width, propDest_height], timeSeconds, animType, delay, callback, extra1, extra2);
});
ASSetPropFlags(MovieClip.prototype, "resizeTo", 1, 0);
ASSetPropFlags(TextField.prototype, "resizeTo", 1, 0);
MovieClip.prototype.rotateTo = (TextField.prototype.rotateTo = function (propDest_rotation, timeSeconds, animType, delay, callback, extra1, extra2) {
_global.$addTween(this, "_rotation", propDest_rotation, timeSeconds, animType, delay, callback, extra1, extra2);
});
ASSetPropFlags(MovieClip.prototype, "rotateTo", 1, 0);
ASSetPropFlags(TextField.prototype, "rotateTo", 1, 0);
MovieClip.prototype.scaleTo = (TextField.prototype.scaleTo = function (propDest_scale, timeSeconds, animType, delay, callback, extra1, extra2) {
_global.$addTween(this, ["_xscale", "_yscale"], [propDest_scale, propDest_scale], timeSeconds, animType, delay, callback, extra1, extra2);
});
ASSetPropFlags(MovieClip.prototype, "scaleTo", 1, 0);
ASSetPropFlags(TextField.prototype, "scaleTo", 1, 0);
MovieClip.prototype.xScaleTo = (TextField.prototype.xScaleTo = function (propDest_scale, timeSeconds, animType, delay, callback, extra1, extra2) {
_global.$addTween(this, "_xscale", propDest_scale, timeSeconds, animType, delay, callback, extra1, extra2);
});
ASSetPropFlags(MovieClip.prototype, "xScaleTo", 1, 0);
ASSetPropFlags(TextField.prototype, "xScaleTo", 1, 0);
MovieClip.prototype.yScaleTo = (TextField.prototype.yScaleTo = function (propDest_scale, timeSeconds, animType, delay, callback, extra1, extra2) {
_global.$addTween(this, "_yscale", propDest_scale, timeSeconds, animType, delay, callback, extra1, extra2);
});
ASSetPropFlags(MovieClip.prototype, "yScaleTo", 1, 0);
ASSetPropFlags(TextField.prototype, "yScaleTo", 1, 0);
TextField.prototype.scrollTo = function (propDest_scroll, timeSeconds, animType, delay, callback, extra1, extra2) {
_global.$addTween(this, "scroll", propDest_scroll, timeSeconds, animType, delay, callback, extra1, extra2);
};
ASSetPropFlags(TextField.prototype, "scrollTo", 1, 0);
MovieClip.prototype.slideTo = (TextField.prototype.slideTo = function (propDest_x, propDest_y, timeSeconds, animType, delay, callback, extra1, extra2) {
_global.$addTween(this, ["_x", "_y"], [propDest_x, propDest_y], timeSeconds, animType, delay, callback, extra1, extra2);
});
ASSetPropFlags(MovieClip.prototype, "slideTo", 1, 0);
ASSetPropFlags(TextField.prototype, "slideTo", 1, 0);
MovieClip.prototype.roundedSlideTo = (TextField.prototype.roundedSlideTo = function (propDest_x, propDest_y, timeSeconds, animType, delay, callback, extra1, extra2) {
_global.$addTween(this, ["_x", "_y"], [propDest_x, propDest_y], timeSeconds, animType, delay, callback, extra1, extra2, {mustRound:true});
});
ASSetPropFlags(MovieClip.prototype, "roundedSlideTo", 1, 0);
ASSetPropFlags(TextField.prototype, "roundedSlideTo", 1, 0);
MovieClip.prototype.xSlideTo = (TextField.prototype.xSlideTo = function (propDest_x, timeSeconds, animType, delay, callback, extra1, extra2) {
_global.$addTween(this, "_x", propDest_x, timeSeconds, animType, delay, callback, extra1, extra2);
});
ASSetPropFlags(MovieClip.prototype, "xSlideTo", 1, 0);
ASSetPropFlags(TextField.prototype, "xSlideTo", 1, 0);
MovieClip.prototype.roundedXSlideTo = (TextField.prototype.roundedXSlideTo = function (propDest_x, timeSeconds, animType, delay, callback, extra1, extra2) {
_global.$addTween(this, "_x", propDest_x, timeSeconds, animType, delay, callback, extra1, extra2, {mustRound:true});
});
ASSetPropFlags(MovieClip.prototype, "roundedXSlideTo", 1, 0);
ASSetPropFlags(TextField.prototype, "roundedXSlideTo", 1, 0);
MovieClip.prototype.ySlideTo = (TextField.prototype.ySlideTo = function (propDest_y, timeSeconds, animType, delay, callback, extra1, extra2) {
_global.$addTween(this, "_y", propDest_y, timeSeconds, animType, delay, callback, extra1, extra2);
});
ASSetPropFlags(MovieClip.prototype, "ySlideTo", 1, 0);
ASSetPropFlags(TextField.prototype, "ySlideTo", 1, 0);
MovieClip.prototype.roundedYSlideTo = (TextField.prototype.roundedYSlideTo = function (propDest_y, timeSeconds, animType, delay, callback, extra1, extra2) {
_global.$addTween(this, "_y", propDest_y, timeSeconds, animType, delay, callback, extra1, extra2, {mustRound:true});
});
ASSetPropFlags(MovieClip.prototype, "roundedYSlideTo", 1, 0);
ASSetPropFlags(TextField.prototype, "roundedYSlideTo", 1, 0);
MovieClip.prototype.bezierSlideTo = (TextField.prototype.bezierSlideTo = function (cpoint_x, cpoint_y, propDest_x, propDest_y, timeSeconds, animType, delay, callback, extra1, extra2) {
var _local3 = new Object();
_local3.__special_bst_ix__ = undefined;
_local3.__special_bst_iy__ = undefined;
_local3.__special_bst_cx__ = cpoint_x;
_local3.__special_bst_cy__ = cpoint_y;
_local3.__special_bst_dx__ = propDest_x;
_local3.__special_bst_dy__ = propDest_y;
_global.$addTween(this, "__special_bst_t__", 1, timeSeconds, animType, delay, callback, extra1, extra2, _local3);
});
ASSetPropFlags(MovieClip.prototype, "bezierSlideTo", 1, 0);
ASSetPropFlags(TextField.prototype, "bezierSlideTo", 1, 0);
MovieClip.prototype.roundedBezierSlideTo = (TextField.prototype.roundedBezierSlideTo = function (cpoint_x, cpoint_y, propDest_x, propDest_y, timeSeconds, animType, delay, callback, extra1, extra2) {
var _local3 = new Object();
_local3.__special_bst_ix__ = undefined;
_local3.__special_bst_iy__ = undefined;
_local3.__special_bst_cx__ = cpoint_x;
_local3.__special_bst_cy__ = cpoint_y;
_local3.__special_bst_dx__ = propDest_x;
_local3.__special_bst_dy__ = propDest_y;
_local3.mustRound = true;
_global.$addTween(this, "__special_bst_t__", 1, timeSeconds, animType, delay, callback, extra1, extra2, _local3);
});
ASSetPropFlags(MovieClip.prototype, "roundedBezierSlideTo", 1, 0);
ASSetPropFlags(TextField.prototype, "roundedBezierSlideTo", 1, 0);
Sound.prototype.volumeTo = function (propDest_volume, timeSeconds, animType, delay, callback, extra1, extra2) {
_global.$addTween(this, "__special_sound_volume__", propDest_volume, timeSeconds, animType, delay, callback, extra1, extra2);
};
ASSetPropFlags(Sound.prototype, "volumeTo", 1, 0);
Sound.prototype.panTo = function (propDest_volume, timeSeconds, animType, delay, callback, extra1, extra2) {
_global.$addTween(this, "__special_sound_pan__", propDest_volume, timeSeconds, animType, delay, callback, extra1, extra2);
};
ASSetPropFlags(Sound.prototype, "panTo", 1, 0);
MovieClip.prototype.colorTo = function (propDest_color, timeSeconds, animType, delay, callback, extra1, extra2) {
if (propDest_color == null) {
this.colorTransformTo(100, 0, 100, 0, 100, 0, undefined, undefined, timeSeconds, animType, delay, callback, extra1, extra2);
} else {
var _local3 = propDest_color >> 16;
var _local5 = (propDest_color & 65280) >> 8;
var _local4 = propDest_color & 255;
this.colorTransformTo(0, _local3, 0, _local5, 0, _local4, undefined, undefined, timeSeconds, animType, delay, callback, extra1, extra2);
}
};
ASSetPropFlags(MovieClip.prototype, "colorTo", 1, 0);
TextField.prototype.colorTo = function (propDest_color, timeSeconds, animType, delay, callback, extra1, extra2) {
var _local3 = propDest_color >> 16;
var _local6 = (propDest_color & 65280) >> 8;
var _local4 = propDest_color & 255;
_global.$addTween(this, ["__special_text_r__", "__special_text_g__", "__special_text_b__"], [_local3, _local6, _local4], timeSeconds, animType, delay, callback, extra1, extra2);
};
ASSetPropFlags(TextField.prototype, "colorTo", 1, 0);
MovieClip.prototype.colorTransformTo = function () {
if ((typeof(arguments[0]) == "object") && (arguments[0] != undefined)) {
_global.$addTween(this, ["__special_mc_ra__", "__special_mc_rb__", "__special_mc_ga__", "__special_mc_gb__", "__special_mc_ba__", "__special_mc_bb__", "__special_mc_aa__", "__special_mc_ab__"], [arguments[0].ra, arguments[0].rb, arguments[0].ga, arguments[0].gb, arguments[0].ba, arguments[0].bb, arguments[0].aa, arguments[0].ab], arguments[1], arguments[2], arguments[3], arguments[4], arguments[5], arguments[6]);
} else {
_global.$addTween(this, ["__special_mc_ra__", "__special_mc_rb__", "__special_mc_ga__", "__special_mc_gb__", "__special_mc_ba__", "__special_mc_bb__", "__special_mc_aa__", "__special_mc_ab__"], [arguments[0], arguments[1], arguments[2], arguments[3], arguments[4], arguments[5], arguments[6], arguments[7]], arguments[8], arguments[9], arguments[10], arguments[11], arguments[12], arguments[13]);
}
};
ASSetPropFlags(MovieClip.prototype, "colorTransformTo", 1, 0);
MovieClip.prototype.blurTo = (TextField.prototype.blurTo = function () {
if ((typeof(arguments[0]) == "object") && (arguments[0] != undefined)) {
_global.$addTween(this, ["__special_blur_x__", "__special_blur_y__"], [arguments[0].blurX, arguments[0].blurY], arguments[1], arguments[2], arguments[3], arguments[4], arguments[5], arguments[6], {__special_blur_quality__:arguments[0].quality});
} else {
_global.$addTween(this, ["__special_blur_x__", "__special_blur_y__"], [arguments[0], arguments[0]], arguments[2], arguments[3], arguments[4], arguments[5], arguments[6], arguments[7], {__special_blur_quality__:arguments[1]});
}
});
ASSetPropFlags(MovieClip.prototype, "blurTo", 1, 0);
ASSetPropFlags(TextField.prototype, "blurTo", 1, 0);
MovieClip.prototype.xyBlurTo = (TextField.prototype.xyBlurTo = function (propDest_blurX, propDest_blurY, quality, timeSeconds, animType, delay, callback, extra1, extra2) {
_global.$addTween(this, ["__special_blur_x__", "__special_blur_y__"], [propDest_blurX, propDest_blurY], timeSeconds, animType, delay, callback, extra1, extra2, {__special_blur_quality__:quality});
});
ASSetPropFlags(MovieClip.prototype, "xyBlurTo", 1, 0);
ASSetPropFlags(TextField.prototype, "xyBlurTo", 1, 0);
MovieClip.prototype.xBlurTo = (TextField.prototype.xBlurTo = function (propDest_blur, quality, timeSeconds, animType, delay, callback, extra1, extra2) {
_global.$addTween(this, "__special_blur_x__", propDest_blur, timeSeconds, animType, delay, callback, extra1, extra2, {__special_blur_quality__:quality});
});
ASSetPropFlags(MovieClip.prototype, "xBlurTo", 1, 0);
ASSetPropFlags(TextField.prototype, "xBlurTo", 1, 0);
MovieClip.prototype.yBlurTo = (TextField.prototype.yBlurTo = function (propDest_blur, quality, timeSeconds, animType, delay, callback, extra1, extra2) {
_global.$addTween(this, "__special_blur_y__", propDest_blur, timeSeconds, animType, delay, callback, extra1, extra2, {__special_blur_quality__:quality});
});
ASSetPropFlags(MovieClip.prototype, "yBlurTo", 1, 0);
ASSetPropFlags(TextField.prototype, "yBlurTo", 1, 0);
MovieClip.prototype.glowTo = (TextField.prototype.glowTo = function () {
if ((typeof(arguments[0]) == "object") && (arguments[0] != undefined)) {
_global.$addTween(this, ["__special_glow_color__", "__special_glow_alpha__", "__special_glow_blurX__", "__special_glow_blurY__", "__special_glow_strength__"], [arguments[0].color, arguments[0].alpha, arguments[0].blurX, arguments[0].blurY, arguments[0].strength], arguments[1], arguments[2], arguments[3], arguments[4], arguments[5], arguments[6], {__special_glow_quality__:arguments[0].quality, __special_glow_inner__:arguments[0].inner, __special_glow_knockout__:arguments[0].knockout});
} else {
_global.$addTween(this, ["__special_glow_color__", "__special_glow_alpha__", "__special_glow_blurX__", "__special_glow_blurY__", "__special_glow_strength__"], [arguments[0], arguments[1], arguments[2], arguments[2], arguments[3]], arguments[7], arguments[8], arguments[9], arguments[10], arguments[11], arguments[12], {__special_glow_quality__:arguments[4], __special_glow_inner__:arguments[5], __special_glow_knockout__:arguments[6]});
}
});
ASSetPropFlags(MovieClip.prototype, "glowTo", 1, 0);
ASSetPropFlags(TextField.prototype, "glowTo", 1, 0);
MovieClip.prototype.xyGlowTo = (TextField.prototype.xyGlowTo = function (propDest_color, propDest_alpha, propDest_blurX, propDest_blurY, propDest_strength, quality, inner, knockout, timeSeconds, animType, delay, callback, extra1, extra2) {
_global.$addTween(this, ["__special_glow_color__", "__special_glow_alpha__", "__special_glow_blurX__", "__special_glow_blurY__", "__special_glow_strength__"], [propDest_color, propDest_alpha, propDest_blurX, propDest_blurY, propDest_strength], timeSeconds, animType, delay, callback, extra1, extra2, {__special_glow_quality__:quality, __special_glow_inner__:inner, __special_glow_knockout__:knockout});
});
ASSetPropFlags(MovieClip.prototype, "xyGlowTo", 1, 0);
ASSetPropFlags(TextField.prototype, "xyGlowTo", 1, 0);
MovieClip.prototype.xGlowTo = (TextField.prototype.xGlowTo = function (propDest_color, propDest_alpha, propDest_blur, propDest_strength, quality, inner, knockout, timeSeconds, animType, delay, callback, extra1, extra2) {
_global.$addTween(this, ["__special_glow_color__", "__special_glow_alpha__", "__special_glow_blurX__", "__special_glow_strength__"], [propDest_color, propDest_alpha, propDest_blur, propDest_strength], timeSeconds, animType, delay, callback, extra1, extra2, {__special_glow_quality__:quality, __special_glow_inner__:inner, __special_glow_knockout__:knockout});
});
ASSetPropFlags(MovieClip.prototype, "xGlowTo", 1, 0);
ASSetPropFlags(TextField.prototype, "xGlowTo", 1, 0);
MovieClip.prototype.yGlowTo = (TextField.prototype.yGlowTo = function (propDest_color, propDest_alpha, propDest_blur, propDest_strength, quality, inner, knockout, timeSeconds, animType, delay, callback, extra1, extra2) {
_global.$addTween(this, ["__special_glow_color__", "__special_glow_alpha__", "__special_glow_blurY__", "__special_glow_strength__"], [propDest_color, propDest_alpha, propDest_blur, propDest_strength], timeSeconds, animType, delay, callback, extra1, extra2, {__special_glow_quality__:quality, __special_glow_inner__:inner, __special_glow_knockout__:knockout});
});
ASSetPropFlags(MovieClip.prototype, "yGlowTo", 1, 0);
ASSetPropFlags(TextField.prototype, "yGlowTo", 1, 0);
MovieClip.prototype.bevelTo = (TextField.prototype.bevelTo = function () {
if ((typeof(arguments[0]) == "object") && (arguments[0] != undefined)) {
_global.$addTween(this, ["__special_bevel_distance__", "__special_bevel_angle__", "__special_bevel_highlightColor__", "__special_bevel_highlightAlpha__", "__special_bevel_shadowColor__", "__special_bevel_shadowAlpha__", "__special_bevel_blurX__", "__special_bevel_blurY__", "__special_bevel_strength__"], [arguments[0].distance, arguments[0].angle, arguments[0].highlightColor, arguments[0].highlightAlpha * 100, arguments[0].shadowColor, arguments[0].shadowAlpha * 100, arguments[0].blurX, arguments[0].blurY, arguments[0].strength], arguments[1], arguments[2], arguments[3], arguments[4], arguments[5], arguments[6], {__special_bevel_quality__:arguments[0].quality, __special_bevel_type__:arguments[0].type, __special_bevel_knockout__:arguments[0].knockout});
} else {
_global.$addTween(this, ["__special_bevel_distance__", "__special_bevel_angle__", "__special_bevel_highlightColor__", "__special_bevel_highlightAlpha__", "__special_bevel_shadowColor__", "__special_bevel_shadowAlpha__", "__special_bevel_blurX__", "__special_bevel_blurY__", "__special_bevel_strength__"], [arguments[0], arguments[1], arguments[2], arguments[3], arguments[4], arguments[5], arguments[6], arguments[6], arguments[7]], arguments[11], arguments[12], arguments[13], arguments[14], arguments[15], arguments[16], {__special_bevel_quality__:arguments[8], __special_bevel_type__:arguments[9], __special_bevel_knockout__:arguments[10]});
}
});
ASSetPropFlags(MovieClip.prototype, "bevelTo", 1, 0);
ASSetPropFlags(TextField.prototype, "bevelTo", 1, 0);
MovieClip.prototype.xyBevelTo = (TextField.prototype.xyBevelTo = function (propDest_distance, propDest_angle, propDest_highlightColor, propDest_highlightAlpha, propDest_shadowColor, propDest_shadowAlpha, propDest_blurX, propDest_blurY, propDest_strength, quality, type, knockout, timeSeconds, animType, delay, callback, extra1, extra2) {
_global.$addTween(this, ["__special_bevel_distance__", "__special_bevel_angle__", "__special_bevel_highlightColor__", "__special_bevel_highlightAlpha__", "__special_bevel_shadowColor__", "__special_bevel_shadowAlpha__", "__special_bevel_blurX__", "__special_bevel_blurY__", "__special_bevel_blurY__", "__special_bevel_strength__"], [propDest_distance, propDest_angle, propDest_highlightColor, propDest_highlightAlpha, propDest_shadowColor, propDest_shadowAlpha, propDest_blur, propDest_blur, propDest_strength], timeSeconds, animType, delay, callback, extra1, extra2, {__special_bevel_quality__:quality, __special_bevel_type__:type, __special_bevel_knockout__:knockout});
});
ASSetPropFlags(MovieClip.prototype, "xyBevelTo", 1, 0);
ASSetPropFlags(TextField.prototype, "xyBevelTo", 1, 0);
_global.findPointOnCurve = function (p1x, p1y, cx, cy, p2x, p2y, t) {
return({x:p1x + (t * (((2 * (1 - t)) * (cx - p1x)) + (t * (p2x - p1x)))), y:p1y + (t * (((2 * (1 - t)) * (cy - p1y)) + (t * (p2y - p1y))))});
};
ASSetPropFlags(_global, "findPointOnCurve", 1, 0);
_global.findTweenColor = function (objProp, tTime) {
var _local8 = objProp._propStart >> 16;
var _local4 = objProp._propDest >> 16;
var _local5 = (objProp._propStart >> 8) & 255;
var _local6 = (objProp._propDest >> 8) & 255;
var _local9 = objProp._propStart & 255;
var _local7 = objProp._propDest & 255;
var _local12 = Math.round(_global.findTweenValue(_local8, _local4, objProp._timeStart, tTime - (objProp._delay * 1000), objProp._timeDest, objProp._animType, objProp._extra1, objProp._extra2));
var _local10 = Math.round(_global.findTweenValue(_local5, _local6, objProp._timeStart, tTime - (objProp._delay * 1000), objProp._timeDest, objProp._animType, objProp._extra1, objProp._extra2));
var _local3 = Math.round(_global.findTweenValue(_local9, _local7, objProp._timeStart, tTime - (objProp._delay * 1000), objProp._timeDest, objProp._animType, objProp._extra1, objProp._extra2));
return(((_local12 << 16) + (_local10 << 8)) + _local3);
};
_global.findTweenValue = function (_propStart, _propDest, _timeStart, _timeNow, _timeDest, _animType, _extra1, _extra2) {
var _local1 = _timeNow - _timeStart;
var _local4 = _propStart;
var _local2 = _propDest - _propStart;
var _local3 = _timeDest - _timeStart;
var _local6 = _extra1;
var _local7 = _extra2;
var _local5 = _extra1;
switch (_animType.toLowerCase()) {
case "linear" :
return(((_local2 * _local1) / _local3) + _local4);
case "easeinquad" :
_local1 = _local1 / _local3;
return(((_local2 * _local1) * _local1) + _local4);
case "easeoutquad" :
_local1 = _local1 / _local3;
return((((-_local2) * _local1) * (_local1 - 2)) + _local4);
case "easeinoutquad" :
_local1 = _local1 / (_local3 / 2);
if (_local1 < 1) {
return((((_local2 / 2) * _local1) * _local1) + _local4);
}
_local1--;
return((((-_local2) / 2) * ((_local1 * (_local1 - 2)) - 1)) + _local4);
case "easeoutinquad" :
if (_local1 < (_local3 / 2)) {
return((findTweenValue(0, _local2, 0, _local1 * 2, _local3, "easeOutQuad") * 0.5) + _local4);
}
return(((findTweenValue(0, _local2, 0, (_local1 * 2) - _local3, _local3, "easeInQuad") * 0.5) + (_local2 * 0.5)) + _local4);
case "easeincubic" :
_local1 = _local1 / _local3;
return((((_local2 * _local1) * _local1) * _local1) + _local4);
case "easeoutcubic" :
_local1 = (_local1 / _local3) - 1;
return((_local2 * (((_local1 * _local1) * _local1) + 1)) + _local4);
case "easeinoutcubic" :
_local1 = _local1 / (_local3 / 2);
if (_local1 < 1) {
return(((((_local2 / 2) * _local1) * _local1) * _local1) + _local4);
}
_local1 = _local1 - 2;
return(((_local2 / 2) * (((_local1 * _local1) * _local1) + 2)) + _local4);
case "easeoutincubic" :
if (_local1 < (_local3 / 2)) {
return((findTweenValue(0, _local2, 0, _local1 * 2, _local3, "easeOutCubic") * 0.5) + _local4);
}
return(((findTweenValue(0, _local2, 0, (_local1 * 2) - _local3, _local3, "easeInCubic") * 0.5) + (_local2 * 0.5)) + _local4);
case "easeinquart" :
_local1 = _local1 / _local3;
return(((((_local2 * _local1) * _local1) * _local1) * _local1) + _local4);
case "easeoutquart" :
_local1 = (_local1 / _local3) - 1;
return(((-_local2) * ((((_local1 * _local1) * _local1) * _local1) - 1)) + _local4);
case "easeinoutquart" :
_local1 = _local1 / (_local3 / 2);
if (_local1 < 1) {
return((((((_local2 / 2) * _local1) * _local1) * _local1) * _local1) + _local4);
}
_local1 = _local1 - 2;
return((((-_local2) / 2) * ((((_local1 * _local1) * _local1) * _local1) - 2)) + _local4);
case "easeoutinquart" :
if (_local1 < (_local3 / 2)) {
return((findTweenValue(0, _local2, 0, _local1 * 2, _local3, "easeOutQuart") * 0.5) + _local4);
}
return(((findTweenValue(0, _local2, 0, (_local1 * 2) - _local3, _local3, "easeInQuart") * 0.5) + (_local2 * 0.5)) + _local4);
case "easeinquint" :
_local1 = _local1 / _local3;
return((((((_local2 * _local1) * _local1) * _local1) * _local1) * _local1) + _local4);
case "easeoutquint" :
_local1 = (_local1 / _local3) - 1;
return((_local2 * (((((_local1 * _local1) * _local1) * _local1) * _local1) + 1)) + _local4);
case "easeinoutquint" :
_local1 = _local1 / (_local3 / 2);
if (_local1 < 1) {
return(((((((_local2 / 2) * _local1) * _local1) * _local1) * _local1) * _local1) + _local4);
}
_local1 = _local1 - 2;
return(((_local2 / 2) * (((((_local1 * _local1) * _local1) * _local1) * _local1) + 2)) + _local4);
case "easeoutinquint" :
if (_local1 < (_local3 / 2)) {
return((findTweenValue(0, _local2, 0, _local1 * 2, _local3, "easeOutQuint") * 0.5) + _local4);
}
return(((findTweenValue(0, _local2, 0, (_local1 * 2) - _local3, _local3, "easeInQuint") * 0.5) + (_local2 * 0.5)) + _local4);
case "easeinsine" :
return((((-_local2) * Math.cos((_local1 / _local3) * (Math.PI/2))) + _local2) + _local4);
case "easeoutsine" :
return((_local2 * Math.sin((_local1 / _local3) * (Math.PI/2))) + _local4);
case "easeinoutsine" :
return((((-_local2) / 2) * (Math.cos((Math.PI * _local1) / _local3) - 1)) + _local4);
case "easeoutinsine" :
if (_local1 < (_local3 / 2)) {
return((findTweenValue(0, _local2, 0, _local1 * 2, _local3, "easeOutSine") * 0.5) + _local4);
}
return(((findTweenValue(0, _local2, 0, (_local1 * 2) - _local3, _local3, "easeInSine") * 0.5) + (_local2 * 0.5)) + _local4);
case "easeinexpo" :
return(((_local1 == 0) ? (_local4) : ((_local2 * Math.pow(2, 10 * ((_local1 / _local3) - 1))) + _local4)));
case "easeoutexpo" :
return(((_local1 == _local3) ? (_local4 + _local2) : ((_local2 * ((-Math.pow(2, (-10 * _local1) / _local3)) + 1)) + _local4)));
case "easeinoutexpo" :
if (_local1 == 0) {
return(_local4);
}
if (_local1 == _local3) {
return(_local4 + _local2);
}
_local1 = _local1 / (_local3 / 2);
if (_local1 < 1) {
return(((_local2 / 2) * Math.pow(2, 10 * (_local1 - 1))) + _local4);
}
_local1--;
return(((_local2 / 2) * ((-Math.pow(2, -10 * _local1)) + 2)) + _local4);
case "easeoutinexpo" :
if (_local1 == 0) {
return(_local4);
}
if (_local1 == _local3) {
return(_local4 + _local2);
}
_local1 = _local1 / (_local3 / 2);
if (_local1 < 1) {
return(((_local2 / 2) * ((-Math.pow(2, (-10 * _local1) / 1)) + 1)) + _local4);
}
return(((_local2 / 2) * (Math.pow(2, (10 * (_local1 - 2)) / 1) + 1)) + _local4);
case "easeincirc" :
_local1 = _local1 / _local3;
return(((-_local2) * (Math.sqrt(1 - (_local1 * _local1)) - 1)) + _local4);
case "easeoutcirc" :
_local1 = (_local1 / _local3) - 1;
return((_local2 * Math.sqrt(1 - (_local1 * _local1))) + _local4);
case "easeinoutcirc" :
_local1 = _local1 / (_local3 / 2);
if (_local1 < 1) {
return((((-_local2) / 2) * (Math.sqrt(1 - (_local1 * _local1)) - 1)) + _local4);
}
_local1 = _local1 - 2;
return(((_local2 / 2) * (Math.sqrt(1 - (_local1 * _local1)) + 1)) + _local4);
case "easeoutincirc" :
if (_local1 < (_local3 / 2)) {
return((findTweenValue(0, _local2, 0, _local1 * 2, _local3, "easeOutCirc") * 0.5) + _local4);
}
return(((findTweenValue(0, _local2, 0, (_local1 * 2) - _local3, _local3, "easeInCirc") * 0.5) + (_local2 * 0.5)) + _local4);
case "easeinelastic" :
if (_local1 == 0) {
return(_local4);
}
_local1 = _local1 / _local3;
if (_local1 == 1) {
return(_local4 + _local2);
}
if (!_local7) {
_local7 = _local3 * 0.3;
}
if ((!_local6) || (_local6 < Math.abs(_local2))) {
_local6 = _local2;
_local5 = _local7 / 4;
} else {
_local5 = (_local7 / (Math.PI*2)) * Math.asin(_local2 / _local6);
}
_local1 = _local1 - 1;
return((-((_local6 * Math.pow(2, 10 * _local1)) * Math.sin((((_local1 * _local3) - _local5) * (Math.PI*2)) / _local7))) + _local4);
case "easeoutelastic" :
if (_local1 == 0) {
return(_local4);
}
_local1 = _local1 / _local3;
if (_local1 == 1) {
return(_local4 + _local2);
}
if (!_local7) {
_local7 = _local3 * 0.3;
}
if ((!_local6) || (_local6 < Math.abs(_local2))) {
_local6 = _local2;
_local5 = _local7 / 4;
} else {
_local5 = (_local7 / (Math.PI*2)) * Math.asin(_local2 / _local6);
}
return((((_local6 * Math.pow(2, -10 * _local1)) * Math.sin((((_local1 * _local3) - _local5) * (Math.PI*2)) / _local7)) + _local2) + _local4);
case "easeinoutelastic" :
if (_local1 == 0) {
return(_local4);
}
_local1 = _local1 / (_local3 / 2);
if (_local1 == 2) {
return(_local4 + _local2);
}
if (!_local7) {
_local7 = _local3 * 0.45;
}
if ((!_local6) || (_local6 < Math.abs(_local2))) {
_local6 = _local2;
_local5 = _local7 / 4;
} else {
_local5 = (_local7 / (Math.PI*2)) * Math.asin(_local2 / _local6);
}
if (_local1 < 1) {
_local1 = _local1 - 1;
return((-0.5 * ((_local6 * Math.pow(2, 10 * _local1)) * Math.sin((((_local1 * _local3) - _local5) * (Math.PI*2)) / _local7))) + _local4);
}
_local1 = _local1 - 1;
return(((((_local6 * Math.pow(2, -10 * _local1)) * Math.sin((((_local1 * _local3) - _local5) * (Math.PI*2)) / _local7)) * 0.5) + _local2) + _local4);
case "easeoutinelastic" :
if (_local1 < (_local3 / 2)) {
return((findTweenValue(0, _local2, 0, _local1 * 2, _local3, "easeOutElastic") * 0.5) + _local4);
}
return(((findTweenValue(0, _local2, 0, (_local1 * 2) - _local3, _local3, "easeInElastic") * 0.5) + (_local2 * 0.5)) + _local4);
case "easeinback" :
if (_local5 == undefined) {
_local5 = 1.70158;
}
_local1 = _local1 / _local3;
return((((_local2 * _local1) * _local1) * (((_local5 + 1) * _local1) - _local5)) + _local4);
case "easeoutback" :
if (_local5 == undefined) {
_local5 = 1.70158;
}
_local1 = (_local1 / _local3) - 1;
return((_local2 * (((_local1 * _local1) * (((_local5 + 1) * _local1) + _local5)) + 1)) + _local4);
case "easeinoutback" :
if (_local5 == undefined) {
_local5 = 1.70158;
}
_local1 = _local1 / (_local3 / 2);
if (_local1 < 1) {
_local5 = _local5 * 1.525;
return(((_local2 / 2) * ((_local1 * _local1) * (((_local5 + 1) * _local1) - _local5))) + _local4);
}
_local1 = _local1 - 2;
_local5 = _local5 * 1.525;
return(((_local2 / 2) * (((_local1 * _local1) * (((_local5 + 1) * _local1) + _local5)) + 2)) + _local4);
case "easeoutinback" :
if (_local1 < (_local3 / 2)) {
return((findTweenValue(0, _local2, 0, _local1 * 2, _local3, "easeOutBack") * 0.5) + _local4);
}
return(((findTweenValue(0, _local2, 0, (_local1 * 2) - _local3, _local3, "easeInBack") * 0.5) + (_local2 * 0.5)) + _local4);
case "easeinbounce" :
return((_local2 - findTweenValue(0, _local2, 0, _local3 - _local1, _local3, "easeOutBounce")) + _local4);
case "easeoutbounce" :
_local1 = _local1 / _local3;
if (_local1 < 0.363636363636364) {
return((_local2 * ((7.5625 * _local1) * _local1)) + _local4);
}
if (_local1 < 0.727272727272727) {
_local1 = _local1 - 0.545454545454545;
return((_local2 * (((7.5625 * _local1) * _local1) + 0.75)) + _local4);
}
if (_local1 < 0.909090909090909) {
_local1 = _local1 - 0.818181818181818;
return((_local2 * (((7.5625 * _local1) * _local1) + 0.9375)) + _local4);
}
_local1 = _local1 - 0.954545454545455;
return((_local2 * (((7.5625 * _local1) * _local1) + 0.984375)) + _local4);
case "easeinoutbounce" :
if (_local1 < (_local3 / 2)) {
return((findTweenValue(0, _local2, 0, _local1 * 2, _local3, "easeInBounce") * 0.5) + _local4);
}
return(((findTweenValue(0, _local2, 0, (_local1 * 2) - _local3, _local3, "easeOutBounce") * 0.5) + (_local2 * 0.5)) + _local4);
case "easeoutinbounce" :
if (_local1 < (_local3 / 2)) {
return((findTweenValue(0, _local2, 0, _local1 * 2, _local3, "easeOutBounce") * 0.5) + _local4);
}
return(((findTweenValue(0, _local2, 0, (_local1 * 2) - _local3, _local3, "easeInBounce") * 0.5) + (_local2 * 0.5)) + _local4);
}
trace(("MC TWEEN ### Error on transition: there's no \"" + _animType) + "\" animation type.");
return(0);
};
ASSetPropFlags(_global, "findTweenValue", 1, 0);
_global.targetSlideSpeed = 1;
_global.gameLocked = true;
radToDeg = 57.2957795;
loadBar._xscale = 0;
this.onEnterFrame = function () {
bl = this.getBytesLoaded();
bt = this.getBytesTotal();
percent = Math.round((bl / bt) * 100);
percentage = percent + "% Loaded";
loadBar._xscale = percent;
if (percent >= 100) {
this.onEnterFrame = null;
gotoAndStop ("Intro");
}
};
stop();
Frame 7
function startTimer() {
trace("starting timer");
if (timerInterval == undefined) {
currentSeconds = startSeconds;
var timerInterval = setInterval(countDown, 1000);
}
}
function countDown() {
trace(currentSeconds);
if (_global.gameLocked == false) {
if (currentSeconds > 1) {
if ((currentSeconds < 6) && (currentSeconds > 0)) {
playDing();
}
currentSeconds--;
} else {
currentSeconds--;
sectionComplete();
}
}
}
function playSong(num) {
songHolderClip = this.createEmptyMovieClip("sh", 77007);
musicHolderSound = new Sound(songHolderClip);
musicHolderSound.attachSound("song_" + num);
musicHolderSound.setVolume(40);
musicHolderSound.start(0, 100);
}
startSeconds = 30;
currentSection = 0;
begin.onPress = function () {
gotoAndStop ("startGame");
musicHolderSound.stop();
};
_global.targetManager = new com.TargetManager();
stop();
startTimer();
playSong(1);
Instance of Symbol 102 MovieClip "overlay" in Frame 7
onClipEvent (load) {
this._visible = 0;
}
Instance of Symbol 72 MovieClip "begin" in Frame 7
onClipEvent (load) {
this.label = "BEGIN";
}
Instance of Symbol 172 MovieClip "UI" in Frame 10
onClipEvent (load) {
this.startY = this._y;
}
Frame 13
function playShot() {
shotSnd = new Sound(this);
shotSnd.setVolume(70);
shotSnd.attachSound("shoot_0");
shotSnd.start();
}
function hideUI() {
UI.ySlideTo(335, 1);
}
function showUI() {
UI.ySlideTo(UI.startY, 1);
}
function playAgain() {
currentSeconds = startSeconds;
coalCounter = 0;
showUI();
_global.targetManager.init();
currentSection = 0;
bg.gotoAndStop(1);
overlay.gotoAndStop("level1");
}
function startGame() {
Mouse.hide();
_global.unlockGame();
crosshairs._visible = true;
}
function startSection() {
currentSeconds = startSeconds;
Mouse.hide();
_global.unlockGame();
crosshairs._visible = true;
}
function shoot() {
if (_global.gameLocked == false) {
playShot();
time = 0.25;
a = bg.shotLayer.attachMovie("coal", "coal_" + coalCounter, bg.shotLayer.getNextHighestDepth());
a.startX = gun._x - bg._x;
adjGunRot = gun._rotation + 90;
xoffset = gun.spot._x;
yoffset = gun.spot._y;
a._xscale = (a._yscale = 100);
a.startY = Math.abs(bg._y) + gun._y;
a.destX = _xmouse + Math.abs(bg._x);
a.destY = _ymouse + Math.abs(bg._y);
a._x = a.startX + xoffset;
a._y = a.startY + yoffset;
a.slideTo(a.destX, a.destY, time, "easeOutExpo", 0, function () {
targetManager.checkForHit(this, bg.masker);
});
a.scaleTo(50, time / 2);
coalCounter++;
}
}
function makeAndRegisterTarget(targetClip) {
tobj = {};
tobj.clip = targetClip;
targetManager.addTarget(tobj);
}
function playGame() {
var _local1 = setInterval(makeTarget, 500);
}
function makeTarget() {
if (_global.gameLocked == false) {
targetRand = random(7) + 1;
taragetVauleArray = new Array(10, 20, 30);
if (targetCheckoutArray[targetRand] == 0) {
targetObj = {};
typeRand = random(5) + 1;
targetObj.clip = bg["target_" + targetRand];
targetObj.type = typeRand;
_global.targetManager.addTarget(targetObj);
}
}
}
stop();
overlay._visible = 1;
_global.lockGame = function () {
_global.gameLocked = true;
};
_global.unlockGame = function () {
_global.gameLocked = false;
};
targetCheckoutArray = new Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
_global.checkOutTarget = function (id) {
targetCheckoutArray[id] = 1;
};
_global.returnTarget = function (id) {
targetCheckoutArray[id] = 0;
};
coalCounter = 0;
gunHyp = 120;
gunStartY = gun._y;
var bgSlider = new Slider(bg, masker);
gun.onMouseMove = function () {
if (_global.gameLocked == false) {
if (_root._ymouse > UI.startY) {
hideUI();
} else {
showUI();
}
this.ang = Math.atan2(this._x - _root._xmouse, this._y - _root._ymouse);
rotation = (-this.ang) * radToDeg;
adjusted = rotation + 70;
gun.gotoAndStop(Math.round(adjusted / 11));
if ((_root._ymouse > 200) && (_root._ymouse < 250)) {
gun._y = gunStartY + (_root._ymouse - 200);
}
}
};
bg.onPress = shoot;
playGame();
function countDown() {
trace(currentSeconds);
if (_global.gameLocked == false) {
if (currentSeconds > 1) {
if ((currentSeconds < 6) && (currentSeconds > 0)) {
playDing();
}
currentSeconds--;
} else {
currentSeconds--;
sectionComplete();
}
}
}
function playDing() {
dinger = this.createEmptyMovieClip("dinger", 82773);
dingSnd = new Sound(dinger);
dingSnd.attachSound("ding");
dingSnd.start();
}
function playBuzz() {
dinger = this.createEmptyMovieClip("dinger", 82773);
dingSnd = new Sound(dinger);
dingSnd.attachSound("buzz");
dingSnd.start();
}
function sectionComplete() {
playBuzz();
showUI();
currentSection++;
bg.resetAllTargets();
bg.gotoAndStop(currentSection + 1);
overlay._visible = 1;
Mouse.show();
_global.lockGame();
crosshairs._visible = false;
if (currentSection < 3) {
overlay.gotoAndStop(("level" + currentSection) + "Complete");
} else {
overlay.gotoAndStop("gameOver");
}
}
Symbol 41 MovieClip [smburst] Frame 19
removeMovieClip(this);
Instance of Symbol 45 MovieClip in Symbol 46 MovieClip [flash] Frame 1
onClipEvent (load) {
this.alphaTo(0, 1);
this.slideTo(-21, -12, 1);
}
Instance of Symbol 45 MovieClip in Symbol 46 MovieClip [flash] Frame 1
onClipEvent (load) {
this.alphaTo(0, 1);
this.slideTo(17, 20, 1);
}
Instance of Symbol 45 MovieClip in Symbol 46 MovieClip [flash] Frame 1
onClipEvent (load) {
this.alphaTo(0, 1);
this.slideTo(23, -23, 1);
}
Instance of Symbol 45 MovieClip in Symbol 46 MovieClip [flash] Frame 1
onClipEvent (load) {
this.alphaTo(0, 1);
this.slideTo(-2, 25, 1);
}
Instance of Symbol 45 MovieClip in Symbol 46 MovieClip [flash] Frame 1
onClipEvent (load) {
this.alphaTo(0, 1);
this.slideTo(-25, 16, 1);
}
Symbol 173 MovieClip [__Packages.com.TargetManager] Frame 0
class com.TargetManager
{
var targetArray, scoreArray, sndArray;
function TargetManager () {
init();
}
function init() {
targetArray = new Array();
scoreArray = new Array("", 50, -50, -50, 50, 50);
_root.score = 0;
sndArray = new Array("", 4, 2, 2, 2, 3);
}
function playHitSound(type) {
trace(type);
var _local4 = _root.createEmptyMovieClip("soundHolder", _root.getNextHighestDepth());
var _local3 = new Sound(_local4);
var _local6 = random(sndArray[type]);
_local3.attachSound((("kid" + type) + "_") + _local6);
_local3.start();
}
function addTarget(obj) {
_global.checkOutTarget(obj.clip.id);
var _local4 = random(3) + 1;
obj.clip.hotspot._visible = true;
obj.clip["go_" + _local4]();
obj.clip.type = obj.type;
obj.clip.gotoAndStop(obj.type);
targetArray.push(obj);
}
function removeTarget(clip) {
for (var _local3 in targetArray) {
if (targetArray[_local3].clip == clip) {
targetArray.splice(_local3, 1);
}
}
}
function addScore(id) {
_root.score = _root.score + Number(scoreArray[id]);
}
function checkForHit(shot, mask) {
var _local4 = mask;
var _local2 = 0;
while (_local2 < targetArray.length) {
if (shot.hitTest(targetArray[_local2].clip.hotspot) && (shot.hitTest(_local4))) {
addScore(targetArray[_local2].clip._currentframe);
hitTarget(shot, targetArray[_local2].clip.hotspot);
break;
}
_local2++;
}
shot.removeMovieClip();
}
function hitTarget(shotClip, targetClip) {
var _local3 = _root.bg.powLayer.attachMovie("flash", "flash_" + _root.bg.powLayer.getNextHighestDepth(), _root.bg.powLayer.getNextHighestDepth());
playHitSound(targetClip._parent.type);
_local3._rotation = 360;
_local3.flash.colorTo(16777215, 1);
_local3.alphaTo(0, 1, "linear", 0, function () {
removeMovieClip(this);
});
_local3._x = shotClip._x;
_local3._y = shotClip._y;
targetClip._parent._visible = false;
targetClip._parent.reset();
}
function clearTargetArray() {
}
}
Symbol 174 MovieClip [__Packages.Slider] Frame 0
class Slider extends MovieClip
{
var clip, maskClip, holderStartX, holderStartY, _width, _height, hitTest, _x, _y;
function Slider (clipToSlide, maskClip) {
super();
_root.attachMovie("crosshairs", "ch", 100);
clip = clipToSlide;
this.maskClip = maskClip;
holderStartX = clip._x;
holderStartY = clip._y;
this.maskClip.clip = clip;
clip.setMask(this.maskClip);
maskClip.onMouseMove = moveMouse;
}
function moveMouse() {
if (_global.gameLocked == false) {
_root.ch._x = _root._xmouse;
_root.ch._y = _root._ymouse;
var _local4 = clip._width - _width;
var _local5 = clip._height - _height;
var _local8 = _local4 / _width;
var _local9 = _local5 / _height;
var _local10;
var _local11;
var _local7;
var _local6;
if (hitTest(_root._xmouse, _root._ymouse)) {
_local4 = clip._width - _width;
_local5 = clip._height - _height;
_local10 = _root._xmouse;
_local11 = _root._ymouse;
_local7 = ((-(_local10 - _x)) * _local8) + _x;
_local6 = ((-(_local11 - _y)) * _local9) + _y;
clip.slideTo(_local7, _local6, 1);
}
}
}
}
Symbol 102 MovieClip Frame 1
function playSnd() {
snd = new Sound(this);
snd.attachSound("annouce");
snd.start();
}
begin.onPress = function () {
this._parent._visible = 0;
_parent.startGame();
};
stop();
playSnd();
Instance of Symbol 72 MovieClip "begin" in Symbol 102 MovieClip Frame 1
onClipEvent (load) {
this.label = "BEGIN";
}
Symbol 102 MovieClip Frame 10
begin.onPress = function () {
this._parent._visible = 0;
_parent.startSection();
};
Symbol 102 MovieClip Frame 24
begin.onPress = function () {
this._parent._visible = 0;
_parent.startSection();
};
Symbol 102 MovieClip Frame 36
sendButton.onPress = function () {
gotoAndStop ("submit");
};
playAgain.onPress = function () {
_root.musicHolderSound.stop();
_root.playAgain();
};
_root.playSong(1);
Instance of Symbol 72 MovieClip "sendButton" in Symbol 102 MovieClip Frame 36
onClipEvent (load) {
this.label = "SUBMIT SCORE";
}
Instance of Symbol 72 MovieClip "playAgain" in Symbol 102 MovieClip Frame 36
onClipEvent (load) {
this.label = "PLAY AGAIN";
}
Symbol 102 MovieClip Frame 45
function sendData() {
if (nameField.length > 2) {
sendVars = new LoadVars();
sendVars.onLoad = function () {
gotoAndStop ("getHS");
};
_root.playerName = nameField.text;
sendVars.name = nameField.text;
sendVars.score = _root.score;
sendVars.sendAndLoad("saveScores.php", sendVars);
gotoAndStop ("sending");
} else {
error.text = "***PLEASE ENTER YOUR NAME***";
}
}
sendDataButton.onPress = sendData;
Instance of Symbol 72 MovieClip "sendDataButton" in Symbol 102 MovieClip Frame 45
onClipEvent (load) {
this.label = "SEND";
}
Symbol 102 MovieClip Frame 69
hsVars = new LoadVars();
hsVars.onLoad = function () {
gotoAndStop ("showHS");
};
hsVars.load("pullScores.php");
Symbol 102 MovieClip Frame 83
function displayScores() {
tempStr = "";
var _local2 = 1;
while (_local2 <= 10) {
if (hsVars["name" + _local2] == undefined) {
break;
}
if (hsVars["name" + _local2] == _root.playerName) {
tempStr = tempStr + "<font color=\"%ff0000\">";
}
tempStr = tempStr + (hsVars["name" + _local2] + "........");
tempStr = tempStr + hsVars["score" + _local2];
if (hsVars.name == _root.playerName) {
tempStr = tempStr + "</font>";
}
tempStr = tempStr + "<br></br>";
_local2++;
}
hsText.htmlText = tempStr;
}
playAgain.onPress = function () {
_root.musicHolderSound.stop();
_root.playAgain();
};
displayScores();
Instance of Symbol 72 MovieClip "playAgain" in Symbol 102 MovieClip Frame 83
onClipEvent (load) {
this.label = "PLAY AGAIN";
}
Symbol 128 MovieClip Frame 1
stop();
Symbol 140 MovieClip Frame 1
function removeMe(clip) {
_global.targetManager.removeTarget(clip);
clip._alpha = 100;
_global.returnTarget(clip.id);
clip.gotoAndStop(1);
clip.hotspot._visible = 1;
clip.stopTween();
}
function resetAllTargets() {
var _local2 = 0;
while (_local2 <= 8) {
a = this["target_" + _local2];
a.stopTween();
a.reset();
_local2++;
}
}
stop();
Instance of Symbol 128 MovieClip "target_2" in Symbol 140 MovieClip Frame 1
onClipEvent (load) {
function reset() {
_parent.removeMe(this);
this._visible = 0;
this._rotation = 0;
this._x = this.startX;
this._y = this.startY;
}
function go_1() {
this._visible = 1;
delay = random(5);
this._x = this.startX;
this.rotateTo(-11, _global.targetSlideSpeed, "linear", 0, function () {
this.rotateTo(0, _global.targetSlideSpeed, "linear", delay);
});
this.xSlideTo(this.destX, _global.targetSlideSpeed, "linear", 0, function () {
this.xSlideTo(this.startX, _global.targetSlideSpeed, "linear", delay, function () {
reset();
});
});
}
function go_2() {
go_1();
}
function go_3() {
go_1();
}
this.id = 2;
this.startX = this._x;
this.startY = this._y;
this.destX = this._x - 64;
this._visible = 0;
}
Instance of Symbol 128 MovieClip "target_5" in Symbol 140 MovieClip Frame 1
onClipEvent (load) {
function reset() {
_parent.removeMe(this);
this._visible = 0;
this._rotation = 0;
this._x = this.startX;
this._y = this.startY;
}
function go_1() {
this._visible = 1;
delay = random(5);
this.ySlideTo(194, _global.targetSlideSpeed, "linear", 0, function () {
this.ySlideTo(this.startY, _global.targetSlideSpeed, "linear", delay, function () {
reset();
});
});
}
function go_2() {
go_1();
}
function go_3() {
go_1();
}
this.id = 5;
this.startX = this._x;
this.startY = this._y;
this._visible = 0;
}
Instance of Symbol 128 MovieClip "target_3" in Symbol 140 MovieClip Frame 1
onClipEvent (load) {
function reset() {
_parent.removeMe(this);
this._visible = 0;
this._rotation = 0;
this._x = this.startX;
this._y = this.startY;
}
function go_1() {
this._visible = 1;
delay = random(5);
this.ySlideTo(this.startY - 60, _global.targetSlideSpeed, "linear", 0, function () {
this.ySlideTo(this.startY, _global.targetSlideSpeed, "linear", delay, function () {
reset();
});
});
}
function go_2() {
go_1();
}
function go_3() {
go_1();
}
this.id = 3;
this.startX = this._x;
this.startY = this._y;
this._visible = 0;
}
Instance of Symbol 128 MovieClip "target_4" in Symbol 140 MovieClip Frame 1
onClipEvent (load) {
function reset() {
_parent.removeMe(this);
this._visible = 0;
this._rotation = 0;
this._x = this.startX;
this._y = this.startY;
}
function go_1() {
this._visible = 1;
delay = random(5);
this._x = this.startX;
this.rotateTo(11, _global.targetSlideSpeed, "linear", 0, function () {
this.rotateTo(0, _global.targetSlideSpeed, "linear", delay);
});
this.xSlideTo(this.destX, _global.targetSlideSpeed, "linear", 0, function () {
this.xSlideTo(this.startX, _global.targetSlideSpeed, "linear", delay, function () {
reset();
});
});
}
function go_2() {
go_1();
}
function go_3() {
go_1();
}
this.id = 4;
this.startX = this._x;
this.startY = this._y;
this.destX = this._x + 64;
this._visible = 0;
}
Instance of Symbol 128 MovieClip "target_6" in Symbol 140 MovieClip Frame 1
onClipEvent (load) {
function reset() {
_parent.removeMe(this);
this._visible = 0;
this._rotation = 0;
this._x = this.startX;
this._y = this.startY;
}
function go_1() {
this._visible = 1;
delay = random(5);
this.ySlideTo(194, _global.targetSlideSpeed, "linear", 0, function () {
this.ySlideTo(this.startY, _global.targetSlideSpeed, "linear", delay, function () {
reset();
});
});
}
function go_2() {
go_1();
}
function go_3() {
go_1();
}
this.id = 6;
this.startX = this._x;
this.startY = this._y;
this._visible = 0;
}
Instance of Symbol 128 MovieClip "target_1" in Symbol 140 MovieClip Frame 1
onClipEvent (load) {
function reset() {
_parent.removeMe(this);
this._visible = 0;
this._x = this.startX;
this._y = this.startY;
}
function go_1() {
this._visible = 1;
delay = random(5);
this.ySlideTo(222, _global.targetSlideSpeed, "linear", 0, function () {
this.ySlideTo(this.startY, _global.targetSlideSpeed, "linear", delay, function () {
reset();
});
});
}
function go_2() {
go_1();
}
function go_3() {
go_1();
}
this.id = 1;
this.startX = this._x;
this.startY = this._y;
this._visible = 0;
}
Instance of Symbol 128 MovieClip "target_7" in Symbol 140 MovieClip Frame 1
onClipEvent (load) {
function reset() {
_parent.removeMe(this);
this._visible = 0;
this._rotation = 0;
this._x = this.startX;
this._y = this.startY;
}
function go_1() {
this._visible = 1;
this._x = this.startX;
this.xSlideTo(this.destX, _global.targetSlideSpeed * 3, "linear", 0, function () {
reset();
});
}
function go_2() {
this._visible = 1;
this._x = this.destX;
this.xSlideTo(this.startX, _global.targetSlideSpeed * 3, "linear", 0, function () {
reset();
});
}
function go_3() {
go_1();
}
this.id = 7;
this.startX = this._x;
this.startY = this._y;
this.destX = this._x + 750;
this._visible = 0;
}
Instance of Symbol 128 MovieClip "target_2" in Symbol 140 MovieClip Frame 2
onClipEvent (load) {
function reset() {
_parent.removeMe(this);
this._visible = 0;
this._rotation = 0;
this._x = this.startX;
this._y = this.startY;
}
function go_1() {
go_3();
}
function go_2() {
go_3();
}
function go_3() {
this._visible = 1;
delay = random(5);
this.ySlideTo(133, _global.targetSlideSpeed, "linear", 0, function () {
this.ySlideTo(218, _global.targetSlideSpeed, "linear", delay, function () {
reset();
});
});
}
this.id = 2;
this.startX = this._x;
this.startY = this._y;
this.destX = this._x + 200;
this._visible = 0;
}
Instance of Symbol 128 MovieClip "target_5" in Symbol 140 MovieClip Frame 2
onClipEvent (load) {
function reset() {
_parent.removeMe(this);
this._visible = 0;
this._rotation = 0;
this._x = this.startX;
this._y = this.startY;
}
function go_1() {
this._visible = 1;
delay = random(5);
this._x = this.startX;
this.rotateTo(-11, _global.targetSlideSpeed, "linear", 0, function () {
this.rotateTo(0, _global.targetSlideSpeed, "linear", delay);
});
this.xSlideTo(this.destX, _global.targetSlideSpeed, "linear", 0, function () {
this.xSlideTo(this.startX, _global.targetSlideSpeed, "linear", delay, function () {
reset();
});
});
}
function go_2() {
go_1();
}
function go_3() {
go_1();
}
this.id = 5;
this.startX = this._x;
this.startY = this._y;
this.destX = 654;
this._visible = 0;
}
Instance of Symbol 128 MovieClip "target_1" in Symbol 140 MovieClip Frame 2
onClipEvent (load) {
function reset() {
_parent.removeMe(this);
this._visible = 0;
this._rotation = 0;
this._x = this.startX;
this._y = this.startY;
}
function go_1() {
this._visible = 1;
delay = random(5);
this._x = this.startX;
this.xSlideTo(this.destX, _global.targetSlideSpeed, "linear", 0, function () {
this.xSlideTo(this.startX, _global.targetSlideSpeed, "linear", delay, function () {
reset();
});
});
}
function go_2() {
go_1();
}
function go_3() {
go_1();
}
this.id = 1;
this.startX = this._x;
this.startY = this._y;
this.destX = this._x + 64;
this._visible = 0;
}
Instance of Symbol 128 MovieClip "target_6" in Symbol 140 MovieClip Frame 2
onClipEvent (load) {
function reset() {
_parent.removeMe(this);
this._visible = 0;
this._rotation = 0;
this._x = this.startX;
this._y = this.startY;
}
function go_1() {
trace("going");
this._visible = 1;
delay = random(5);
this.ySlideTo(this.startY - 55, _global.targetSlideSpeed, "linear", 0, function () {
this.ySlideTo(this.startY, _global.targetSlideSpeed, "linear", delay, function () {
reset();
});
});
}
function go_2() {
go_1();
}
function go_3() {
go_1();
}
this.id = 6;
this.startX = this._x;
this.startY = this._y;
this._visible = 0;
}
Instance of Symbol 128 MovieClip "target_4" in Symbol 140 MovieClip Frame 2
onClipEvent (load) {
function reset() {
_parent.removeMe(this);
this._visible = 0;
this._x = this.startX;
this._y = this.startY;
}
function go_1() {
trace("going");
this._visible = 1;
delay = random(5);
this.ySlideTo(150, _global.targetSlideSpeed, "linear", 0, function () {
this.ySlideTo(this.startY, _global.targetSlideSpeed, "linear", delay, function () {
reset();
});
});
}
function go_2() {
go_1();
}
function go_3() {
go_1();
}
this.id = 4;
this.startX = this._x;
this.startY = this._y;
this._visible = 0;
}
Instance of Symbol 128 MovieClip "target_7" in Symbol 140 MovieClip Frame 2
onClipEvent (load) {
function reset() {
_parent.removeMe(this);
this._visible = 0;
this._rotation = 0;
this._x = this.startX;
this._y = this.startY;
}
function go_1() {
this._visible = 1;
this._x = this.startX;
this.xSlideTo(this.destX, _global.targetSlideSpeed * 3, "linear", 0, function () {
reset();
});
}
function go_2() {
this._visible = 1;
this._x = this.destX;
this.xSlideTo(this.startX, _global.targetSlideSpeed * 3, "linear", 0, function () {
reset();
});
}
function go_3() {
go_1();
}
this.id = 7;
this.startX = this._x;
this.startY = this._y;
this.destX = this._x + 750;
this._visible = 0;
}
Instance of Symbol 128 MovieClip "target_3" in Symbol 140 MovieClip Frame 2
onClipEvent (load) {
function reset() {
_parent.removeMe(this);
this._visible = 0;
this._rotation = 0;
this._x = this.startX;
this._y = this.startY;
}
function go_1() {
this._visible = 1;
delay = random(5);
this.ySlideTo(155, _global.targetSlideSpeed, "linear", 0, function () {
this.ySlideTo(this.startY, _global.targetSlideSpeed, "linear", delay, function () {
reset();
});
});
}
function go_2() {
go_1();
}
function go_3() {
go_1();
}
this.id = 3;
this.startX = this._x;
this.startY = this._y;
this._visible = 0;
}
Instance of Symbol 128 MovieClip "target_2" in Symbol 140 MovieClip Frame 3
onClipEvent (load) {
function reset() {
_parent.removeMe(this);
this._visible = 0;
this._rotation = 0;
this._x = this.startX;
this._y = this.startY;
}
function go_1() {
this._visible = 1;
this._x = this.startX;
this.xSlideTo(this.destX, _global.targetSlideSpeed, "linear", 0, function () {
reset();
});
}
function go_2() {
this._visible = 1;
this._x = this.destX;
this.xSlideTo(this.startX, _global.targetSlideSpeed, "linear", 0, function () {
reset();
});
}
function go_3() {
go_1();
}
this.id = 2;
this.startX = this._x;
this.startY = this._y;
this.destX = this._x + 200;
this._visible = 0;
}
Instance of Symbol 128 MovieClip "target_5" in Symbol 140 MovieClip Frame 3
onClipEvent (load) {
function reset() {
_parent.removeMe(this);
this._visible = 0;
this._rotation = 0;
this._x = this.startX;
this._y = this.startY;
}
function go_1() {
this._visible = 1;
this._x = this.startX;
this.xSlideTo(this.destX, _global.targetSlideSpeed, "linear", 0, function () {
reset();
});
}
function go_2() {
this._visible = 1;
this._x = this.destX;
this.xSlideTo(this.startX, _global.targetSlideSpeed, "linear", 0, function () {
reset();
});
}
function go_3() {
this._visible = 1;
this._x = 615;
this._y = 200;
this.ySlideTo(110, _global.targetSlideSpeed, "linear", 0, function () {
this.ySlideTo(200, _global.targetSlideSpeed, "linear", 0, function () {
reset();
});
});
}
this.id = 5;
this.startX = this._x;
this.startY = this._y;
this.destX = this._x + 170;
this._visible = 0;
}
Instance of Symbol 128 MovieClip "target_3" in Symbol 140 MovieClip Frame 3
onClipEvent (load) {
function reset() {
_parent.removeMe(this);
this._visible = 0;
this._rotation = 0;
this._x = this.startX;
this._y = this.startY;
}
function go_1() {
this._visible = 1;
delay = random(5);
this.ySlideTo(this.startY - 60, _global.targetSlideSpeed, "linear", 0, function () {
this.ySlideTo(this.startY, _global.targetSlideSpeed, "linear", delay, function () {
reset();
});
});
}
function go_2() {
go_1();
}
function go_3() {
go_1();
}
this.id = 3;
this.startX = this._x;
this.startY = this._y;
this._visible = 0;
}
Instance of Symbol 128 MovieClip "target_1" in Symbol 140 MovieClip Frame 3
onClipEvent (load) {
function reset() {
_parent.removeMe(this);
this._visible = 0;
this._rotation = 0;
this._x = this.startX;
this._y = this.startY;
}
function go_1() {
this._visible = 1;
delay = random(5);
this._x = this.startX;
this.rotateTo(11, _global.targetSlideSpeed, "linear", 0, function () {
this.rotateTo(0, _global.targetSlideSpeed, "linear", delay);
});
this.xSlideTo(this.destX, _global.targetSlideSpeed, "linear", 0, function () {
this.xSlideTo(this.startX, _global.targetSlideSpeed, "linear", delay, function () {
reset();
});
});
}
function go_2() {
go_1();
}
function go_3() {
go_1();
}
this.id = 1;
this.startX = this._x;
this.startY = this._y;
this.destX = this._x + 64;
this._visible = 0;
}
Instance of Symbol 128 MovieClip "target_6" in Symbol 140 MovieClip Frame 3
onClipEvent (load) {
function reset() {
_parent.removeMe(this);
this._visible = 0;
this._rotation = 0;
this._x = this.startX;
this._y = this.startY;
}
function go_1() {
trace("going");
this._visible = 1;
delay = random(5);
this.ySlideTo(this.startY - 55, _global.targetSlideSpeed, "linear", 0, function () {
this.ySlideTo(this.startY, _global.targetSlideSpeed, "linear", delay, function () {
reset();
});
});
}
function go_2() {
go_1();
}
function go_3() {
go_1();
}
this.id = 6;
this.startX = this._x;
this.startY = this._y;
this._visible = 0;
}
Instance of Symbol 128 MovieClip "target_4" in Symbol 140 MovieClip Frame 3
onClipEvent (load) {
function reset() {
_parent.removeMe(this);
this._visible = 0;
this._x = this.startX;
this._y = this.startY;
}
function go_1() {
trace("going");
this._visible = 1;
delay = random(5);
this.ySlideTo(175, _global.targetSlideSpeed, "linear", 0, function () {
this.ySlideTo(this.startY, _global.targetSlideSpeed, "linear", delay, function () {
reset();
});
});
}
function go_2() {
go_1();
}
function go_3() {
go_1();
}
this.id = 4;
this.startX = this._x;
this.startY = this._y;
this._visible = 0;
}
Instance of Symbol 128 MovieClip "target_7" in Symbol 140 MovieClip Frame 3
onClipEvent (load) {
function reset() {
_parent.removeMe(this);
this._visible = 0;
this._rotation = 0;
this._x = this.startX;
this._y = this.startY;
}
function go_1() {
this._visible = 1;
this._x = this.startX;
this.xSlideTo(this.destX, _global.targetSlideSpeed * 3, "linear", 0, function () {
reset();
});
}
function go_2() {
this._visible = 1;
this._x = this.destX;
this.xSlideTo(this.startX, _global.targetSlideSpeed * 3, "linear", 0, function () {
reset();
});
}
function go_3() {
go_1();
}
this.id = 7;
this.startX = this._x;
this.startY = this._y;
this.destX = this._x + 750;
this._visible = 0;
}
Symbol 165 MovieClip Frame 1
stop();