Frame 1
this.onEnterFrame = function () {
if (getBytesLoaded() == getBytesTotal()) {
gotoAndStop (2);
delete this.onEnterFrame;
}
};
Frame 2
function lightsUp() {
light1 = new buTween(mcLights.light1);
light2 = new buTween(mcLights.light2);
light3 = new buTween(mcLights.light3);
light4 = new buTween(mcLights.light4);
light1.tween("_rotation", -20, 1);
light2.tween("_rotation", 20, 1, null, 0.1);
light3.tween("_rotation", 23, 1, null, 0.3);
light4.tween("_rotation", -23, 1, null, null, danceBegin);
}
function lightsTo() {
light1.tween("_rotation", 10, 1.6, "easeinoutcubic", null, lightsBack);
light2.tween("_rotation", -10, 1.1, "easeinoutcubic");
light3.tween("_rotation", -23, 1.8, "easeinoutcubic");
light4.tween("_rotation", 26, 1.7, "easeinoutcubic");
}
function lightsBack() {
light1.tween("_rotation", -40, 1.5, "easeinoutcubic", null, lightsTo);
light2.tween("_rotation", 40, 1, "easeinoutcubic");
light3.tween("_rotation", 23, 1.3, "easeinoutcubic");
light4.tween("_rotation", -26, 1.4, "easeinoutcubic");
}
function lightsDown() {
light1.tween("_rotation", -40, 2, "easeinoutcubic");
light1.tween("_alpha", 50, 2, "easeinoutcubic");
light2.tween("_rotation", 40, 1.8, "easeinoutcubic");
light2.tween("_alpha", 50, 2, "easeinoutcubic");
light3.tween("_rotation", 23, 2, "easeinoutcubic");
light3.tween("_alpha", 50, 2, "easeinoutcubic");
light4.tween("_rotation", -26, 2, "easeinoutcubic");
light4.tween("_alpha", 50, 2, "easeinoutcubic");
}
function textSlide() {
slide1 = new buTween(mcBubble);
slide1.tween("_alpha", 100, 0.75);
}
function danceBegin() {
i = 0;
while (i <= 5) {
mcMinipops["mcG" + i].gotoAndPlay(2);
i++;
}
mcAmps.mcAmpT.gotoAndPlay(2);
mcAmps.mcAmpS.gotoAndPlay(2);
mcAmps.mcAmpC.gotoAndPlay(2);
}
function danceEnd() {
mcAmps.mcAmpT.gotoAndStop(1);
mcAmps.mcAmpS.gotoAndStop(1);
mcAmps.mcAmpC.gotoAndStop(1);
i = 0;
while (i <= 4) {
mcLights["light" + i].gotoAndStop(1);
i++;
}
slide1 = new buTween(mcBubble);
slide1.tween("_alpha", 100, 0.75);
}
function ctaFade() {
cta = new buTween(mcCTA);
cta.tween("_alpha", 100, 3);
}
stop();
mcFade._alpha = 0;
mcCTA._alpha = 0;
mcBubble._alpha = 0;
fade = new buTween(mcFade);
fade.tween("_alpha", 100, 4);
var ctaPath = mcBubble.mcCTA.btnCTA;
ctaPath.onPress = function () {
mcBubble.mcCTA.gotoAndStop(2);
};
ctaPath.onRelease = (cta.onReleaseOutside = function () {
mcBubble.mcCTA.gotoAndStop(1);
getURL ("javascript:FADclicks(1)");
});
var clsPath = mcAmps.mcAmpC.btnClose;
clsPath.onRollOver = function () {
mcAmps.mcAmpC.mcAmpC_x.gotoAndStop(2);
};
clsPath.onRollOut = function () {
mcAmps.mcAmpC.mcAmpC_x.gotoAndStop(1);
};
clsPath.onPress = function () {
mcAmps.mcAmpC.mcAmpC_x.gotoAndStop(3);
};
clsPath.onRelease = function () {
mcAmps.mcAmpC.mcAmpC_x.gotoAndStop(1);
getURL ("javascript:done1ST()");
};
Symbol 143 MovieClip [__Packages.buTween] Frame 0
class buTween
{
var clip;
function buTween (mcRef) {
clip = mcRef;
}
function tween(prop, propDest, timeSeconds, animType, delay, callback, extra1, extra2) {
var _local3 = this;
if (timeSeconds < 0.001) {
timeSeconds = 0.5;
}
if ((animType == undefined) || (animType == "")) {
animType = "easeOutExpo";
}
if (delay == undefined) {
delay = 0;
}
if (typeof(prop) == "string") {
var properties = [prop];
var oldProperties = [_local3.clip[prop]];
var newProperties = [propDest];
} else {
var properties = [];
var oldProperties = [];
var newProperties = [];
for (var i in prop) {
oldProperties.push(_local3.clip[prop[i]]);
}
for (var i in prop) {
properties.push(prop[i]);
}
for (var i in propDest) {
newProperties.push(propDest[i]);
}
}
var $_callback_assigned = false;
if (_root.__tweenController__ == undefined) {
var tweenHolder = _root.createEmptyMovieClip("__tweenController__", 123432);
tweenHolder.$_tweenPropList = new Array();
tweenHolder.classRef = _local3;
tweenHolder.onEnterFrame = function () {
var _local3 = this;
var tTime = getTimer();
var _local2 = 0;
while (_local2 < _local3.$_tweenPropList.length) {
var _local1 = _local3.$_tweenPropList[_local2];
if ((_local1._timeStart + (_local1._delay * 1000)) <= tTime) {
if ((_local1._timeDest + (_local1._delay * 1000)) <= tTime) {
_local1._targ[_local1._prop] = _local1._propDest;
_local3.$_tweenPropList.splice(_local2, 1);
_local2--;
_local1._targ.$_tweenCount--;
if (_local1._targ.$_tweenCount == 0) {
delete _local1._targ.$_tweenCount;
}
if (_local1._callback != undefined) {
if (_global.backwardCallbackTweening) {
var childMC = _local1._targ.createEmptyMovieClip("__child__", 122344);
_local1._callback.apply(childMC, null);
childMC.removeMovieClip();
} else {
_local1._callback.apply(_local1._targ, null);
}
}
if (_local3.$_tweenPropList.length == 0) {
_local3.removeMovieClip();
}
} else {
if (_local1._propStart == undefined) {
_local1._propStart = _local1._targ[_local1._prop];
}
_local1._targ[_local1._prop] = _local3.classRef.findTweenValue(_local1._propStart, _local1._propDest, _local1._timeStart, tTime - (_local1._delay * 1000), _local1._timeDest, _local1._animType, _local1._extra1, _local1._extra2);
if ((typeof(_local1._targ) != "movieclip") && (_local1._prop == "__special_text_b__")) {
_local1._targ.textColor = ((_local1._targ.__special_text_r__ << 16) + (_local1._targ.__special_text_g__ << 8)) + _local1._targ.__special_text_b__;
}
}
}
_local2++;
}
};
}
var tweenPropList = _root.__tweenController__.$_tweenPropList;
var tTime = getTimer();
for (var i in oldProperties) {
if ((newProperties[i] != undefined) && (!_local3.clip.$_isTweenLocked)) {
if (_local3.clip.$_tweenCount > 0) {
var _local2 = 0;
while (_local2 < tweenPropList.length) {
if ((tweenPropList[_local2]._targ == _local3.clip) && (tweenPropList[_local2]._prop == properties[i])) {
if ((tTime + (delay * 1000)) < tweenPropList[_local2]._timeDest) {
tweenPropList.splice(_local2, 1);
_local2--;
_local3.clip.$_tweenCount--;
}
}
_local2++;
}
}
tweenPropList.push({_prop:properties[i], _targ:_local3.clip, _propStart:undefined, _propDest:newProperties[i], _timeStart:tTime, _timeDest:tTime + (timeSeconds * 1000), _animType:animType, _extra1:extra1, _extra2:extra2, _delay:delay, _callback:($_callback_assigned ? undefined : (callback))});
_local3.clip.$_tweenCount = ((_local3.clip.$_tweenCount > 0) ? (_local3.clip.$_tweenCount + 1) : 1);
$_callback_assigned = true;
}
}
}
function lockTween() {
clip.$_isTweenLocked = true;
}
function unlockTween() {
delete clip.$_isTweenLocked;
}
function getTweens() {
return(clip.$_tweenCount);
}
function isTweening() {
return(((clip.$_tweenCount > 0) ? true : false));
}
function stopTween(props) {
var _local2 = this;
var _local3 = props;
var _local1 = _root.__tweenController__.$_tweenPropList;
switch (typeof(_local3)) {
case "string" :
_local3 = [_local3];
case "object" :
for (var i in _local3) {
for (var pti in _local1) {
if ((_local1[pti]._targ == _local2.clip) && (_local1[pti]._prop == _local3[i])) {
_local1.splice(pti, 1);
}
}
}
_local2.clip.$_tweenCount = 0;
for (var pti in _local1) {
if (_local1[pti]._targ == _local2.clip) {
_local2.clip.$_tweenCount++;
}
}
if (_local2.clip.$_tweenCount == 0) {
delete _local2.clip.$_tweenCount;
}
break;
default :
for (var pti in _local1) {
if (_local1[pti]._targ == _local2.clip) {
_local1.splice(pti, 1);
}
}
delete _local2.clip.$_tweenCount;
}
if (_local1.length == 0) {
_root.__tweenController__.removeMovieClip();
_local2.clip.__tweenController_ADVhelper__.removeMovieClip();
}
}
function scaleTo(propDest_scale, timeSeconds, animType, delay, callback, extra1, extra2) {
tween(["_xscale", "_yscale"], [propDest_scale, propDest_scale], timeSeconds, animType, delay, callback, extra1, extra2);
}
function slideTo(propDest_x, propDest_y, timeSeconds, animType, delay, callback, extra1, extra2) {
tween(["_x", "_y"], [propDest_x, propDest_y], timeSeconds, animType, delay, callback, extra1, extra2);
}
function findTweenValue(_propStart, _propDest, _timeStart, _timeNow, _timeDest, _animType, _extra1, _extra2) {
var _local1 = _timeNow - _timeStart;
var _local3 = _propStart;
var _local2 = _propDest - _propStart;
var d = (_timeDest - _timeStart);
var a = _extra1;
var p = _extra2;
var s = _extra1;
switch (_animType.toLowerCase()) {
case "easeoutexpo" :
return(((_local1 == d) ? (_local3 + _local2) : ((_local2 * ((-Math.pow(2, (-10 * _local1) / d)) + 1)) + _local3)));
case "easeoutelastic" :
if (a == undefined) {
a = 0;
}
if (_local1 == 0) {
return(_local3);
}
_local1 = _local1 / d;
if (_local1 == 1) {
return(_local3 + _local2);
}
if (!p) {
p = d * 0.3;
}
if (a < Math.abs(_local2)) {
a = _local2;
var s = (p / 4);
} else {
var s = ((p / (Math.PI*2)) * Math.asin(_local2 / a));
}
return((((a * Math.pow(2, -10 * _local1)) * Math.sin((((_local1 * d) - s) * (Math.PI*2)) / p)) + _local2) + _local3);
case "linear" :
return(((_local2 * _local1) / d) + _local3);
case "easeinexpo" :
return(((_local1 == 0) ? (_local3) : ((_local2 * Math.pow(2, 10 * ((_local1 / d) - 1))) + _local3)));
case "easeoutbounce" :
_local1 = _local1 / d;
if (_local1 < 0.363636363636364) {
return((_local2 * ((7.5625 * _local1) * _local1)) + _local3);
}
if (_local1 < 0.727272727272727) {
_local1 = _local1 - 0.545454545454545;
return((_local2 * (((7.5625 * _local1) * _local1) + 0.75)) + _local3);
}
if (_local1 < 0.909090909090909) {
_local1 = _local1 - 0.818181818181818;
return((_local2 * (((7.5625 * _local1) * _local1) + 0.9375)) + _local3);
}
_local1 = _local1 - 0.954545454545455;
return((_local2 * (((7.5625 * _local1) * _local1) + 0.984375)) + _local3);
case "easeinoutexpo" :
if (_local1 == 0) {
return(_local3);
}
if (_local1 == d) {
return(_local3 + _local2);
}
_local1 = _local1 / (d / 2);
if (_local1 < 1) {
return(((_local2 / 2) * Math.pow(2, 10 * (_local1 - 1))) + _local3);
}
_local1--;
return(((_local2 / 2) * ((-Math.pow(2, -10 * _local1)) + 2)) + _local3);
case "easeinoutcubic" :
_local1 = _local1 / (d / 2);
if (_local1 < 1) {
return(((((_local2 / 2) * _local1) * _local1) * _local1) + _local3);
}
_local1 = _local1 - 2;
return(((_local2 / 2) * (((_local1 * _local1) * _local1) + 2)) + _local3);
case "easeoutelastic" :
if (a == undefined) {
a = 0;
}
if (_local1 == 0) {
return(_local3);
}
_local1 = _local1 / d;
if (_local1 == 1) {
return(_local3 + _local2);
}
if (!p) {
p = d * 0.3;
}
if (a < Math.abs(_local2)) {
a = _local2;
var s = (p / 4);
} else {
var s = ((p / (Math.PI*2)) * Math.asin(_local2 / a));
}
return((((a * Math.pow(2, -10 * _local1)) * Math.sin((((_local1 * d) - s) * (Math.PI*2)) / p)) + _local2) + _local3);
}
return(undefined);
}
}
Symbol 144 MovieClip [__Packages.adTween] Frame 0
class adTween
{
var clip;
function adTween (mcRef) {
clip = mcRef;
}
function tween(prop, propDest, timeSeconds, animType, delay, callback, extra1, extra2) {
var _local3 = this;
if (timeSeconds < 0.001) {
timeSeconds = 0.5;
}
if ((animType == undefined) || (animType == "")) {
animType = "easeOutExpo";
}
if (delay == undefined) {
delay = 0;
}
if (typeof(prop) == "string") {
var properties = [prop];
var oldProperties = [_local3.clip[prop]];
var newProperties = [propDest];
} else {
var properties = [];
var oldProperties = [];
var newProperties = [];
for (var i in prop) {
oldProperties.push(_local3.clip[prop[i]]);
}
for (var i in prop) {
properties.push(prop[i]);
}
for (var i in propDest) {
newProperties.push(propDest[i]);
}
}
var $_callback_assigned = false;
if (_root.__tweenController__ == undefined) {
var tweenHolder = _root.createEmptyMovieClip("__tweenController__", 123432);
tweenHolder.$_tweenPropList = new Array();
tweenHolder.classRef = _local3;
tweenHolder.onEnterFrame = function () {
var _local3 = this;
var tTime = getTimer();
var _local2 = 0;
while (_local2 < _local3.$_tweenPropList.length) {
var _local1 = _local3.$_tweenPropList[_local2];
if ((_local1._timeStart + (_local1._delay * 1000)) <= tTime) {
if ((_local1._timeDest + (_local1._delay * 1000)) <= tTime) {
_local1._targ[_local1._prop] = _local1._propDest;
_local3.$_tweenPropList.splice(_local2, 1);
_local2--;
_local1._targ.$_tweenCount--;
if (_local1._targ.$_tweenCount == 0) {
delete _local1._targ.$_tweenCount;
}
if (_local1._callback != undefined) {
if (_global.backwardCallbackTweening) {
var childMC = _local1._targ.createEmptyMovieClip("__child__", 122344);
_local1._callback.apply(childMC, null);
childMC.removeMovieClip();
} else {
_local1._callback.apply(_local1._targ, null);
}
}
if (_local3.$_tweenPropList.length == 0) {
_local3.removeMovieClip();
}
} else {
if (_local1._propStart == undefined) {
_local1._propStart = _local1._targ[_local1._prop];
}
_local1._targ[_local1._prop] = _local3.classRef.findTweenValue(_local1._propStart, _local1._propDest, _local1._timeStart, tTime - (_local1._delay * 1000), _local1._timeDest, _local1._animType, _local1._extra1, _local1._extra2);
if ((typeof(_local1._targ) != "movieclip") && (_local1._prop == "__special_text_b__")) {
_local1._targ.textColor = ((_local1._targ.__special_text_r__ << 16) + (_local1._targ.__special_text_g__ << 8)) + _local1._targ.__special_text_b__;
}
}
}
_local2++;
}
};
}
var tweenPropList = _root.__tweenController__.$_tweenPropList;
var tTime = getTimer();
for (var i in oldProperties) {
if ((newProperties[i] != undefined) && (!_local3.clip.$_isTweenLocked)) {
if (_local3.clip.$_tweenCount > 0) {
var _local2 = 0;
while (_local2 < tweenPropList.length) {
if ((tweenPropList[_local2]._targ == _local3.clip) && (tweenPropList[_local2]._prop == properties[i])) {
if ((tTime + (delay * 1000)) < tweenPropList[_local2]._timeDest) {
tweenPropList.splice(_local2, 1);
_local2--;
_local3.clip.$_tweenCount--;
}
}
_local2++;
}
}
tweenPropList.push({_prop:properties[i], _targ:_local3.clip, _propStart:undefined, _propDest:newProperties[i], _timeStart:tTime, _timeDest:tTime + (timeSeconds * 1000), _animType:animType, _extra1:extra1, _extra2:extra2, _delay:delay, _callback:($_callback_assigned ? undefined : (callback))});
_local3.clip.$_tweenCount = ((_local3.clip.$_tweenCount > 0) ? (_local3.clip.$_tweenCount + 1) : 1);
$_callback_assigned = true;
}
}
}
function lockTween() {
clip.$_isTweenLocked = true;
}
function unlockTween() {
delete clip.$_isTweenLocked;
}
function getTweens() {
return(clip.$_tweenCount);
}
function isTweening() {
return(((clip.$_tweenCount > 0) ? true : false));
}
function stopTween(props) {
var _local2 = this;
var _local3 = props;
var _local1 = _root.__tweenController__.$_tweenPropList;
switch (typeof(_local3)) {
case "string" :
_local3 = [_local3];
case "object" :
for (var i in _local3) {
for (var pti in _local1) {
if ((_local1[pti]._targ == _local2.clip) && (_local1[pti]._prop == _local3[i])) {
_local1.splice(pti, 1);
}
}
}
_local2.clip.$_tweenCount = 0;
for (var pti in _local1) {
if (_local1[pti]._targ == _local2.clip) {
_local2.clip.$_tweenCount++;
}
}
if (_local2.clip.$_tweenCount == 0) {
delete _local2.clip.$_tweenCount;
}
break;
default :
for (var pti in _local1) {
if (_local1[pti]._targ == _local2.clip) {
_local1.splice(pti, 1);
}
}
delete _local2.clip.$_tweenCount;
}
if (_local1.length == 0) {
_root.__tweenController__.removeMovieClip();
_local2.clip.__tweenController_ADVhelper__.removeMovieClip();
}
}
function scaleTo(propDest_scale, timeSeconds, animType, delay, callback, extra1, extra2) {
tween(["_xscale", "_yscale"], [propDest_scale, propDest_scale], timeSeconds, animType, delay, callback, extra1, extra2);
}
function slideTo(propDest_x, propDest_y, timeSeconds, animType, delay, callback, extra1, extra2) {
tween(["_x", "_y"], [propDest_x, propDest_y], timeSeconds, animType, delay, callback, extra1, extra2);
}
function findTweenValue(_propStart, _propDest, _timeStart, _timeNow, _timeDest, _animType, _extra1, _extra2) {
var _local1 = _timeNow - _timeStart;
var _local3 = _propStart;
var _local2 = _propDest - _propStart;
var d = (_timeDest - _timeStart);
var a = _extra1;
var p = _extra2;
var s = _extra1;
switch (_animType.toLowerCase()) {
case "easeoutexpo" :
return(((_local1 == d) ? (_local3 + _local2) : ((_local2 * ((-Math.pow(2, (-10 * _local1) / d)) + 1)) + _local3)));
case "easeoutquad" :
_local1 = _local1 / d;
return((((-_local2) * _local1) * (_local1 - 2)) + _local3);
case "easeinquad" :
_local1 = _local1 / d;
return(((_local2 * _local1) * _local1) + _local3);
case "easeinoutquad" :
_local1 = _local1 / (d / 2);
if (_local1 < 1) {
return((((_local2 / 2) * _local1) * _local1) + _local3);
}
_local1--;
return((((-_local2) / 2) * ((_local1 * (_local1 - 2)) - 1)) + _local3);
case "easeoutelastic" :
if (a == undefined) {
a = 0;
}
if (_local1 == 0) {
return(_local3);
}
_local1 = _local1 / d;
if (_local1 == 1) {
return(_local3 + _local2);
}
if (!p) {
p = d * 0.3;
}
if (a < Math.abs(_local2)) {
a = _local2;
var s = (p / 4);
} else {
var s = ((p / (Math.PI*2)) * Math.asin(_local2 / a));
}
return((((a * Math.pow(2, -10 * _local1)) * Math.sin((((_local1 * d) - s) * (Math.PI*2)) / p)) + _local2) + _local3);
case "linear" :
return(((_local2 * _local1) / d) + _local3);
case "easeinexpo" :
return(((_local1 == 0) ? (_local3) : ((_local2 * Math.pow(2, 10 * ((_local1 / d) - 1))) + _local3)));
case "easeinbounce" :
return((_local2 - findTweenValue(0, _local2, 0, d - _local1, d, "easeOutBounce")) + _local3);
case "easeoutbounce" :
_local1 = _local1 / d;
if (_local1 < 0.363636363636364) {
return((_local2 * ((7.5625 * _local1) * _local1)) + _local3);
}
if (_local1 < 0.727272727272727) {
_local1 = _local1 - 0.545454545454545;
return((_local2 * (((7.5625 * _local1) * _local1) + 0.75)) + _local3);
}
if (_local1 < 0.909090909090909) {
_local1 = _local1 - 0.818181818181818;
return((_local2 * (((7.5625 * _local1) * _local1) + 0.9375)) + _local3);
}
_local1 = _local1 - 0.954545454545455;
return((_local2 * (((7.5625 * _local1) * _local1) + 0.984375)) + _local3);
}
return(undefined);
}
}
Symbol 7 MovieClip Frame 1
stop();
Symbol 12 MovieClip Frame 1
stop();
Symbol 12 MovieClip Frame 13
gotoAndPlay (2);
Symbol 13 MovieClip Frame 32
stop();
Symbol 19 MovieClip Frame 1
stop();
Symbol 19 MovieClip Frame 10
stop();
Symbol 19 MovieClip Frame 19
stop();
Symbol 19 MovieClip Frame 38
stop();
Symbol 56 MovieClip Frame 1
stop();
Symbol 56 MovieClip Frame 10
redshirt2 = new adTween(redshirt2_mc);
redshirt2.tween(["_x", "_y"], [-82.5, -91.5], 0.75, "easeoutexpo");
blkshirt2 = new adTween(blkshirt2_mc);
blkshirt2.tween(["_x", "_y"], [-78.2, -88.1], 0.75, "easeoutexpo");
greengirl2 = new adTween(greengirl2_mc);
greengirl2.tween(["_x", "_y"], [-193.8, -87.1], 0.75, "easeoutexpo");
redshirt3 = new adTween(redshirt3_mc);
redshirt3.tween(["_x", "_y"], [-15.5, -87.1], 0.75, "easeoutexpo");
whiteskirt2 = new adTween(whiteskirt2_mc);
whiteskirt2.tween(["_x", "_y"], [-15.5, -87.1], 0.75, "easeoutexpo");
sleeveless2 = new adTween(sleeveless2_mc);
sleeveless2.tween(["_x", "_y"], [43.5, -87.1], 0.75, "easeoutexpo");
Symbol 56 MovieClip Frame 30
stop();
Symbol 99 MovieClip Frame 1
stop();
Symbol 99 MovieClip Frame 10
greencoat2 = new adTween(greencoat2_mc);
greencoat2.tween(["_x", "_y"], [-6, -91.5], 0.75, "easeoutexpo");
pinkshirt2 = new adTween(pinkshirt2_mc);
pinkshirt2.tween(["_x", "_y"], [244.7, -91.5], 0.75, "easeoutexpo");
whiteTshirt2 = new adTween(whiteTshirt2_mc);
whiteTshirt2.tween(["_x", "_y"], [-12.7, -91.5], 0.75, "easeoutexpo");
blueDress2 = new adTween(blueDress2_mc);
blueDress2.tween(["_x", "_y"], [81, -91.5], 0.75, "easeoutexpo");
yellowshirt2 = new adTween(yellowshirt2_mc);
yellowshirt2.tween(["_x", "_y"], [365.6, -91.5], 0.75, "easeoutexpo");
quarterT2 = new adTween(quarterT2_mc);
quarterT2.tween(["_x", "_y"], [117, -91.5], 0.75, "easeoutexpo");
blkshirterdlogo2 = new adTween(blkshirterdlogo2_mc);
blkshirterdlogo2.tween(["_x", "_y"], [134, -91.5], 0.75, "easeoutexpo");
Symbol 109 MovieClip Frame 1
stop();
Symbol 109 MovieClip Frame 99
stop();
Symbol 111 MovieClip Frame 1
armspin_mc.gotoAndStop("staticarm");
Symbol 111 MovieClip Frame 15
armspin_mc.gotoAndPlay("spin");
Symbol 111 MovieClip Frame 133
bighair = new AdTween(bighair_mc);
bighair.tween("_alpha", 100, 0.25, "easeoutexpo");
bighair = new AdTween(bighair_mc);
bighair.scaleTo(100, 0.25, "easeoutbounce");
Symbol 127 MovieClip Frame 18
stop();
Symbol 131 MovieClip Frame 41
stop();
Symbol 132 MovieClip Frame 7
Gplayer1_mc.gotoAndStop("static");
Symbol 132 MovieClip Frame 15
Gplayer1_mc.gotoAndPlay("armspin");
Symbol 132 MovieClip Frame 35
leftcrowd_mc._x = 252.6;
leftcrowd_mc._y = 50.8;
rtcrowd_mc._x = 395;
rtcrowd_mc._y = 52;
guitar = new adTween(guitar_mc);
guitar.scaleTo(120, 1, "easeoutelastic");
bigamp_mc.gotoAndPlay("smsparks");
bigamp = new adTween(bigamp_mc);
bigamp.scaleTo(105, 1, "easeoutelastic");
Symbol 132 MovieClip Frame 36
leftcrowd = new adTween(leftcrowd_mc);
leftcrowd.tween("_x", 255.6, 1, "easeoutelastic");
leftcrowd.tween("_y", 53.8, 1, "easeoutelastic");
rtcrowd = new adTween(rtcrowd_mc);
rtcrowd.tween("_x", 391.9, 1, "easeoutelastic");
rtcrowd.tween("_y", 54.9, 1, "easeoutelastic");
Symbol 132 MovieClip Frame 44
bigamp = new adTween(bigamp_mc);
bigamp.scaleTo(100, 0.75, "easeoutexpo");
Symbol 132 MovieClip Frame 50
guitar = new adTween(guitar_mc);
guitar.scaleTo(100, 0.25, "easeoutexpo");
Symbol 132 MovieClip Frame 61
leftcrowd_mc._x = 240;
leftcrowd_mc._y = 52;
rtcrowd_mc._x = 410;
rtcrowd_mc._y = 52;
guitar = new adTween(guitar_mc);
guitar.scaleTo(170, 1, "easeoutelastic");
bigamp_mc.gotoAndPlay("bigsparks");
bigamp = new adTween(bigamp_mc);
bigamp.tween(["_xscale", "_yscale"], [150, 120], 1, "easeoutelastic");
bighair = new adTween(bighair_mc);
bighair.tween("_alpha", 100);
bighair = new adTween(bighair_mc);
bighair.tween(["_xscale", "_yscale"], [120, 110], 1, "easeoutelastic");
Symbol 132 MovieClip Frame 62
leftcrowd = new adTween(leftcrowd_mc);
leftcrowd.tween("_x", 255.6, 1, "easeoutelastic");
leftcrowd.tween("_y", 53.8, 1, "easeoutelastic");
rtcrowd = new adTween(rtcrowd_mc);
rtcrowd.tween("_x", 391.9, 1, "easeoutelastic");
rtcrowd.tween("_y", 54.9, 1, "easeoutelastic");
Symbol 132 MovieClip Frame 69
guitar = new adTween(guitar_mc);
guitar.scaleTo(100, 0.75, "easeoutexpo");
bigamp = new adTween(bigamp_mc);
bigamp.scaleTo(100, 0.75, "easeoutexpo");
Symbol 132 MovieClip Frame 71
bighair = new adTween(bighair_mc);
bighair.scaleTo(1, 1, "easeoutexpo");
Symbol 132 MovieClip Frame 94
leftcrowd_mc.gotoAndPlay("boom");
rtcrowd_mc.gotoAndPlay("boom2");
bigamp_mc.gotoAndPlay("hugesparks");
guitar = new adTween(guitar_mc);
guitar.scaleTo(200, 1, "easeoutelastic");
bighair = new adTween(bighair_mc);
bighair.tween(["_xscale", "_yscale"], [150, 170], 1, "easeoutelastic");
Symbol 132 MovieClip Frame 96
tag = new adTween(tag_mc);
tag.tween("_y", 38, 0.75, "easeoutexpo");
Symbol 132 MovieClip Frame 105
bigamp = new adTween(bigamp_mc);
bigamp.tween(["_x", "_y", "_rotation"], [361.2, -35.5, -10], 1, "easeoutexpo");
Symbol 132 MovieClip Frame 109
Gplayer1_mc.gotoAndStop("static");
Symbol 132 MovieClip Frame 115
bighair = new adTween(bighair_mc);
bighair.scaleTo(1, 0.1, "easeoutexpo");
Symbol 132 MovieClip Frame 133
tag = new adTween(tag_mc);
tag.tween("_alpha", 0, 0.5, "easeoutexpo");
Symbol 132 MovieClip Frame 140
_parent.textSlide();
Symbol 132 MovieClip Frame 142
stop();
Symbol 139 MovieClip Frame 1
stop();