Combined Code
frame 1 {
stop();
skins = 1;
}
frame 1 {
function itemHandler1(obj, item) {
getURL('http://newgrounds.com', '');
}
function itemHandler2(obj, item) {
getURL('http://www.ngcollabs.com', '');
}
function itemHandler3(obj, item) {
getURL('http://www.sugggames.com', '');
}
var myMenu = new ContextMenu();
myMenu.hideBuiltInItems();
item1 = new ContextMenuItem('Visit Newgrounds', itemHandler1);
item2 = new ContextMenuItem('Visit NGCollabs', itemHandler2);
item3 = new ContextMenuItem('Visit Sugggames.com', itemHandler3);
myMenu.customItems.push(item1);
myMenu.customItems.push(item2);
myMenu.customItems.push(item3);
myMenu.customItems.push(item4);
_root.menu = myMenu;
}
movieClip 5 {
}
movieClip 7 {
}
movieClip 8 {
}
movieClip 12 {
}
button 14 {
on (release) {
getURL('http://www.newgrounds.com', '_blank');
}
}
movieClip 21 {
}
movieClip 23 {
}
movieClip 25 {
}
movieClip 29 {
}
movieClip 31 {
}
movieClip 37 {
}
instance ball of movieClip 37 {
onClipEvent (load) {
ySpeed = 0;
xSpeed = 5;
blur = 1;
}
onClipEvent (enterFrame) {
gotoAndStop(_root.skins);
if (ySpeed > 20) {
ySpeed = 20;
}
if (xSpeed > 20) {
xSpeed = 20;
}
if (ySpeed < -20) {
ySpeed = -20;
}
if (xSpeed < -20) {
xSpeed = -20;
}
if (blur == 1) {
if (ySpeed > 2) {
var myBlur = new flash.filters.BlurFilter();
myBlur.blurY = ySpeed;
this.filters = [myBlur];
}
if (ySpeed < -2) {
var myBlur = new flash.filters.BlurFilter();
myBlur.blurY = -ySpeed;
this.filters = [myBlur];
}
if (xSpeed > 0) {
var myBlur = new flash.filters.BlurFilter();
myBlur.blurX = xSpeed;
this.filters = [myBlur];
}
if (xSpeed < 0) {
var myBlur = new flash.filters.BlurFilter();
myBlur.blurX = -xSpeed;
this.filters = [myBlur];
}
} else {
var myBlur = new flash.filters.BlurFilter();
myBlur.blurY = y0;
myBlur.blurX = 0;
this.filters = [myBlur];
}
_y = _y + ySpeed;
ySpeed += 0.5;
i = 0;
while (i < 99) {
block = _root['block' + i];
sblock = _root['sblock' + i];
if (block.hitTest(_x + xSpeed, _y + ySpeed, true) || _y < 0 || _y > 400) {
if (ySpeed > 0) {
xSpeed += block._rotation * (ySpeed / 80);
} else {
xSpeed -= block._rotation * (ySpeed / 80);
}
ySpeed *= -0.9;
}
if (sblock.hitTest(_x + xSpeed, _y, true) || _x > 550 || _x < 0) {
xSpeed *= -0.9;
}
++i;
}
_x = _x + xSpeed;
_rotation = _rotation + xSpeed;
}
}
movieClip 39 {
}
movieClip 41 {
}
instance hand of movieClip 41 {
onClipEvent (enterFrame) {
rrotation = _rotation;
var spd = (_root._xmouse - _x) / 10 + (_root._ymouse - _y) / 10;
Xd = _root._xmouse - _x;
Yd = _root._ymouse - _y;
radAngle = Math.atan2(Yd, Xd);
_rotation = int(radAngle * 360 / 6.283185307179586 + 180);
updateAfterEvent();
_y = _y + (_root._ymouse - _y) / 10;
_x = _x + (_root._xmouse - _x) / 10;
if (_rotation > 0 && this.hitTest(_root.ball)) {
_root.ball.ySpeed -= spd * Math.cos(0.0174532925199433 * _rotation + 90);
_root.ball.xSpeed += spd * Math.sin(0.0174532925199433 * _rotation + 90);
} else {
if (_rotation <= 0 && this.hitTest(_root.ball)) {
_root.ball.ySpeed += spd * Math.cos(0.0174532925199433 * _rotation + 90);
_root.ball.xSpeed += spd * Math.sin(0.0174532925199433 * _rotation + 90);
}
}
}
}
movieClip 44 {
}
instance of movieClip 44 {
onClipEvent (release) {
_root.ball.blur = 1;
}
}
instance of movieClip 44 {
onClipEvent (release) {
_root.ball.blur = 0;
}
}
instance of movieClip 44 {
onClipEvent (release) {
_root.ball._x = 225;
_root.ball._y = 200;
_root.ball.ySpeed = 0;
_root.ball.xSpeed = -5 + random(10);
}
}
instance of movieClip 44 {
onClipEvent (release) {
getURL('http://www.sugggames.com', '_BLANK');
}
}
instance of movieClip 44 {
onClipEvent (release) {
if (_root.skins > 1) {
--_root.skins;
}
}
}
instance of movieClip 44 {
onClipEvent (release) {
if (_root.skins < 13) {
++_root.skins;
}
}
}
movieClip 49 {
}
button 56 {
on (release) {
_root.play();
}
}
movieClip 57 {
frame 1 {
stop();
}
}
instance of movieClip 57 {
onClipEvent (load) {
textl = 'Loading Secks';
percentsh = '0%';
}
onClipEvent (enterFrame) {
var loaded = _root.getBytesLoaded();
var total = _root.getBytesTotal();
percent = Math.round((loaded / total) * 100);
percentsh = percent + '%';
this.bar._width = percent;
if (percent > 0 && percent < 10) {
textl = 'Loading Preloader';
}
if (percent > 10 && percent < 20) {
textl = 'Loading Sandbag';
}
if (percent > 20 && percent < 30) {
textl = 'Loading Beatings';
}
if (percent > 30 && percent < 40) {
textl = 'Loading Ownage';
}
if (percent > 40 && percent < 50) {
textl = 'Loading Sound';
}
if (percent > 50 && percent < 60) {
textl = 'Loading Skillz';
}
if (percent > 60 && percent < 70) {
textl = 'Loading Text';
}
if (percent > 70 && percent < 80) {
textl = 'Unloading Movie';
}
if (percent > 80 && percent < 90) {
textl = 'Reloading Movie';
}
if (percent > 90 && percent < 100) {
textl = 'Finalizing...';
}
if (percent > 99) {
textl = 'Loading Complete';
gotoAndStop(2);
}
}
}
frame 2 {
stop();
}
frame 2 {
stopAllSounds();
}
movieClip 61 {
}
button 66 {
on (release) {
this.gotoAndStop(1);
}
}
button 68 {
on (release) {
this.gotoAndStop(2);
}
}
button 70 {
on (release) {
this.gotoAndStop(3);
}
}
button 74 {
on (release) {
gotoAndStop(4);
}
}
button 79 {
on (release) {
_root.play();
}
}
button 82 {
on (release) {
_root._quality = 'HIGH';
}
}
button 84 {
on (release) {
_root._quality = 'MEDIUM';
}
}
button 86 {
on (release) {
_root._quality = 'LOW';
}
}
movieClip 89 {
}
movieClip 92 {
}
movieClip 99 {
}
movieClip 105 {
}
movieClip 111 {
}
movieClip 113 {
}
movieClip 120 {
}
movieClip 125 {
}
movieClip 133 {
}
movieClip 140 {
}
movieClip 144 {
}
movieClip 151 {
}
movieClip 154 {
}
movieClip 161 {
}
movieClip 172 {
}
movieClip 174 {
}
movieClip 185 {
frame 1 {
stop();
}
frame 14 {
stop();
}
}
button 188 {
on (release) {
bio.nextFrame();
}
}
button 190 {
on (release) {
bio.prevFrame();
}
}
button 199 {
on (release) {
getURL('http://www.NGcollabs.com', '_blank');
}
}
button 202 {
on (release) {
getURL('http://www.sugggames.com', '_blank');
}
}
movieClip 204 {
frame 1 {
stop();
}
frame 1 {
stopAllSounds();
}
}
button 207 {
on (release) {
gotoAndPlay(39);
}
}
frame 3 {
stop();
}
movieClip 213 {
frame 1 {
function camControl() {
parentColor.setTransform(camColor.getTransform());
var scaleX = sX / this._width;
var scaleY = sY / this._height;
_parent._x = cX - this._x * scaleX;
_parent._y = cY - this._y * scaleY;
_parent._xscale = 100 * scaleX;
_parent._yscale = 100 * scaleY;
}
function resetStage() {
var resetTrans = {'ra': 100, 'rb': 0, 'ga': 100, 'gb': 0, 'ba': 100, 'bb': 0, 'aa': 100, 'ab': 0};
parentColor.setTransform(resetTrans);
_parent._xscale = 100;
_parent._yscale = 100;
_parent._x = 0;
_parent._y = 0;
}
parentColor.setTransform(camColor.getTransform());
this._visible = false;
var oldMode = Stage.scaleMode;
Stage.scaleMode = 'exactFit';
var cX = Stage.width / 2;
var cY = Stage.height / 2;
var sX = Stage.width;
var sY = Stage.height;
Stage.scaleMode = oldMode;
var camColor = new Color(this);
var parentColor = new Color(_parent);
this.onEnterFrame = camControl;
camControl();
this.onUnload = resetStage;
}
}
movieClip 215 {
}
movieClip 220 {
}
movieClip 223 {
}
movieClip 230 {
}
movieClip 235 {
frame 7 {
stop();
}
}
movieClip 237 {
}
movieClip 241 {
}
movieClip 242 {
}
movieClip 248 {
}
movieClip 250 {
}
movieClip 256 {
frame 11 {
stop();
}
}
movieClip 261 {
}
movieClip 262 {
}
movieClip 279 {
}
movieClip 280 {
}
movieClip 283 {
}
movieClip 284 {
}
movieClip 292 {
frame 7 {
gotoAndPlay(3);
}
}
movieClip 297 {
frame 9 {
stop();
}
}
movieClip 300 {
}
movieClip 304 {
}
movieClip 307 {
}
movieClip 308 {
}
movieClip 310 {
}
movieClip 320 {
}
movieClip 322 {
}
movieClip 331 {
frame 15 {
stop();
}
}
movieClip 334 {
}
movieClip 335 {
}
movieClip 356 {
}
movieClip 366 {
}
movieClip 369 {
}
movieClip 370 {
}
movieClip 376 {
}
movieClip 385 {
}
movieClip 387 {
}
movieClip 389 {
}
movieClip 405 {
}
movieClip 406 {
frame 28 {
stop();
}
}
movieClip 410 {
}
movieClip 411 {
}
movieClip 433 {
frame 24 {
stop();
}
}
movieClip 435 {
}
movieClip 437 {
}
movieClip 439 {
}
movieClip 440 {
}
movieClip 441 {
}
movieClip 443 {
}
movieClip 444 {
}
movieClip 446 {
}
movieClip 448 {
}
movieClip 449 {
}
movieClip 455 {
}
movieClip 617 {
frame 159 {
stop();
}
}
movieClip 619 {
frame 899 {
_root.play();
}
}
movieClip 621 {
frame 15831 {
stop();
}
}
frame 5 {
stop();
}
movieClip 629 {
}
movieClip 632 {
frame 1 {
function camControl() {
parentColor.setTransform(camColor.getTransform());
var scaleX = sX / this._width;
var scaleY = sY / this._height;
_parent._x = cX - this._x * scaleX;
_parent._y = cY - this._y * scaleY;
_parent._xscale = 100 * scaleX;
_parent._yscale = 100 * scaleY;
}
function resetStage() {
var resetTrans = {'ra': 100, 'rb': 0, 'ga': 100, 'gb': 0, 'ba': 100, 'bb': 0, 'aa': 100, 'ab': 0};
parentColor.setTransform(resetTrans);
_parent._xscale = 100;
_parent._yscale = 100;
_parent._x = 0;
_parent._y = 0;
}
this._visible = false;
var oldMode = Stage.scaleMode;
Stage.scaleMode = 'exactFit';
var cX = Stage.width / 2;
var cY = Stage.height / 2;
var sX = Stage.width;
var sY = Stage.height;
Stage.scaleMode = oldMode;
var camColor = new Color(this);
var parentColor = new Color(_parent);
this.onEnterFrame = camControl;
camControl();
this.onUnload = resetStage;
}
}
movieClip 685 {
}
movieClip 772 {
}
movieClip 921 {
}
movieClip 926 {
frame 1222 {
_root.play();
}
}
frame 7 {
stop();
}
movieClip 934 {
frame 1 {
function camControl() {
parentColor.setTransform(camColor.getTransform());
var _l4 = sX / this._width;
var _l3 = sY / this._height;
_parent._x = cX - this._x * _l4;
_parent._y = cY - this._y * _l3;
_parent._xscale = 100 * _l4;
_parent._yscale = 100 * _l3;
}
function resetStage() {
var _l2 = {'ra': 100, 'rb': 0, 'ga': 100, 'gb': 0, 'ba': 100, 'bb': 0, 'aa': 100, 'ab': 0};
parentColor.setTransform(_l2);
_parent._xscale = 100;
_parent._yscale = 100;
_parent._x = 0;
_parent._y = 0;
}
this._visible = false;
var oldMode = Stage.scaleMode;
Stage.scaleMode = 'exactFit';
var cX = Stage.width / 2;
var cY = Stage.height / 2;
var sX = Stage.width;
var sY = Stage.height;
Stage.scaleMode = oldMode;
var camColor = new Color(this);
var parentColor = new Color(_parent);
this.onEnterFrame = camControl;
camControl();
this.onUnload = resetStage;
}
}
movieClip 1275 {
}
movieClip 1308 {
}
movieClip 1312 {
frame 540 {
_root.play();
}
}
frame 9 {
stop();
}
movieClip 1386 {
}
movieClip 1396 {
}
movieClip 1398 {
}
movieClip 1467 {
frame 561 {
_root.play();
}
}
frame 11 {
stop();
}
movieClip 1470 {
}
movieClip 1475 {
frame 1 {
function camControl() {
parentColor.setTransform(camColor.getTransform());
var scaleX = sX / this._width;
var scaleY = sY / this._height;
_parent._x = cX - this._x * scaleX;
_parent._y = cY - this._y * scaleY;
_parent._xscale = 100 * scaleX;
_parent._yscale = 100 * scaleY;
}
function resetStage() {
var resetTrans = {'ra': 100, 'rb': 0, 'ga': 100, 'gb': 0, 'ba': 100, 'bb': 0, 'aa': 100, 'ab': 0};
parentColor.setTransform(resetTrans);
_parent._xscale = 100;
_parent._yscale = 100;
_parent._x = 0;
_parent._y = 0;
}
parentColor.setTransform(camColor.getTransform());
this._visible = false;
var oldMode = Stage.scaleMode;
Stage.scaleMode = 'exactFit';
var cX = Stage.width / 2;
var cY = Stage.height / 2;
var sX = Stage.width;
var sY = Stage.height;
Stage.scaleMode = oldMode;
var camColor = new Color(this);
var parentColor = new Color(_parent);
this.onEnterFrame = camControl;
camControl();
this.onUnload = resetStage;
}
}
movieClip 1476 {
}
movieClip 1479 {
}
movieClip 1487 {
}
movieClip 1493 {
}
movieClip 1495 {
}
movieClip 1500 {
}
movieClip 1506 {
}
movieClip 1520 {
}
movieClip 1522 {
}
movieClip 1523 {
}
movieClip 1528 {
}
movieClip 1530 {
}
movieClip 1532 {
}
movieClip 1535 {
}
movieClip 1536 {
}
movieClip 1537 {
}
movieClip 1539 {
}
movieClip 1543 {
}
movieClip 1545 {
}
movieClip 1547 {
}
movieClip 1551 {
}
movieClip 1554 {
frame 877 {
_root.play();
}
}
frame 13 {
stop();
}
movieClip 1560 {
}
movieClip 1563 {
}
movieClip 1566 {
}
movieClip 1575 {
frame 20 {
stop();
}
}
movieClip 1577 {
}
movieClip 1578 {
frame 50 {
stop();
}
}
movieClip 1581 {
}
movieClip 1583 {
}
movieClip 1584 {
}
movieClip 1587 {
}
movieClip 1589 {
}
movieClip 1591 {
}
movieClip 1593 {
}
movieClip 1596 {
}
movieClip 1598 {
}
movieClip 1599 {
}
movieClip 1601 {
}
movieClip 1603 {
}
movieClip 1605 {
}
movieClip 1607 {
}
movieClip 1609 {
}
movieClip 1611 {
}
movieClip 1614 {
}
movieClip 1616 {
}
movieClip 1618 {
}
movieClip 1621 {
}
movieClip 1623 {
}
movieClip 1625 {
}
movieClip 1627 {
}
movieClip 1629 {
}
movieClip 1631 {
}
movieClip 1634 {
}
movieClip 1636 {
}
movieClip 1638 {
}
movieClip 1640 {
}
movieClip 1642 {
}
movieClip 1646 {
}
movieClip 1648 {
}
movieClip 1655 {
}
movieClip 1657 {
}
movieClip 1659 {
}
movieClip 1661 {
}
movieClip 1663 {
}
movieClip 1666 {
}
movieClip 1671 {
}
movieClip 1673 {
}
movieClip 1675 {
frame 795 {
_root.play();
}
}
frame 15 {
stop();
}
movieClip 1678 {
}
movieClip 1681 {
}
movieClip 1682 {
}
movieClip 1686 {
frame 1 {
function camControl() {
parentColor.setTransform(camColor.getTransform());
var scaleX = sX / this._width;
var scaleY = sY / this._height;
_parent._x = cX - this._x * scaleX;
_parent._y = cY - this._y * scaleY;
_parent._xscale = 100 * scaleX;
_parent._yscale = 100 * scaleY;
}
function resetStage() {
var resetTrans = {'ra': 100, 'rb': 0, 'ga': 100, 'gb': 0, 'ba': 100, 'bb': 0, 'aa': 100, 'ab': 0};
parentColor.setTransform(resetTrans);
_parent._xscale = 100;
_parent._yscale = 100;
_parent._x = 0;
_parent._y = 0;
}
this._visible = false;
var oldMode = Stage.scaleMode;
Stage.scaleMode = 'exactFit';
var cX = Stage.width / 2;
var cY = Stage.height / 2;
var sX = Stage.width;
var sY = Stage.height;
Stage.scaleMode = oldMode;
var camColor = new Color(this);
var parentColor = new Color(_parent);
this.onEnterFrame = camControl;
camControl();
this.onUnload = resetStage;
}
}
movieClip 1693 {
}
movieClip 1697 {
}
movieClip 1706 {
}
movieClip 1710 {
}
movieClip 1729 {
}
movieClip 1730 {
}
movieClip 1737 {
}
movieClip 1738 {
}
movieClip 1744 {
}
movieClip 1746 {
}
movieClip 1748 {
}
movieClip 1749 {
}
movieClip 1753 {
}
movieClip 1754 {
}
movieClip 1762 {
}
movieClip 1765 {
}
movieClip 1768 {
}
movieClip 1769 {
}
movieClip 1772 {
}
movieClip 1776 {
}
movieClip 1777 {
}
movieClip 1778 {
}
movieClip 1780 {
}
movieClip 1798 {
}
movieClip 1803 {
}
movieClip 1810 {
}
movieClip 1811 {
}
movieClip 1828 {
frame 1255 {
_root.play();
}
}
frame 17 {
stop();
}
movieClip 1970 {
}
movieClip 1972 {
}
movieClip 1983 {
}
movieClip 1988 {
}
movieClip 2067 {
}
movieClip 2070 {
}
movieClip 2198 {
}
movieClip 2207 {
}
movieClip 2249 {
}
movieClip 2251 {
frame 791 {
_root.play();
}
}
frame 19 {
stop();
}
movieClip 2255 {
}
movieClip 2256 {
frame 1 {
function camControl() {
parentColor.setTransform(camColor.getTransform());
var scaleX = sX / this._width;
var scaleY = sY / this._height;
_parent._x = cX - this._x * scaleX;
_parent._y = cY - this._y * scaleY;
_parent._xscale = 100 * scaleX;
_parent._yscale = 100 * scaleY;
}
function resetStage() {
var resetTrans = {'ra': 100, 'rb': 0, 'ga': 100, 'gb': 0, 'ba': 100, 'bb': 0, 'aa': 100, 'ab': 0};
parentColor.setTransform(resetTrans);
_parent._xscale = 100;
_parent._yscale = 100;
_parent._x = 0;
_parent._y = 0;
}
this._visible = false;
var oldMode = Stage.scaleMode;
Stage.scaleMode = 'exactFit';
var cX = Stage.width / 2;
var cY = Stage.height / 2;
var sX = Stage.width;
var sY = Stage.height;
Stage.scaleMode = oldMode;
var camColor = new Color(this);
var parentColor = new Color(_parent);
this.onEnterFrame = camControl;
camControl();
this.onUnload = resetStage;
}
}
movieClip 2258 {
frame 107 {
stop();
}
}
movieClip 2260 {
}
movieClip 2274 {
}
movieClip 2277 {
frame 78 {
stop();
}
}
movieClip 2282 {
}
movieClip 2286 {
}
movieClip 2287 {
}
movieClip 2293 {
frame 31 {
stop();
}
}
movieClip 2296 {
}
movieClip 2308 {
frame 9 {
stop();
}
}
movieClip 2309 {
}
movieClip 2311 {
}
movieClip 2313 {
}
movieClip 2315 {
}
movieClip 2317 {
frame 201 {
stop();
}
}
movieClip 2319 {
}
movieClip 2321 {
frame 21 {
stop();
}
}
movieClip 2323 {
}
movieClip 2325 {
frame 701 {
stop();
}
}
movieClip 2327 {
}
movieClip 2329 {
}
movieClip 2331 {
}
movieClip 2333 {
}
movieClip 2335 {
}
movieClip 2337 {
}
movieClip 2338 {
}
movieClip 2349 {
frame 46 {
stop();
}
}
movieClip 2353 {
}
movieClip 2364 {
}
movieClip 2367 {
}
movieClip 2370 {
}
movieClip 2372 {
frame 103 {
stop();
}
}
movieClip 2375 {
frame 1387 {
_root.play();
}
}
frame 21 {
stop();
}
movieClip 2378 {
}
movieClip 2382 {
}
movieClip 2450 {
}
movieClip 2468 {
}
movieClip 2480 {
}
movieClip 2492 {
}
movieClip 2506 {
}
movieClip 2511 {
}
movieClip 2518 {
}
movieClip 2547 {
}
movieClip 2555 {
frame 750 {
_root.play();
}
}
frame 23 {
stop();
}
movieClip 2559 {
}
movieClip 2561 {
}
movieClip 2562 {
frame 1 {
function camControl() {
parentColor.setTransform(camColor.getTransform());
var scaleX = sX / this._width;
var scaleY = sY / this._height;
_parent._x = cX - this._x * scaleX;
_parent._y = cY - this._y * scaleY;
_parent._xscale = 100 * scaleX;
_parent._yscale = 100 * scaleY;
}
function resetStage() {
var resetTrans = {'ra': 100, 'rb': 0, 'ga': 100, 'gb': 0, 'ba': 100, 'bb': 0, 'aa': 100, 'ab': 0};
parentColor.setTransform(resetTrans);
_parent._xscale = 100;
_parent._yscale = 100;
_parent._x = 0;
_parent._y = 0;
}
this._visible = false;
var oldMode = Stage.scaleMode;
Stage.scaleMode = 'exactFit';
var cX = Stage.width / 2;
var cY = Stage.height / 2;
var sX = Stage.width;
var sY = Stage.height;
Stage.scaleMode = oldMode;
var camColor = new Color(this);
var parentColor = new Color(_parent);
this.onEnterFrame = camControl;
camControl();
this.onUnload = resetStage;
}
}
movieClip 2563 {
}
movieClip 2567 {
}
movieClip 2571 {
}
movieClip 2573 {
}
movieClip 2578 {
}
movieClip 2579 {
}
movieClip 2581 {
}
movieClip 2583 {
}
movieClip 2588 {
}
movieClip 2590 {
}
movieClip 2595 {
}
movieClip 2597 {
}
movieClip 2602 {
}
movieClip 2604 {
}
movieClip 2606 {
}
movieClip 2610 {
}
movieClip 2612 {
}
movieClip 2618 {
}
movieClip 2621 {
}
movieClip 2627 {
}
movieClip 2629 {
}
movieClip 2631 {
}
movieClip 2633 {
}
movieClip 2642 {
}
movieClip 2643 {
}
movieClip 2647 {
}
movieClip 2648 {
frame 800 {
_root.play();
}
}
frame 25 {
stop();
}
movieClip 2661 {
}
movieClip 2662 {
}
movieClip 2663 {
frame 1 {
function camControl() {
parentColor.setTransform(camColor.getTransform());
var scaleX = sX / this._width;
var scaleY = sY / this._height;
_parent._x = cX - this._x * scaleX;
_parent._y = cY - this._y * scaleY;
_parent._xscale = 100 * scaleX;
_parent._yscale = 100 * scaleY;
}
function resetStage() {
var resetTrans = {'ra': 100, 'rb': 0, 'ga': 100, 'gb': 0, 'ba': 100, 'bb': 0, 'aa': 100, 'ab': 0};
parentColor.setTransform(resetTrans);
_parent._xscale = 100;
_parent._yscale = 100;
_parent._x = 0;
_parent._y = 0;
}
this._visible = false;
var oldMode = Stage.scaleMode;
Stage.scaleMode = 'exactFit';
var cX = Stage.width / 2;
var cY = Stage.height / 2;
var sX = Stage.width;
var sY = Stage.height;
Stage.scaleMode = oldMode;
var camColor = new Color(this);
var parentColor = new Color(_parent);
this.onEnterFrame = camControl;
camControl();
this.onUnload = resetStage;
}
}
movieClip 2672 {
}
movieClip 2682 {
}
movieClip 2684 {
}
movieClip 2690 {
}
movieClip 2692 {
}
movieClip 2701 {
}
movieClip 2704 {
}
movieClip 2732 {
}
movieClip 2734 {
}
movieClip 2735 {
}
movieClip 2738 {
}
movieClip 2740 {
}
movieClip 2742 {
}
movieClip 2745 {
}
movieClip 2747 {
}
movieClip 2749 {
}
movieClip 2752 {
}
movieClip 2755 {
}
movieClip 2757 {
}
movieClip 2759 {
}
movieClip 2761 {
}
movieClip 2764 {
}
movieClip 2767 {
}
movieClip 2769 {
}
movieClip 2772 {
}
movieClip 2775 {
}
movieClip 2777 {
}
movieClip 2780 {
}
movieClip 2784 {
}
movieClip 2786 {
}
movieClip 2789 {
}
movieClip 2792 {
}
movieClip 2794 {
}
movieClip 2799 {
}
movieClip 2801 {
}
movieClip 2807 {
}
movieClip 2833 {
}
movieClip 2837 {
}
movieClip 2843 {
}
movieClip 2844 {
}
movieClip 2846 {
}
movieClip 2848 {
}
movieClip 2857 {
}
movieClip 2861 {
}
movieClip 2864 {
}
movieClip 2867 {
}
movieClip 2869 {
}
movieClip 2870 {
frame 501 {
_root.play();
}
}
frame 27 {
stop();
}
movieClip 2875 {
}
movieClip 2878 {
}
movieClip 2884 {
}
movieClip 2885 {
frame 14 {
stop();
}
}
movieClip 2886 {
}
movieClip 2887 {
frame 50 {
stop();
}
}
movieClip 2890 {
}
movieClip 2891 {
}
movieClip 2894 {
}
movieClip 2897 {
}
movieClip 2898 {
}
movieClip 2901 {
}
movieClip 2903 {
}
movieClip 2905 {
}
movieClip 2908 {
}
movieClip 2912 {
}
movieClip 2915 {
}
movieClip 2924 {
frame 16 {
stop();
}
}
movieClip 2925 {
}
movieClip 2927 {
}
movieClip 2929 {
}
movieClip 2931 {
}
movieClip 2934 {
}
movieClip 2936 {
}
movieClip 2938 {
}
movieClip 2940 {
}
movieClip 2942 {
}
movieClip 2944 {
}
movieClip 2945 {
}
movieClip 2947 {
}
movieClip 2948 {
}
movieClip 2962 {
}
movieClip 2964 {
}
movieClip 2966 {
}
movieClip 2968 {
}
movieClip 2970 {
}
movieClip 2972 {
}
movieClip 2975 {
}
movieClip 2977 {
}
movieClip 2979 {
}
movieClip 2981 {
}
movieClip 2983 {
}
movieClip 2985 {
frame 615 {
_root.play();
}
}
frame 29 {
stop();
}
movieClip 2989 {
}
movieClip 2992 {
}
movieClip 2996 {
}
movieClip 2999 {
}
movieClip 3002 {
}
movieClip 3005 {
}
movieClip 3006 {
}
movieClip 3012 {
}
movieClip 3014 {
}
movieClip 3015 {
}
movieClip 3019 {
}
movieClip 3021 {
}
movieClip 3022 {
frame 394 {
_root.play();
}
}
frame 31 {
stop();
}
movieClip 3035 {
}
movieClip 3058 {
}
movieClip 3063 {
}
movieClip 3112 {
}
movieClip 3130 {
}
movieClip 3133 {
}
movieClip 3138 {
}
movieClip 3141 {
}
movieClip 3159 {
}
movieClip 3160 {
}
movieClip 3162 {
}
movieClip 3163 {
frame 374 {
_root.play();
}
}
frame 33 {
stop();
}
movieClip 3166 {
}
movieClip 3170 {
}
movieClip 3175 {
}
movieClip 3176 {
}
movieClip 3265 {
}
movieClip 3267 {
}
movieClip 3269 {
}
movieClip 3272 {
}
movieClip 3273 {
}
movieClip 3274 {
}
movieClip 3295 {
}
movieClip 3317 {
}
movieClip 3331 {
}
movieClip 3333 {
}
movieClip 3335 {
}
movieClip 3337 {
}
movieClip 3339 {
}
movieClip 3340 {
}
movieClip 3342 {
}
movieClip 3344 {
}
movieClip 3346 {
}
movieClip 3348 {
}
movieClip 3349 {
}
movieClip 3350 {
}
movieClip 3358 {
}
movieClip 3359 {
}
movieClip 3361 {
}
movieClip 3362 {
}
movieClip 3363 {
frame 890 {
_root.play();
}
}
frame 35 {
stop();
}
movieClip 3371 {
frame 1 {
function camControl() {
parentColor.setTransform(camColor.getTransform());
var scaleX = sX / this._width;
var scaleY = sY / this._height;
_parent._x = cX - this._x * scaleX;
_parent._y = cY - this._y * scaleY;
_parent._xscale = 100 * scaleX;
_parent._yscale = 100 * scaleY;
}
function resetStage() {
var resetTrans = {'ra': 100, 'rb': 0, 'ga': 100, 'gb': 0, 'ba': 100, 'bb': 0, 'aa': 100, 'ab': 0};
parentColor.setTransform(resetTrans);
_parent._xscale = 100;
_parent._yscale = 100;
_parent._x = 0;
_parent._y = 0;
}
this._visible = false;
var oldMode = Stage.scaleMode;
Stage.scaleMode = 'exactFit';
var cX = Stage.width / 2;
var cY = Stage.height / 2;
var sX = Stage.width;
var sY = Stage.height;
Stage.scaleMode = oldMode;
var camColor = new Color(this);
var parentColor = new Color(_parent);
this.onEnterFrame = camControl;
camControl();
this.onUnload = resetStage;
}
}
movieClip 3378 {
}
movieClip 3381 {
}
movieClip 3383 {
}
movieClip 3385 {
}
movieClip 3389 {
}
movieClip 3390 {
}
movieClip 3392 {
}
movieClip 3394 {
}
movieClip 3396 {
}
movieClip 3397 {
}
movieClip 3401 {
}
movieClip 3406 {
}
movieClip 3412 {
}
movieClip 3420 {
}
movieClip 3429 {
}
movieClip 3430 {
}
movieClip 3442 {
}
movieClip 3443 {
}
movieClip 3447 {
frame 3 {
stop();
}
}
movieClip 3448 {
}
movieClip 3455 {
frame 3 {
stop();
}
}
movieClip 3464 {
}
movieClip 3466 {
}
movieClip 3467 {
}
movieClip 3472 {
}
movieClip 3474 {
}
movieClip 3478 {
}
movieClip 3479 {
}
movieClip 3483 {
}
movieClip 3496 {
frame 977 {
_root.play();
}
}
frame 37 {
stop();
}
movieClip 3527 {
}
movieClip 3639 {
}
movieClip 3675 {
frame 1605 {
_root.play();
}
frame 1605 {
stopAllSounds();
}
}
movieClip 3678 {
}
movieClip 3680 {
}
instance of movieClip 3680 {
onClipEvent (enterFrame) {
this._y += 0.1 + random(0.3);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
movieClip 3682 {
}
instance of movieClip 3682 {
onClipEvent (enterFrame) {
this._y += 0.1 + random(0.3);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
movieClip 3684 {
}
instance of movieClip 3684 {
onClipEvent (enterFrame) {
this._y += 0.1 + random(0.3);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
movieClip 3686 {
}
instance of movieClip 3686 {
onClipEvent (enterFrame) {
this._y += 0.1 + random(0.3);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3680 {
onClipEvent (enterFrame) {
this._y += 0.1 + random(0.3);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3682 {
onClipEvent (enterFrame) {
this._y += 0.1 + random(0.3);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3684 {
onClipEvent (enterFrame) {
this._y += 0.1 + random(0.3);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3686 {
onClipEvent (enterFrame) {
this._y += 0.1 + random(0.3);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3680 {
onClipEvent (enterFrame) {
this._y += 0.1 + random(0.3);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3682 {
onClipEvent (enterFrame) {
this._y += 0.1 + random(0.3);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3684 {
onClipEvent (enterFrame) {
this._y += 0.1 + random(0.3);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3686 {
onClipEvent (enterFrame) {
this._y += 0.1 + random(0.3);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3680 {
onClipEvent (enterFrame) {
this._y += 0.1 + random(0.3);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3682 {
onClipEvent (enterFrame) {
this._y += 0.1 + random(0.3);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3684 {
onClipEvent (enterFrame) {
this._y += 0.1 + random(0.3);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3686 {
onClipEvent (enterFrame) {
this._y += 0.1 + random(0.3);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3680 {
onClipEvent (enterFrame) {
this._y += 0.1 + random(0.5);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3682 {
onClipEvent (enterFrame) {
this._y += 0.1 + random(0.5);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3684 {
onClipEvent (enterFrame) {
this._y += 0.1 + random(0.5);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3686 {
onClipEvent (enterFrame) {
this._y += 0.1 + random(0.5);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3680 {
onClipEvent (enterFrame) {
this._y += 1 + random(1);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3682 {
onClipEvent (enterFrame) {
this._y += 0.1 + random(0.5);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3684 {
onClipEvent (enterFrame) {
this._y += 0.1 + random(0.5);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3686 {
onClipEvent (enterFrame) {
this._y += 0.1 + random(0.5);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3680 {
onClipEvent (enterFrame) {
this._y += 0.1 + random(0.5);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3682 {
onClipEvent (enterFrame) {
this._y += 0.1 + random(0.5);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3684 {
onClipEvent (enterFrame) {
this._y += 0.1 + random(0.5);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3686 {
onClipEvent (enterFrame) {
this._y += 0.1 + random(0.5);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3680 {
onClipEvent (enterFrame) {
this._y += 1 + random(1);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3682 {
onClipEvent (enterFrame) {
this._y += 0.1 + random(0.5);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3684 {
onClipEvent (enterFrame) {
this._y += 0.1 + random(0.5);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3686 {
onClipEvent (enterFrame) {
this._y += 0.1 + random(0.5);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3680 {
onClipEvent (enterFrame) {
this._y += 0.2 + random(1);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3682 {
onClipEvent (enterFrame) {
this._y += 0.2 + random(1);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3684 {
onClipEvent (enterFrame) {
this._y += 0.2 + random(1);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3686 {
onClipEvent (enterFrame) {
this._y += 0.2 + random(1);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3680 {
onClipEvent (enterFrame) {
this._y += 0.2 + random(1);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3682 {
onClipEvent (enterFrame) {
this._y += 0.2 + random(1);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3684 {
onClipEvent (enterFrame) {
this._y += 0.2 + random(1);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3686 {
onClipEvent (enterFrame) {
this._y += 0.2 + random(1);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3680 {
onClipEvent (enterFrame) {
this._y += 0.2 + random(1);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3682 {
onClipEvent (enterFrame) {
this._y += 0.2 + random(1);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3684 {
onClipEvent (enterFrame) {
this._y += 0.2 + random(1);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3686 {
onClipEvent (enterFrame) {
this._y += 0.2 + random(1);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3680 {
onClipEvent (enterFrame) {
this._y += 0.2 + random(1);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3682 {
onClipEvent (enterFrame) {
this._y += 0.2 + random(1);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3684 {
onClipEvent (enterFrame) {
this._y += 0.2 + random(1);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3686 {
onClipEvent (enterFrame) {
this._y += 0.2 + random(1);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3680 {
onClipEvent (enterFrame) {
this._y += 1 + random(1);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3682 {
onClipEvent (enterFrame) {
this._y += 1 + random(1);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3684 {
onClipEvent (enterFrame) {
this._y += 1 + random(1);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3686 {
onClipEvent (enterFrame) {
this._y += 1 + random(1);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3680 {
onClipEvent (enterFrame) {
this._y += 1 + random(1);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3682 {
onClipEvent (enterFrame) {
this._y += 1 + random(1);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3684 {
onClipEvent (enterFrame) {
this._y += 1 + random(1);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3686 {
onClipEvent (enterFrame) {
this._y += 1 + random(1);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3680 {
onClipEvent (enterFrame) {
this._y += 1 + random(1);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3682 {
onClipEvent (enterFrame) {
this._y += 1 + random(1);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3684 {
onClipEvent (enterFrame) {
this._y += 1 + random(1);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3686 {
onClipEvent (enterFrame) {
this._y += 1 + random(1);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3680 {
onClipEvent (enterFrame) {
this._y += 1 + random(1);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3682 {
onClipEvent (enterFrame) {
this._y += 1 + random(1);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3684 {
onClipEvent (enterFrame) {
this._y += 1 + random(1);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
instance of movieClip 3686 {
onClipEvent (enterFrame) {
this._y += 1 + random(1);
}
onClipEvent (enterFrame) {
if (this._y == 590) {
this._y = -40;
}
}
}
movieClip 3688 {
}
movieClip 3689 {
}
movieClip 3691 {
}
movieClip 3692 {
}
movieClip 3694 {
}
movieClip 3696 {
frame 6221 {
stop();
}
}
movieClip 3698 {
}
movieClip 3700 {
}
movieClip 3702 {
}
movieClip 3704 {
}
movieClip 3707 {
}
movieClip 3709 {
}
movieClip 3711 {
}
movieClip 3714 {
}
movieClip 3715 {
}
movieClip 3717 {
}
movieClip 3718 {
}
movieClip 3720 {
}
movieClip 3722 {
}
movieClip 3724 {
}
movieClip 3726 {
}
movieClip 3729 {
}
movieClip 3730 {
}
movieClip 3732 {
frame 1 {
onEnterFrame = function () {
createEmptyMovieClip('face_b', 3);
with (face_b) {
beginFill(16777215, 100);
lineStyle(3, 0, 100);
moveTo(b1._x, b1._y);
lineTo(b2._x, b2._y);
lineTo(b3._x, b3._y);
lineTo(b4._x, b4._y);
lineTo(b1._x, b1._y);
endFill();
beginFill(13421772, 100);
lineTo(b3._X, b3._y);
lineTo(b4._X, b4._y);
lineTo(b1._X, b1._y);
endFill();
}
createEmptyMovieClip('face_bb', 1);
with (face_bb) {
beginFill(16777215, 100);
lineStyle(3, 0, 100);
moveTo(b1._x, b1._y);
lineTo(b2._x, b2._y);
lineTo(b2._x, b2._y - 200);
lineTo(b1._x, b1._y - 200);
lineTo(b1._x, b1._y);
endFill();
beginFill(13421772, 100);
lineTo(b2._X, b2._y - 200);
lineTo(b1._X, b1._y - 200);
lineTo(b1._X, b1._y);
endFill();
}
createEmptyMovieClip('face_bl', 49);
with (face_bl) {
beginFill(16777215, 100);
lineStyle(3, 0, 100);
moveTo(b1._x, b1._y);
lineTo(b4._x, b4._y);
lineTo(b4._x, b4._y - 200);
lineTo(b1._x, b1._y - 200);
lineTo(b1._x, b1._y);
endFill();
beginFill(13421772, 100);
lineTo(b4._X, b4._y);
lineTo(b1._X, b1._y - 200);
lineTo(b1._X, b1._y);
endFill();
}
createEmptyMovieClip('face_br', 5);
with (face_br) {
beginFill(16777215, 100);
lineStyle(3, 0, 100);
moveTo(b2._x, b2._y);
lineTo(b3._x, b3._y);
lineTo(b3._x, b3._y - 200);
lineTo(b2._x, b2._y - 200);
lineTo(b2._x, b2._y);
endFill();
beginFill(13421772, 100);
lineTo(b3._X, b3._y);
lineTo(b3._X, b3._y - 200);
lineTo(b2._X, b2._y);
endFill();
}
createEmptyMovieClip('face_t', 48);
with (face_t) {
beginFill(16777215, 100);
lineStyle(3, 0, 100);
moveTo(b1._x, b1._y - 200);
lineTo(b2._x, b2._y - 200);
lineTo(b3._x, b3._y - 200);
lineTo(b4._x, b4._y - 200);
lineTo(b1._x, b1._y - 200);
endFill();
beginFill(13421772, 100);
lineTo(b2._X, b3._y - 200);
lineTo(b4._X, b4._y - 200);
lineTo(b1._X, b1._y - 200);
endFill();
}
createEmptyMovieClip('face_f', 50);
with (face_f) {
beginFill(16777215, 50);
lineStyle(3, 0, 50);
moveTo(b3._x, b3._y);
lineTo(b4._x, b4._y);
lineTo(b4._x, b4._y - 200);
lineTo(b3._x, b3._y - 200);
lineTo(b3._x, b3._y);
endFill();
beginFill(13421772, 50);
lineTo(b4._X, b4._y);
lineTo(b4._X, b4._y - 200);
lineTo(b3._X, b3._y);
endFill();
}
};
}
instance b1 of movieClip 3729 {
onClipEvent (load) {
_visible = false;
xs = 0;
ys = 0;
weight = 0.5;
}
onClipEvent (enterFrame) {
_x = _x + xs;
_y = _y + ys;
ys += weight;
if (this.hitTest(_root.ham)) {
xs = _root.ham.xs * 2;
ys = _root.ham.ys * 2;
}
if (_y < 0) {
ys *= -0.9;
_y = 1;
}
if (_y > 400) {
ys *= -0.9;
_y = 399;
}
}
}
instance b2 of movieClip 3729 {
onClipEvent (load) {
_visible = false;
xs = 0;
ys = 0;
weight = 0.5;
}
onClipEvent (enterFrame) {
_x = _x + xs;
_y = _y + ys;
ys += weight;
if (this.hitTest(_root.ham)) {
xs = _root.ham.xs * 2;
ys = _root.ham.ys * 2;
}
if (_y < 0) {
ys *= -0.9;
_y = 1;
}
if (_y > 400) {
ys *= -0.9;
_y = 399;
}
}
}
instance b3 of movieClip 3729 {
onClipEvent (load) {
_visible = false;
xs = 0;
ys = 0;
weight = 0.5;
}
onClipEvent (enterFrame) {
_x = _x + xs;
_y = _y + ys;
ys += weight;
if (this.hitTest(_root.ham)) {
xs = _root.ham.xs * 2;
ys = _root.ham.ys * 2;
}
if (_y < 0) {
ys *= -0.9;
_y = 1;
}
if (_y > 400) {
ys *= -0.9;
_y = 399;
}
}
}
instance b4 of movieClip 3729 {
onClipEvent (load) {
_visible = false;
xs = 0;
ys = 0;
weight = 0.5;
}
onClipEvent (enterFrame) {
_x = _x + xs;
_y = _y + ys;
ys += weight;
if (this.hitTest(_root.ham)) {
xs = _root.ham.xs * 2;
ys = _root.ham.ys * 2;
}
if (_y < 0) {
ys *= -0.9;
_y = 1;
}
if (_y > 400) {
ys *= -0.9;
_y = 399;
}
}
}
instance of movieClip 3730 {
onClipEvent (load) {
this.swapDepths(6);
xs = -5 + random(10);
ys = -5 + random(10);
}
onClipEvent (enterFrame) {
_rotation = _rotation + xs / 3;
_x = _x + xs;
_y = _y + ys;
if (_y > _parent.b3._y - 20) {
ys = -ys;
_y = _parent.b3._y - 21;
}
if (_y < _parent.b3._y - 200 + 20) {
ys = -ys;
_y = _parent.b3._y - 200 + 21;
}
if (_x > _parent.b3._x - 10) {
xs = -xs;
_x = _parent.b3._x - 11;
}
if (_x < _parent.b4._x + 10) {
xs = -xs;
_x = _parent.b4._x + 11;
}
}
}
instance of movieClip 3730 {
onClipEvent (load) {
this.swapDepths(7);
xs = -5 + random(10);
ys = -5 + random(10);
}
onClipEvent (enterFrame) {
_rotation = _rotation + xs / 3;
_x = _x + xs;
_y = _y + ys;
if (_y > _parent.b3._y - 20) {
ys = -ys;
_y = _parent.b3._y - 21;
}
if (_y < _parent.b3._y - 200 + 20) {
ys = -ys;
_y = _parent.b3._y - 200 + 21;
}
if (_x > _parent.b3._x - 10) {
xs = -xs;
_x = _parent.b3._x - 11;
}
if (_x < _parent.b4._x + 10) {
xs = -xs;
_x = _parent.b4._x + 11;
}
}
}
instance of movieClip 3730 {
onClipEvent (load) {
this.swapDepths(8);
xs = -5 + random(10);
ys = -5 + random(10);
}
onClipEvent (enterFrame) {
_rotation = _rotation + xs / 3;
_x = _x + xs;
_y = _y + ys;
if (_y > _parent.b3._y - 20) {
ys = -ys;
_y = _parent.b3._y - 21;
}
if (_y < _parent.b3._y - 200 + 20) {
ys = -ys;
_y = _parent.b3._y - 200 + 21;
}
if (_x > _parent.b3._x - 10) {
xs = -xs;
_x = _parent.b3._x - 11;
}
if (_x < _parent.b4._x + 10) {
xs = -xs;
_x = _parent.b4._x + 11;
}
}
}
instance of movieClip 3730 {
onClipEvent (load) {
this.swapDepths(9);
xs = -5 + random(10);
ys = -5 + random(10);
}
onClipEvent (enterFrame) {
_rotation = _rotation + xs / 3;
_x = _x + xs;
_y = _y + ys;
if (_y > _parent.b3._y - 20) {
ys = -ys;
_y = _parent.b3._y - 21;
}
if (_y < _parent.b3._y - 200 + 20) {
ys = -ys;
_y = _parent.b3._y - 200 + 21;
}
if (_x > _parent.b3._x - 10) {
xs = -xs;
_x = _parent.b3._x - 11;
}
if (_x < _parent.b4._x + 10) {
xs = -xs;
_x = _parent.b4._x + 11;
}
}
}
instance of movieClip 3730 {
onClipEvent (load) {
this.swapDepths(10);
xs = -5 + random(10);
ys = -5 + random(10);
}
onClipEvent (enterFrame) {
_rotation = _rotation + xs / 3;
_x = _x + xs;
_y = _y + ys;
if (_y > _parent.b3._y - 20) {
ys = -ys;
_y = _parent.b3._y - 21;
}
if (_y < _parent.b3._y - 200 + 20) {
ys = -ys;
_y = _parent.b3._y - 200 + 21;
}
if (_x > _parent.b3._x - 10) {
xs = -xs;
_x = _parent.b3._x - 11;
}
if (_x < _parent.b4._x + 10) {
xs = -xs;
_x = _parent.b4._x + 11;
}
}
}
}
movieClip 3734 {
}
movieClip 3735 {
}
frame 1660 {
stop();
}
button 3739 {
on (release) {
gotoAndPlay(2);
}
}