hoal gracias por sus respuestas, aca esta el script como llamo a los archivos xml
("home/") es la carpeta donde esta el mainmen y el alt.xml
por cierto, esta pagina esta alojada esta en este orden.
http://mipagina.com/final/ (en la carpeta final esta el index. y la carpeta home. gracias y espero su ayuda.
este es el archivo as. q carga con el index
Stage.scaleMode = "noScale";
Stage.align = "C";
Stage.showMenu = false;
_global.rootDir = _root._url.indexOf("file:") > -1 ? ("home/") : (""); _global.rootDir2 = _root._url.indexOf("file:") > -1 ? ("home/") : ("home/");
_global.MAINMENU_XML = _global.rootDir + "mainmen.xml";
_global.ALTMENU_XML = _global.rootDir + "altmenu.xml";
_global.$createTweenController = function ()
{
var _loc1 = _root.createEmptyMovieClip("__tweenController__", 123432);
_loc1.$_tweenPropList = new Array();
_loc1.$_tTime = getTimer();
_loc1.onEnterFrame = _global.$updateTweens;
};
ASSetPropFlags(_global, "$createTweenController", 1, 0);
_global.$removeTweenController = function ()
{
var _loc1 = _root;
delete _loc1.__tweenController__.$_tweenPropList;
delete _loc1.__tweenController__.$_tTime;
delete _loc1.__tweenController__.onEnterFrame;
_loc1.__tweenController__.removeMovieClip();
};
ASSetPropFlags(_global, "$removeTweenController", 1, 0);
_global.$addTween = function (mtarget, prop, propDest, timeSeconds, animType, delay, callback, extra1, extra2, extras)
{
var _loc3 = mtarget;
if (timeSeconds == undefined)
{
timeSeconds = 0;
} // end if
if (animType == undefined || animType == "")
{
animType = "easeOutExpo";
} // end if
if (delay == undefined)
{
delay = 0;
} // end if
if (typeof(prop) == "string")
{
var properties = [prop];
var oldProperties = [_loc3[prop]];
var newProperties = [propDest];
}
else
{
var properties = [];
var oldProperties = [];
var newProperties = [];
for (var i in prop)
{
oldProperties.push(_loc3[prop[i]]);
} // end of for...in
for (var i in prop)
{
properties.push(prop[i]);
} // end of for...in
for (var i in propDest)
{
newProperties.push(propDest[i]);
} // end of for...in
} // end else if
var $_callback_assigned = false;
if (_root.__tweenController__ == undefined)
{
_global.$createTweenController();
} // end if
var _loc2 = _root.__tweenController__.$_tweenPropList;
var tTime = _root.__tweenController__.$_tTime;
for (var i in oldProperties)
{
if (newProperties[i] != undefined && !_loc3.$_isTweenLocked)
{
if (_loc3.$_tweenCount > 0)
{
for (var _loc1 = 0; _loc1 < _loc2.length; ++_loc1)
{
if (_loc2[_loc1]._targ == _loc3 && _loc2[_loc1]._prop == properties[i])
{
if (tTime + delay * 1000 < _loc2[_loc1]._timeDest)
{
_loc2.splice(_loc1, 1);
--_loc1;
--_loc3.$_tweenCount;
} // end if
} // end if
} // end of for
} // end if
_loc2.push({_prop: properties[i], _targ: _loc3, _propStart: undefined, _propDest: newProperties[i], _timeStart: tTime, _timeDest: tTime + timeSeconds * 1000, _animType: animType, _extra1: extra1, _extra2: extra2, _extras: extras, _delay: delay, _isPaused: false, _timePaused: 0, _callback: $_callback_assigned ? (undefined) : (callback)});
_loc3.$_tweenCount = _loc3.$_tweenCount > 0 ? (_loc3.$_tweenCount + 1) : (1);
$_callback_assigned = true;
} // end if
} // end of for...in
ASSetPropFlags(_loc3, "$_tweenCount", 1, 0);
};
ASSetPropFlags(_global, "$addTween", 1, 0);
_global.$updateTweens = function ()
{
var _loc3 = _global;
var tTime = this.$_tTime = getTimer();
var i = 0;
while (i < this.$_tweenPropList.length)
{
var _loc1 = this.$_tweenPropList[i];
if (_loc1._targ.toString() == undefined)
{
this.$_tweenPropList.splice(i, 1);
--i;
}
else if (_loc1._timeStart + _loc1._delay * 1000 <= tTime && !_loc1._isPaused)
{
if (_loc1._propStart == undefined)
{
if (_loc1._prop.substr(0, 10) == "__special_")
{
if (_loc1._prop == "__special_mc_frame__")
{
_loc1._propStart = _loc1._targ._currentframe;
}
else if (_loc1._prop == "__special_mc_ra__")
{
_loc1._propStart = new Color(_loc1._targ).getTransform().ra;
}
else if (_loc1._prop == "__special_mc_rb__")
{
_loc1._propStart = new Color(_loc1._targ).getTransform().rb;
}
else if (_loc1._prop == "__special_mc_ga__")
{
_loc1._propStart = new Color(_loc1._targ).getTransform().ga;
}
else if (_loc1._prop == "__special_mc_gb__")
{
_loc1._propStart = new Color(_loc1._targ).getTransform().gb;
}
else if (_loc1._prop == "__special_mc_ba__")
{
_loc1._propStart = new Color(_loc1._targ).getTransform().ba;
}
else if (_loc1._prop == "__special_mc_bb__")
{
_loc1._propStart = new Color(_loc1._targ).getTransform().bb;
}
else if (_loc1._prop == "__special_mc_aa__")
{
_loc1._propStart = new Color(_loc1._targ).getTransform().aa;
}
else if (_loc1._prop == "__special_mc_ab__")
{
_loc1._propStart = new Color(_loc1._targ).getTransform().ab;
}
else if (_loc1._prop == "__special_text_r__")
{
_loc1._propStart = _loc1._targ.textColor >> 16;
}
else if (_loc1._prop == "__special_text_g__")
{
_loc1._propStart = (_loc1._targ.textColor & 65280) >> 8;
}
else if (_loc1._prop == "__special_text_b__")
{
_loc1._propStart = _loc1._targ.textColor & 255;
}
else if (_loc1._prop == "__special_sound_volume__")
{
_loc1._propStart = _loc1._targ.getVolume();
}
else if (_loc1._prop == "__special_sound_pan__")
{
_loc1._propStart = _loc1._targ.getPan();
}
else if (_loc1._prop == "__special_bst_t__")
{
_loc1._propStart = 0;
_loc1._extras.__special_bst_ix__ = _loc1._targ._x;
_loc1._extras.__special_bst_iy__ = _loc1._targ._y;
}
else if (_loc1._prop == "__special_blur_x__")
{
var j = 0;
while (j < _loc1._targ.filters.length)
{
if (_loc1._targ.filters[j] instanceof flash.filters.BlurFilter)
{
_loc1._propStart = _loc1._targ.filters[j].blurX;
} // end if
++j;
} // end while
if (_loc1._propStart == undefined)
{
_loc1._propStart = 0;
} // end if
}
else if (_loc1._prop == "__special_blur_y__")
{
var j = 0;
while (j < _loc1._targ.filters.length)
{
if (_loc1._targ.filters[j] instanceof flash.filters.BlurFilter)
{
_loc1._propStart = _loc1._targ.filters[j].blurY;
} // end if
++j;
} // end while
if (_loc1._propStart == undefined)
{
_loc1._propStart = 0;
} // end if
}
else if (_loc1._prop == "__special_glow_color__")
{
var j = 0;
while (j < _loc1._targ.filters.length)
{
if (_loc1._targ.filters[j] instanceof flash.filters.GlowFilter)
{
_loc1._propStart = _loc1._targ.filters[j].color;
} // end if
++j;
} // end while
if (_loc1._propStart == undefined)
{
_loc1._propStart = 16777215;
} // end if
}
else if (_loc1._prop == "__special_glow_alpha__")
{
var j = 0;
while (j < _loc1._targ.filters.length)
{
if (_loc1._targ.filters[j] instanceof flash.filters.GlowFilter)
{
_loc1._propStart = _loc1._targ.filters[j].alpha;
} // end if
++j;
} // end while
if (_loc1._propStart == undefined)
{
_loc1._propStart = 1;
} // end if
}
else if (_loc1._prop == "__special_glow_blurX__")
{
var j = 0;
while (j < _loc1._targ.filters.length)
{
if (_loc1._targ.filters[j] instanceof flash.filters.GlowFilter)
{
_loc1._propStart = _loc1._targ.filters[j].blurX;
} // end if
++j;
} // end while
if (_loc1._propStart == undefined)
{
_loc1._propStart = 0;
} // end if
}
else if (_loc1._prop == "__special_glow_blurY__")
{
var j = 0;
while (j < _loc1._targ.filters.length)
{
if (_loc1._targ.filters[j] instanceof flash.filters.GlowFilter)
{
_loc1._propStart = _loc1._targ.filters[j].blurY;
} // end if
++j;
} // end while
if (_loc1._propStart == undefined)
{
_loc1._propStart = 0;
} // end if
}
else if (_loc1._prop == "__special_glow_strength__")
{
var j = 0;
while (j < _loc1._targ.filters.length)
{
if (_loc1._targ.filters[j] instanceof flash.filters.GlowFilter)
{
_loc1._propStart = _loc1._targ.filters[j].strength;
} // end if
++j;
} // end while
if (_loc1._propStart == undefined)
{
_loc1._propStart = 1;
} // end if
}
else if (_loc1._prop == "__special_bevel_distance__")
{
var j = 0;
while (j < _loc1._targ.filters.length)
{
if (_loc1._targ.filters[j] instanceof flash.filters.BevelFilter)
{
_loc1._propStart = _loc1._targ.filters[j].distance;
} // end if
++j;
} // end while
if (_loc1._propStart == undefined)
{
_loc1._propStart = 0;
} // end if
}
else if (_loc1._prop == "__special_bevel_angle__")
{
var j = 0;
while (j < _loc1._targ.filters.length)
{
if (_loc1._targ.filters[j] instanceof flash.filters.BevelFilter)
{
_loc1._propStart = _loc1._targ.filters[j].angle;
} // end if
++j;
} // end while
if (_loc1._propStart == undefined)
{
_loc1._propStart = 45;
} // end if
}
else if (_loc1._prop == "__special_bevel_highlightColor__")
{
var j = 0;
while (j < _loc1._targ.filters.length)
{
if (_loc1._targ.filters[j] instanceof flash.filters.BevelFilter)
{
_loc1._propStart = _loc1._targ.filters[j].highlightColor;
} // end if
++j;
} // end while
if (_loc1._propStart == undefined)
{
_loc1._propStart = 16777215;
} // end if
}
else if (_loc1._prop == "__special_bevel_highlightAlpha__")
{
var j = 0;
while (j < _loc1._targ.filters.length)
{
if (_loc1._targ.filters[j] instanceof flash.filters.BevelFilter)
{
_loc1._propStart = _loc1._targ.filters[j].highlightAlpha;
} // end if
++j;
} // end while
if (_loc1._propStart == undefined)
{
_loc1._propStart = 1;
} // end if
}
else if (_loc1._prop == "__special_bevel_shadowColor__")
{
var j = 0;
while (j < _loc1._targ.filters.length)
{
if (_loc1._targ.filters[j] instanceof flash.filters.BevelFilter)
{
_loc1._propStart = _loc1._targ.filters[j].shadowColor;
} // end if
++j;
} // end while
if (_loc1._propStart == undefined)
{
_loc1._propStart = 0;
} // end if
}
else if (_loc1._prop == "__special_bevel_shadowAlpha__")
{
var j = 0;
while (j < _loc1._targ.filters.length)
{
if (_loc1._targ.filters[j] instanceof flash.filters.BevelFilter)
{
_loc1._propStart = _loc1._targ.filters[j].shadowAlpha;
} // end if
++j;
} // end while
if (_loc1._propStart == undefined)
{
_loc1._propStart = 1;
} // end if
}
else if (_loc1._prop == "__special_bevel_blurX__")
{
var j = 0;
while (j < _loc1._targ.filters.length)
{
if (_loc1._targ.filters[j] instanceof flash.filters.BevelFilter)
{
_loc1._propStart = _loc1._targ.filters[j].blurX;
} // end if
++j;
} // end while
if (_loc1._propStart == undefined)
{
_loc1._propStart = 0;
} // end if
}
else if (_loc1._prop == "__special_bevel_blurY__")
{
var j = 0;
while (j < _loc1._targ.filters.length)
{
if (_loc1._targ.filters[j] instanceof flash.filters.BevelFilter)
{
_loc1._propStart = _loc1._targ.filters[j].blurY;
} // end if
++j;
} // end while
if (_loc1._propStart == undefined)
{
_loc1._propStart = 0;
} // end if
}
else if (_loc1._prop == "__special_bevel_strength__")
{
var j = 0;
while (j < _loc1._targ.filters.length)
{
if (_loc1._targ.filters[j] instanceof flash.filters.BevelFilter)
{
_loc1._propStart = _loc1._targ.filters[j].strength;
} // end if
++j;
} // end while
if (_loc1._propStart == undefined)
{
_loc1._propStart = 1;
} // end if
}
else
{
_loc1._propStart = _loc1._targ[_loc1._prop];
} // end else if
}
else
{
_loc1._propStart = _loc1._targ[_loc1._prop];
} // end if
} // end else if
var endTime = _loc1._timeDest + _loc1._delay * 1000;
if (endTime <= tTime)
{
var _loc2 = _loc1._propDest;
}
else
{
_loc2 = _loc3.findTweenValue(_loc1._propStart, _loc1._propDest, _loc1._timeStart, tTime - _loc1._delay * 1000, _loc1._timeDest, _loc1._animType, _loc1._extra1, _loc1._extra2);
} // end else if
_loc1._targ[_loc1._prop] = _loc1._extras.mustRound ? (Math.round(_loc2)) : (_loc2);
if (_loc1._prop == "__special_mc_frame__")
{
_loc1._targ.gotoAndStop(Math.round(_loc2));
}
else if (_loc1._prop == "__special_mc_ra__")
{
new Color(_loc1._targ).setTransform({ra: _loc2});
}
else if (_loc1._prop == "__special_mc_rb__")
{
new Color(_loc1._targ).setTransform({rb: _loc2});
}
else if (_loc1._prop == "__special_mc_ga__")
{
new Color(_loc1._targ).setTransform({ga: _loc2});
}
else if (_loc1._prop == "__special_mc_gb__")
{
new Color(_loc1._targ).setTransform({gb: _loc2});
}
else if (_loc1._prop == "__special_mc_ba__")
{
new Color(_loc1._targ).setTransform({ba: _loc2});
}
else if (_loc1._prop == "__special_mc_bb__")
{
new Color(_loc1._targ).setTransform({bb: _loc2});
}
else if (_loc1._prop == "__special_mc_aa__")
{
new Color(_loc1._targ).setTransform({aa: _loc2});
}
else if (_loc1._prop == "__special_mc_ab__")
{
new Color(_loc1._targ).setTransform({ab: _loc2});
} // end else if
if (_loc1._prop == "__special_bst_t__")
{
var extras = _loc1._extras;
var po = _loc3.findPointOnCurve(extras.__special_bst_ix__, extras.__special_bst_iy__, extras.__special_bst_cx__, extras.__special_bst_cy__, extras.__special_bst_dx__, extras.__special_bst_dy__, _loc2);
if (_loc1._extras.mustRound)
{
_loc1._targ._x = Math.round(po.x);
_loc1._targ._y = Math.round(po.y);
}
else
{
_loc1._targ._x = po.x;
_loc1._targ._y = po.y;
} // end if
} // end else if
if (typeof(_loc1._targ) != "movieclip" && _loc1._prop == "__special_text_b__")
{
_loc1._targ.textColor = (_loc1._targ.__special_text_r__ << 16) + (_loc1._targ.__special_text_g__ <<

+ _loc1._targ.__special_text_b__;
} // end if
if (_loc1._prop == "__special_sound_volume__")
{
_loc1._targ.setVolume(_loc2);
} // end if
if (_loc1._prop == "__special_sound_pan__")
{
_loc1._targ.setPan(_loc2);
} // end if
if (_loc1._prop == "__special_blur_x__")
{
_loc3.$setFilterProperty(_loc1._targ, "blur_blurX", _loc2, _loc1._extras);
} // end if
if (_loc1._prop == "__special_blur_y__")
{
_loc3.$setFilterProperty(_loc1._targ, "blur_blurY", _loc2, _loc1._extras);
} // end if
if (_loc1._prop == "__special_glow_color__")
{
_loc3.$setFilterProperty(_loc1._targ, "glow_color", _loc3.findTweenColor(_loc1, tTime), _loc1._extras);
} // end if
if (_loc1._prop == "__special_glow_alpha__")
{
_loc3.$setFilterProperty(_loc1._targ, "glow_alpha", _loc2, _loc1._extras);
} // end if
if (_loc1._prop == "__special_glow_blurX__")
{
_loc3.$setFilterProperty(_loc1._targ, "glow_blurX", _loc2, _loc1._extras);
} // end if
if (_loc1._prop == "__special_glow_blurY__")
{
_loc3.$setFilterProperty(_loc1._targ, "glow_blurY", _loc2, _loc1._extras);
} // end if
if (_loc1._prop == "__special_glow_strength__")
{
_loc3.$setFilterProperty(_loc1._targ, "glow_strength", _loc2, _loc1._extras);
} // end if
if (_loc1._prop == "__special_bevel_distance__")
{
_loc3.$setFilterProperty(_loc1._targ, "bevel_distance", _loc2, _loc1._extras);
} // end if
if (_loc1._prop == "__special_bevel_angle__")
{
_loc3.$setFilterProperty(_loc1._targ, "bevel_angle", _loc2, _loc1._extras);
} // end if
if (_loc1._prop == "__special_bevel_highlightColor__")
{
_loc3.$setFilterProperty(_loc1._targ, "bevel_highlightColor", _loc3.findTweenColor(_loc1, tTime), _loc1._extras);
} // end if
if (_loc1._prop == "__special_bevel_highlightAlpha__")
{
_loc3.$setFilterProperty(_loc1._targ, "bevel_highlightAlpha", _loc2, _loc1._extras);
} // end if
if (_loc1._prop == "__special_bevel_shadowColor__")
{
_loc3.$setFilterProperty(_loc1._targ, "bevel_shadowColor", _loc3.findTweenColor(_loc1, tTime), _loc1._extras);
} // end if
if (_loc1._prop == "__special_bevel_shadowAlpha__")
{
_loc3.$setFilterProperty(_loc1._targ, "bevel_shadowAlpha", _loc2, _loc1._extras);
} // end if
if (_loc1._prop == "__special_bevel_blurX__")
{
_loc3.$setFilterProperty(_loc1._targ, "bevel_blurX", _loc2, _loc1._extras);
} // end if
if (_loc1._prop == "__special_bevel_blurY__")
{
_loc3.$setFilterProperty(_loc1._targ, "bevel_blurY", _loc2, _loc1._extras);
} // end if
if (_loc1._prop == "__special_bevel_strength__")
{
_loc3.$setFilterProperty(_loc1._targ, "bevel_strength", _loc2, _loc1._extras);
} // end if
if (_loc1._targ.onTweenUpdate != undefined)
{
_loc1._targ.onTweenUpdate(_loc1._prop);
} // end if
if (endTime <= tTime)
{
if (_loc1._targ.onTweenComplete != undefined)
{
_loc1._targ.onTweenComplete(_loc1._prop);
} // end if
_loc3.$stopTween(_loc1._targ, [_loc1._prop], false);
--i;
if (_loc1._callback != undefined)
{
if (_loc3.backwardCallbackTweening)
{
var childMC = _loc1._targ.createEmptyMovieClip("__child__", 122344);
_loc1._callback.apply(childMC, null);
childMC.removeMovieClip();
}
else
{
_loc1._callback.apply(_loc1._targ, null);
} // end if
} // end if
} // end else if
} // end else if
++i;
} // end while
if (this.$_tweenPropList.length == 0)
{
_loc3.$removeTweenController();
} // end if
};
ASSetPropFlags(_global, "$updateTween", 1, 0);
_global.$stopTween = function (mtarget, props, wipeFuture)
{
var _loc1 = mtarget;
var _loc2 = _root.__tweenController__.$_tweenPropList;
var _prop;
for (var pti in _loc2)
{
_prop = _loc2[pti]._prop;
for (var _loc3 = 0; _loc3 < props.length || _loc3 < 1 && props == undefined; ++_loc3)
{
if (_loc2[pti]._targ == _loc1 && (_prop == props[_loc3] || props == undefined) && (wipeFuture || _loc2[pti]._timeDest + _loc2[pti]._delay * 1000 <= getTimer()))
{
switch (_prop)
{
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 _loc1[_prop];
break;
}
case "__special_text_b__":
{
delete _loc1.__special_text_r__;
delete _loc1.__special_text_g__;
delete _loc1.__special_text_b__;
break;
}
} // End of switch
_loc2.splice(pti, 1);
} // end if
} // end of for
} // end of for...in
if (props == undefined)
{
delete _loc1.$_tweenCount;
}
else
{
_loc1.$_tweenCount = 0;
for (var pti in _loc2)
{
if (_loc2[pti]._targ == _loc1)
{
++_loc1.$_tweenCount;
} // end if
} // end of for...in
if (_loc1.$_tweenCount == 0)
{
delete _loc1.$_tweenCount;
} // end if
} // end else if
if (_loc2.length == 0)
{
_global.$removeTweenController();
} // end if
};
ASSetPropFlags(_global, "$stopTween", 1, 0);
_global.$setFilterProperty = function (mtarget, propName, propValue, extras)
{
var _loc2 = extras;
var _loc1;
var applied = false;
var _loc3 = [];
for (var _loc1 = 0; _loc1 < mtarget.filters.length; ++_loc1)
{
_loc3.push(mtarget.filters[_loc1]);
} // end of for
if (propName.substr(0, 5) == "blur_")
{
for (var _loc1 = 0; _loc1 < mtarget.filters.length; ++_loc1)
{
if (_loc3[_loc1] instanceof flash.filters.BlurFilter)
{
_loc3[_loc1][propName.substr(5)] = propValue;
if (_loc2.__special_blur_quality__ != undefined)
{
_loc3[_loc1].quality = _loc2.__special_blur_quality__;
} // end if
applied = true;
break;
} // end if
} // end of for
if (!applied)
{
var myFilter;
var quality = _loc2.__special_blur_quality__ == undefined ? (2) : (_loc2.__special_blur_quality__);
if (propName == "blur_blurX")
{
myFilter = new flash.filters.BlurFilter(propValue, 0, quality);
} // end if
if (propName == "blur_blurY")
{
myFilter = new flash.filters.BlurFilter(0, propValue, quality);
} // end if
_loc3.push(myFilter);
} // end if
}
else if (propName.substr(0, 5) == "glow_")
{
for (var _loc1 = 0; _loc1 < mtarget.filters.length; ++_loc1)
{
if (_loc3[_loc1] instanceof flash.filters.GlowFilter)
{
_loc3[_loc1][propName.substr(5)] = propValue;
if (_loc2.__special_glow_quality__ != undefined)
{
_loc3[_loc1].quality = _loc2.__special_glow_quality__;
} // end if
if (_loc2.__special_glow_inner__ != undefined)
{
_loc3[_loc1].inner = _loc2.__special_glow_inner__;
} // end if
if (_loc2.__special_glow_knockout__ != undefined)
{
_loc3[_loc1].knockout = _loc2.__special_glow_knockout__;
} // end if
applied = true;
break;
} // end if
} // end of for
if (!applied)
{
var myFilter;
var quality = _loc2.__special_glow_quality__ == undefined ? (2) : (_loc2.__special_glow_quality__);
var inner = _loc2.__special_glow_inner__ == undefined ? (false) : (_loc2.__special_glow_inner__);
var knockout = _loc2.__special_glow_knockout__ == undefined ? (false) : (_loc2.__special_glow_knockout__);
if (propName == "glow_color")
{
myFilter = new flash.filters.GlowFilter(propValue, 1, 0, 0, 1, quality, inner, knockout);
} // end if
if (propName == "glow_alpha")
{
myFilter = new flash.filters.GlowFilter(16777215, propValue, 0, 0, 1, quality, inner, knockout);
} // end if
if (propName == "glow_blurX")
{
myFilter = new flash.filters.GlowFilter(16777215, 1, propValue, 0, 1, quality, inner, knockout);
} // end if
if (propName == "glow_blurY")
{
myFilter = new flash.filters.GlowFilter(16777215, 1, 0, propValue, 1, quality, inner, knockout);
} // end if
if (propName == "glow_strength")
{
myFilter = new flash.filters.GlowFilter(16777215, 1, 0, 0, propValue, quality, inner, knockout);
} // end if
_loc3.push(myFilter);
} // end if
}
else if (propName.substr(0, 6) == "bevel_")
{
for (var _loc1 = 0; _loc1 < mtarget.filters.length; ++_loc1)
{
if (_loc3[_loc1] instanceof flash.filters.BevelFilter)
{
_loc3[_loc1][propName.substr(6)] = propValue;
if (_loc2.__special_bevel_quality__ != undefined)
{
_loc3[_loc1].quality = _loc2.__special_bevel_quality__;
} // end if
if (_loc2.__special_bevel_type__ != undefined)
{
_loc3[_loc1].inner = _loc2.__special_bevel_type__;
} // end if
if (_loc2.__special_bevel_knockout__ != undefined)
{
_loc3[_loc1].knockout = _loc2.__special_bevel_knockout__;
} // end if
applied = true;
break;
} // end if
} // end of for
if (!applied)
{
var myFilter;
var quality = _loc2.__special_bevel_quality__ == undefined ? (2) : (_loc2.__special_bevel_quality__);
var type = _loc2.__special_bevel_type__ == undefined ? ("inner") : (_loc2.__special_bevel_type__);
var knockout = _loc2.__special_bevel_knockout__ == undefined ? (false) : (_loc2.__special_bevel_knockout__);
if (propName == "bevel_distance")
{
myFilter = new flash.filters.BevelFilter(propValue, 45, 16777215, 1, 0, 1, 0, 0, 1, quality, type, knockout);
} // end if
if (propName == "bevel_angle")
{
myFilter = new flash.filters.BevelFilter(0, propValue, 16777215, 1, 0, 1, 0, 0, 1, quality, type, knockout);
} // end if
if (propName == "bevel_highlightColor")
{
myFilter = new flash.filters.BevelFilter(0, 45, propValue, 1, 0, 1, 0, 0, 1, quality, type, knockout);
} // end if
if (propName == "bevel_highlightAlpha")
{
myFilter = new flash.filters.BevelFilter(0, 45, 16777215, propValue, 0, 1, 0, 0, 1, quality, type, knockout);
} // end if
if (propName == "bevel_shadowColor")
{
myFilter = new flash.filters.BevelFilter(0, 45, 16777215, 1, propValue, 1, 0, 0, 1, quality, type, knockout);
} // end if
if (propName == "bevel_shadowAlpha")
{
myFilter = new flash.filters.BevelFilter(0, 45, 16777215, 1, 0, propValue, 0, 0, 1, quality, type, knockout);
} // end if
if (propName == "bevel_blurX")
{
myFilter = new flash.filters.BevelFilter(0, 45, 16777215, 1, 0, 1, propValue, 0, 1, quality, type, knockout);
} // end if
if (propName == "bevel_blurY")
{
myFilter = new flash.filters.BevelFilter(0, 45, 16777215, 1, 0, 1, 0, propValue, 1, quality, type, knockout);
} // end if
if (propName == "bevel_strength")
{
myFilter = new flash.filters.BevelFilter(0, 45, 16777215, 1, 0, 1, 0, 0, propValue, quality, type, knockout);
} // end if
_loc3.push(myFilter);
} // end if
}
else
{
return;
} // end else if
mtarget.filters = _loc3;
};
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)
{
var _loc2 = arguments;
var _loc3 = props;
if (typeof(_loc3) == "string")
{
_loc3 = [_loc3];
} // end if
if (_loc3 != undefined)
{
for (var _loc1 = 1; _loc1 < _loc2.length; ++_loc1)
{
_loc3.push(_loc2[_loc1]);
} // end of for
} // end if
_global.$stopTween(this, _loc3, 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)
{
var _loc1 = props;
if (_loc1 != undefined)
{
if (typeof(_loc1) == "string")
{
_loc1 = [_loc1];
} // end if
var i = 1;
while (i < Arguments.length)
{
_loc1.push(Arguments[i]);
++i;
} // end while
} // end if
var _loc2 = _root.__tweenController__.$_tweenPropList;
var _loc3;
for (var pti in _loc2)
{
if (_loc2[pti]._targ == this && !_loc2[pti]._isPaused)
{
if (_loc1 != undefined)
{
_loc3 = false;
for (var i in _loc1)
{
if (_loc1[i] == _loc2[pti]._prop)
{
_loc3 = true;
break;
} // end if
} // end of for...in
} // end if
if (_loc1 == undefined || _loc3)
{
_loc2[pti]._isPaused = true;
_loc2[pti]._timePaused = _root.__tweenController__.$_tTime;
} // end if
} // end if
} // end of for...in
};
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)
{
var _loc2 = props;
if (_loc2 != undefined)
{
if (typeof(_loc2) == "string")
{
_loc2 = [_loc2];
} // end if
var i = 1;
while (i < Arguments.length)
{
_loc2.push(Arguments[i]);
++i;
} // end while
} // end if
var _loc1 = _root.__tweenController__.$_tweenPropList;
var _loc3;
var offsetTime;
for (var pti in _loc1)
{
if (_loc1[pti]._targ == this && _loc1[pti]._isPaused)
{
if (_loc2 != undefined)
{
_loc3 = false;
for (var i in _loc2)
{
if (_loc2[i] == _loc1[pti]._prop)
{
_loc3 = true;
break;
} // end if
} // end of for...in
} // end if
if (_loc2 == undefined || _loc3)
{
_loc1[pti]._isPaused = false;
offsetTime = _root.__tweenController__.$_tTime - _loc1[pti]._timePaused;
_loc1[pti]._timeStart = _loc1[pti]._timeStart + offsetTime;
_loc1[pti]._timeDest = _loc1[pti]._timeDest + offsetTime;
_loc1[pti]._timePaused = 0;
} // end if
} // end if
} // end of for...in
};
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 _loc1 = new Object();
_loc1.__special_bst_ix__ = undefined;
_loc1.__special_bst_iy__ = undefined;
_loc1.__special_bst_cx__ = cpoint_x;
_loc1.__special_bst_cy__ = cpoint_y;
_loc1.__special_bst_dx__ = propDest_x;
_loc1.__special_bst_dy__ = propDest_y;
_global.$addTween(this, "__special_bst_t__", 1, timeSeconds, animType, delay, callback, extra1, extra2, _loc1);
};
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 _loc1 = new Object();
_loc1.__special_bst_ix__ = undefined;
_loc1.__special_bst_iy__ = undefined;
_loc1.__special_bst_cx__ = cpoint_x;
_loc1.__special_bst_cy__ = cpoint_y;
_loc1.__special_bst_dx__ = propDest_x;
_loc1.__special_bst_dy__ = propDest_y;
_loc1.mustRound = true;
_global.$addTween(this, "__special_bst_t__", 1, timeSeconds, animType, delay, callback, extra1, extra2, _loc1);
};
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)
{
var _loc1 = propDest_color;
if (_loc1 == null)
{
this.colorTransformTo(100, 0, 100, 0, 100, 0, undefined, undefined, timeSeconds, animType, delay, callback, extra1, extra2);
return;
} // end if
var _loc2 = _loc1 >> 16;
var new_g = (_loc1 & 65280) >> 8;
var _loc3 = _loc1 & 255;
this.colorTransformTo(0, _loc2, 0, new_g, 0, _loc3, 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 _loc3 = propDest_color;
var _loc1 = _loc3 >> 16;
var new_g = (_loc3 & 65280) >> 8;
var _loc2 = _loc3 & 255;
_global.$addTween(this, ["__special_text_r__", "__special_text_g__", "__special_text_b__"], [_loc1, new_g, _loc2], timeSeconds, animType, delay, callback, extra1, extra2);
};
ASSetPropFlags(TextField.prototype, "colorTo", 1, 0);
MovieClip.prototype.colorTransformTo = function ()
{
var _loc1 = arguments;
if (typeof(_loc1[0]) == "object" && _loc1[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__"], [_loc1[0].ra, _loc1[0].rb, _loc1[0].ga, _loc1[0].gb, _loc1[0].ba, _loc1[0].bb, _loc1[0].aa, _loc1[0].ab], _loc1[1], _loc1[2], _loc1[3], _loc1[4], _loc1[5], _loc1[6]);
return;
} // end if
_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__"], [_loc1[0], _loc1[1], _loc1[2], _loc1[3], _loc1[4], _loc1[5], _loc1[6], _loc1[7]], _loc1[8], _loc1[9], _loc1[10], _loc1[11], _loc1[12], _loc1[13]);
};
ASSetPropFlags(MovieClip.prototype, "colorTransformTo", 1, 0);
MovieClip.prototype.blurTo = TextField.prototype.blurTo = function ()
{
var _loc1 = arguments;
if (typeof(_loc1[0]) == "object" && _loc1[0] != undefined)
{
_global.$addTween(this, ["__special_blur_x__", "__special_blur_y__"], [_loc1[0].blurX, _loc1[0].blurY], _loc1[1], _loc1[2], _loc1[3], _loc1[4], _loc1[5], _loc1[6], {__special_blur_quality__: _loc1[0].quality});
return;
} // end if
_global.$addTween(this, ["__special_blur_x__", "__special_blur_y__"], [_loc1[0], _loc1[0]], _loc1[2], _loc1[3], _loc1[4], _loc1[5], _loc1[6], _loc1[7], {__special_blur_quality__: _loc1[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 ()
{
var _loc1 = arguments;
if (typeof(_loc1[0]) == "object" && _loc1[0] != undefined)
{
_global.$addTween(this, ["__special_glow_color__", "__special_glow_alpha__", "__special_glow_blurX__", "__special_glow_blurY__", "__special_glow_strength__"], [_loc1[0].color, _loc1[0].alpha, _loc1[0].blurX, _loc1[0].blurY, _loc1[0].strength], _loc1[1], _loc1[2], _loc1[3], _loc1[4], _loc1[5], _loc1[6], {__special_glow_quality__: _loc1[0].quality, __special_glow_inner__: _loc1[0].inner, __special_glow_knockout__: _loc1[0].knockout});
return;
} // end if
_global.$addTween(this, ["__special_glow_color__", "__special_glow_alpha__", "__special_glow_blurX__", "__special_glow_blurY__", "__special_glow_strength__"], [_loc1[0], _loc1[1], _loc1[2], _loc1[2], _loc1[3]], _loc1[7], _loc1[8], _loc1[9], _loc1[10], _loc1[11], _loc1[12], {__special_glow_quality__: _loc1[4], __special_glow_inner__: _loc1[5], __special_glow_knockout__: _loc1[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 ()
{
var _loc1 = arguments;
if (typeof(_loc1[0]) == "object" && _loc1[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__"], [_loc1[0].distance, _loc1[0].angle, _loc1[0].highlightColor, _loc1[0].highlightAlpha * 100, _loc1[0].shadowColor, _loc1[0].shadowAlpha * 100, _loc1[0].blurX, _loc1[0].blurY, _loc1[0].strength], _loc1[1], _loc1[2], _loc1[3], _loc1[4], _loc1[5], _loc1[6], {__special_bevel_quality__: _loc1[0].quality, __special_bevel_type__: _loc1[0].type, __special_bevel_knockout__: _loc1[0].knockout});
return;
} // end if
_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__"], [_loc1[0], _loc1[1], _loc1[2], _loc1[3], _loc1[4], _loc1[5], _loc1[6], _loc1[6], _loc1[7]], _loc1[11], _loc1[12], _loc1[13], _loc1[14], _loc1[15], _loc1[16], {__special_bevel_quality__: _loc1[8], __special_bevel_type__: _loc1[9], __special_bevel_knockout__: _loc1[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)
{
var _loc1 = t;
var _loc2 = p1y;
var _loc3 = p1x;
return ({x: _loc3 + _loc1 * (2 * (1 - _loc1) * (cx - _loc3) + _loc1 * (p2x - _loc3)), y: _loc2 + _loc1 * (2 * (1 - _loc1) * (cy - _loc2) + _loc1 * (p2y - _loc2))});
};
ASSetPropFlags(_global, "findPointOnCurve", 1, 0);
_global.findTweenColor = function (objProp, tTime)
{
var _loc1 = objProp;
var rrs = _loc1._propStart >> 16;
var _loc2 = _loc1._propDest >> 16;
var _loc3 = _loc1._propStart >> 8 & 255;
var ggd = _loc1._propDest >> 8 & 255;
var bbs = _loc1._propStart & 255;
var bbd = _loc1._propDest & 255;
var newR = Math.round(_global.findTweenValue(rrs, _loc2, _loc1._timeStart, tTime - _loc1._delay * 1000, _loc1._timeDest, _loc1._animType, _loc1._extra1, _loc1._extra2));
var newG = Math.round(_global.findTweenValue(_loc3, ggd, _loc1._timeStart, tTime - _loc1._delay * 1000, _loc1._timeDest, _l