Frame 1
var stageL = new Object();
stageL.onResize = function () {
face1.swirl._width = 6000;
face1.swirl._height = 6000;
flas._width = Stage.width;
flas._height = Stage.height;
face1._y = Stage.height / 2;
face1._x = Stage.width * 0.65;
};
Stage.addListener(stageL);
stop();
grabbed = false;
Stage.showMenu = false;
var statics = new Sound();
statics.attachSound("staticloop");
statics.start(0, 999999);
statics.setVolume(0);
Instance of Symbol 18 MovieClip "face1" in Frame 1
onClipEvent (load) {
this._y = Stage.height / 2;
this._x = Stage.width * 0.65;
}
onClipEvent (enterFrame) {
if (_root.grabbed) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
xdist = (this._x - _root.glasses._x) + 92;
ydist = (this._y - _root.glasses._y) - 54;
radd = Math.sqrt((xdist * xdist) + (ydist * ydist));
if (radd < 10) {
_root.gotoAndStop(2);
}
}
Instance of Symbol 22 MovieClip "glasses" in Frame 1
onClipEvent (load) {
this._y = Stage.height / 2;
this._x = Stage.width * 0.25;
}
onClipEvent (enterFrame) {
}
Frame 2
statics.setVolume(0);
statics.stop();
var omusic = new Sound();
omusic.attachSound("spooky");
omusic.setVolume(80);
omusic.start(0.2, 9999999);
omusic.setPan(0);
stop();
Instance of Symbol 18 MovieClip "face1" in Frame 2
onClipEvent (load) {
this._y = Stage.height / 2;
this._x = Stage.width * 0.65;
}
onClipEvent (enterFrame) {
this.gotoAndStop(3);
}
Instance of Symbol 23 MovieClip in Frame 2
onClipEvent (enterFrame) {
this._x = 0;
this._y = 0;
this._width = Stage.width;
this._height = Stage.height;
}
Instance of Symbol 25 MovieClip "flas" in Frame 2
onClipEvent (load) {
this._x = 0;
this._y = 0;
this._width = Stage.width;
this._height = Stage.height;
}
Symbol 16 Button
on (release) {
getURL ("weekend2.html");
}
Symbol 18 MovieClip Frame 2
stop();
Instance of Symbol 8 MovieClip in Symbol 18 MovieClip Frame 2
onClipEvent (load) {
origx = this._x;
origy = this._y;
}
onClipEvent (enterFrame) {
this._x = (origx + (Math.random() * 36)) - 18;
this._y = (origy + (Math.random() * 16)) - 8;
this._rotation = (Math.random() * 8) - 4;
this._xscale = (this._yscale = ((Math.random() * 5) - 2.5) + 100);
}
Symbol 18 MovieClip Frame 3
stop();
Instance of Symbol 10 MovieClip "swirl" in Symbol 18 MovieClip Frame 3
onClipEvent (load) {
this._height = 4000;
this._width = 4000;
ox = this._x;
oy = this._y;
}
onClipEvent (enterFrame) {
this._rotation = this._rotation - ((Math.random() * 1.5) - 0.5);
this._x = (ox + (Math.random() * 10)) - 5;
this._y = (oy + (Math.random() * 10)) - 5;
}
Instance of Symbol 17 MovieClip "bar" in Symbol 18 MovieClip Frame 3
onClipEvent (load) {
this._x = (Stage.width * 0.25) - _root.face1._x;
this._y = (Stage.height / 2) - _root.face1._y;
}
onClipEvent (enterFrame) {
this._x = (Stage.width * 0.25) - _root.face1._x;
this._y = (Stage.height / 2) - _root.face1._y;
}
Symbol 21 Button
on (press) {
startDrag (this);
_root.grabbed = true;
_root.statics.setVolume(100);
}
on (release) {
stopDrag();
_root.grabbed = false;
_root.statics.setVolume(0);
}
Symbol 25 MovieClip Frame 30
stop();