Frame 1
loadpercent = "0%";
_quality = "MEDIUM";
logo.gotoAndStop(1);
if (Object.rpenner == null) {
Object.rpenner = new Object();
}
Math.randRangeF = function (low, high) {
return((Math.random() * (high - low)) + low);
};
Object.rpenner.Snowfield = function (limits) {
this.limits = limits;
this.fs = [];
};
Object.rpenner.Snowfield.prototype.addFlake = function (depth, mcID) {
var lm = this.limits;
var x = Math.randRangeF(lm.xmin, lm.xmax);
var y = lm.ymin;
var z = Math.randRangeF(lm.zmin, lm.zmax);
var s = Math.randRangeF(lm.smin, lm.smax);
this.fs.unshift(new Object.rpenner.Snowflake(s, this, depth, mcID));
this.fs[0].setZ(z);
this.fs[0].setScreenXY(x, y);
};
Object.rpenner.Snowfield.prototype.live = function () {
var fs = this.fs;
var i = fs.length;
while (i--) {
fs[i].live();
}
};
Object.rpenner.Snowfield.prototype.setWind = function (w) {
this.wind = w;
};
if (Object.rpenner == null) {
Object.rpenner = new Object();
}
Object.rpenner.Snowflake = function (scale, field, depth, mcID) {
this.velX = 0;
this.velY = -10;
this.d = 200;
this.scale = scale;
this._field = field;
this.mcID = mcID;
this.timeline = eval (_target);
this.attachGraphic(mcID, depth);
this.brownAmp = 0.2;
};
Object.rpenner.Snowflake.prototype.live = function () {
this.t++;
this.move();
this.renderXY();
};
Object.rpenner.Snowflake.prototype.move = function () {
if (!(this.t % 10)) {
this.brown = this.getBrown();
}
this.velX = this.velX + (this.brown + this._field.wind);
this.x = this.x + ((this.velX = this.velX * 0.97));
this.y = this.y + this.velY;
};
Object.rpenner.Snowflake.prototype.getBrown = function () {
return((random(20) - 10) * 0.02);
};
Object.rpenner.Snowflake.prototype.renderXY = function () {
var lm = this._field.limits;
with (this.mc) {
_x = this.x * this.pers;
_y = (-this.y) * this.pers;
if (lm.ymax < _y) {
this.setScreenY(lm.ymin);
}
if (lm.xmax < _x) {
this.setScreenX(lm.xmin);
} else if (_x < lm.xmin) {
this.setScreenX(lm.xmax);
}
}
};
Object.rpenner.Snowflake.prototype.setScreenX = function (x) {
this.x = ((this.mc._x = x)) / this.pers;
};
Object.rpenner.Snowflake.prototype.setScreenY = function (y) {
this.y = ((this.mc._y = y)) / this.pers;
};
Object.rpenner.Snowflake.prototype.setScreenXY = function (x, y) {
this.mc._x = x;
this.x = x / this.pers;
this.mc._y = y;
this.y = (-y) / this.pers;
};
Object.rpenner.Snowflake.prototype.setScreenY = function (y) {
this.mc._y = y;
this.y = (-y) / this.pers;
};
Object.rpenner.Snowflake.prototype.setZ = function (z) {
this.z = z;
this.pers = this.d / (this.d + this.z);
this.renderZ();
};
Object.rpenner.Snowflake.prototype.renderZ = function () {
with (this.mc) {
_xscale = (_yscale = (this.pers * this.scale) * 100);
}
var depth = Math.floor(100000 - (this.z * 10));
this.mc.swapDepths(depth);
};
Object.rpenner.Snowflake.prototype.attachGraphic = function (id, depth) {
this.timeline.attachMovie(id, id + depth, depth);
this.mc = this.timeline[id + depth];
};
Frame 2
loadPercent = Math.floor((_root.getBytesLoaded() / _root.getBytesTotal()) * 100) + "%";
loadBytes = (((Math.round((_root.getBytesLoaded() / 1024) * 1000) / 1000) + " Kb of ") + (Math.round((_root.getBytesTotal() / 1024) * 1000) / 1000)) + " Kb total Loaded.";
if (_root.getBytesLoaded() == _root.getBytesTotal()) {
loadPercent = "100%";
loadBytes = (((Math.round((_root.getBytesLoaded() / 1024) * 1000) / 1000) + " Kb of ") + (Math.round((_root.getBytesTotal() / 1024) * 1000) / 1000)) + " Kb total Loaded.";
gotoAndPlay (4);
}
Frame 3
gotoAndPlay (2);
Frame 6
stop();
Frame 7
creatingPreview._visible = true;
dialogSendMsg.swear = "";
_quality = "HIGH";
if (Object.rpenner == null) {
Object.rpenner = new Object();
}
Math.randRangeF = function (low, high) {
return((Math.random() * (high - low)) + low);
};
Object.rpenner.Snowfield = function (limits) {
this.limits = limits;
this.fs = [];
};
Object.rpenner.Snowfield.prototype.addFlake = function (depth, mcID) {
var lm = this.limits;
var x = Math.randRangeF(lm.xmin, lm.xmax);
var y = lm.ymin;
var z = Math.randRangeF(lm.zmin, lm.zmax);
var s = Math.randRangeF(lm.smin, lm.smax);
this.fs.unshift(new Object.rpenner.Snowflake(s, this, depth, mcID));
this.fs[0].setZ(z);
this.fs[0].setScreenXY(x, y);
};
Object.rpenner.Snowfield.prototype.live = function () {
var fs = this.fs;
var i = fs.length;
while (i--) {
fs[i].live();
}
};
Object.rpenner.Snowfield.prototype.setWind = function (w) {
this.wind = w;
};
if (Object.rpenner == null) {
Object.rpenner = new Object();
}
Object.rpenner.Snowflake = function (scale, field, depth, mcID) {
this.velX = 0;
this.velY = -10;
this.d = 200;
this.scale = scale;
this._field = field;
this.mcID = mcID;
this.timeline = eval (_target);
this.attachGraphic(mcID, depth);
this.brownAmp = 0.2;
};
Object.rpenner.Snowflake.prototype.live = function () {
this.t++;
this.move();
this.renderXY();
};
Object.rpenner.Snowflake.prototype.move = function () {
if (!(this.t % 10)) {
this.brown = this.getBrown();
}
this.velX = this.velX + (this.brown + this._field.wind);
this.x = this.x + ((this.velX = this.velX * 0.97));
this.y = this.y + this.velY;
};
Object.rpenner.Snowflake.prototype.getBrown = function () {
return((random(20) - 10) * 0.02);
};
Object.rpenner.Snowflake.prototype.renderXY = function () {
var lm = this._field.limits;
with (this.mc) {
_x = this.x * this.pers;
_y = (-this.y) * this.pers;
if (lm.ymax < _y) {
this.setScreenY(lm.ymin);
}
if (lm.xmax < _x) {
this.setScreenX(lm.xmin);
} else if (_x < lm.xmin) {
this.setScreenX(lm.xmax);
}
}
};
Object.rpenner.Snowflake.prototype.setScreenX = function (x) {
this.x = ((this.mc._x = x)) / this.pers;
};
Object.rpenner.Snowflake.prototype.setScreenY = function (y) {
this.y = ((this.mc._y = y)) / this.pers;
};
Object.rpenner.Snowflake.prototype.setScreenXY = function (x, y) {
this.mc._x = x;
this.x = x / this.pers;
this.mc._y = y;
this.y = (-y) / this.pers;
};
Object.rpenner.Snowflake.prototype.setScreenY = function (y) {
this.mc._y = y;
this.y = (-y) / this.pers;
};
Object.rpenner.Snowflake.prototype.setZ = function (z) {
this.z = z;
this.pers = this.d / (this.d + this.z);
this.renderZ();
};
Object.rpenner.Snowflake.prototype.renderZ = function () {
with (this.mc) {
_xscale = (_yscale = (this.pers * this.scale) * 100);
}
var depth = Math.floor(100000 - (this.z * 10));
this.mc.swapDepths(depth);
};
Object.rpenner.Snowflake.prototype.attachGraphic = function (id, depth) {
this.timeline.attachMovie(id, id + depth, depth);
this.mc = this.timeline[id + depth];
};
Instance of Symbol 409 MovieClip "dialogSendMsg" in Frame 7
onClipEvent (load) {
_visible = false;
}
Frame 8
function layoutLetters(str, scale) {
str = line;
if (!letters) {
trace("doing the letters");
letterWidths();
}
blurb.skew._xscale = scale;
blurb.skew._yscale = scale;
curY = 0;
if (oldstr) {
ii = 0;
while (ii < oldstr.length) {
i = 0;
while (i < oldstr[ii].length) {
removeMovieClip((("blurb.skew" + ii) + "a") + i);
i++;
}
ii++;
}
}
oldstr = str;
ii = 0;
while (line.length >= ii) {
i = 0;
while (i < line[ii].length) {
ltr = line[ii].substr(i, 1);
duplicateMovieClip (blurb.skew, (("skew" + ii) + "a") + i, (ii * 100) + i);
ind = eval ((("blurb.skew" + ii) + "a") + i);
if (parseInt(ltr) == ltr) {
if (ltr == 0) {
ind.letter.gotoAndStop("o");
} else {
ind.letter.gotoAndStop(parseInt(ltr) + 1);
}
} else if (ltr == ".") {
ind.letter.gotoAndStop("fullstop");
} else {
ind.letter.gotoAndStop(ltr);
}
ind._x = ind._x + totalWidth;
ind._y = ind._y + curY;
ind._xscale = 50;
ind._yscale = 50;
ind.gotoAndStop(250);
totalWidth = totalWidth + (ind._width + 10);
i++;
}
i = 0;
while (i < line[ii].length) {
ind = eval ((("blurb.skew" + ii) + "a") + i);
ind._x = ind._x - (totalWidth / 2);
offset = Math.round(ind._x) + 250;
if (500 < offset) {
offset = 500;
} else if (offset < 1) {
offset = 1;
}
ind.gotoAndStop(offset);
trace(offset);
i++;
}
curY = curY + (ind._height + 5);
totalWidth = 0;
ii++;
}
blurb.skew._visible = false;
}
function boundingBox(str, scale, offset) {
if (0 < wordWidths[ii]) {
trace("yes");
return((wordWidths[ii] / 100) * scale);
}
if (1 < str.length) {
trace("nope");
x = str.split("", str.length());
ww = 0;
i = 0;
while (i < x.length) {
ww = ww + (eval ("letters." + x[i]) + 15);
i++;
}
wordWidths[ii] = ww;
return((ww / 100) * scale);
}
}
function letterWidths() {
letters = Object();
letters.a = letterWidth("a");
letters.b = letterWidth("b");
letters.c = letterWidth("c");
letters.d = letterWidth("d");
letters.e = letterWidth("e");
letters.f = letterWidth("f");
letters.g = letterWidth("g");
letters.h = letterWidth("h");
letters.i = letterWidth("i");
letters.j = letterWidth("j");
letters.k = letterWidth("k");
letters.l = letterWidth("l");
letters.m = letterWidth("m");
letters.n = letterWidth("n");
letters.o = letterWidth("o");
letters.p = letterWidth("p");
letters.q = letterWidth("q");
letters.r = letterWidth("r");
letters.s = letterWidth("s");
letters.t = letterWidth("t");
letters.u = letterWidth("u");
letters.v = letterWidth("v");
letters.w = letterWidth("w");
letters.x = letterWidth("x");
letters.y = letterWidth("y");
letters.z = letterWidth("z");
letters.space = letterWidth(1);
}
function letterHeight(letr) {
blurb.skew.letter.gotoAndStop(letr);
blurb.skew.gotoAndStop(250);
return(blurb.skew._height);
}
function letterWidth(letr) {
blurb.skew.letter.gotoAndStop(letr);
blurb.skew.gotoAndStop(250);
return(blurb.skew._width);
}
dddd = new Date();
seconds = dddd.getSeconds();
milli = dddd.getMilliseconds();
if (!msg.length) {
message = "seasons greetings my friend how are you today";
message = "happy birthday to you";
message = "season's greetings from optus!";
} else {
message = msg;
}
msg = message;
blurb._x = 23;
scale = 100;
wordWidths = Array();
words = message.split(" ", message.length);
line = Array();
lineNum = 0;
i = 0;
while (i < words.length) {
if (((message.length / 4) < line[lineNum].length) && (lineNum < 4)) {
lineNum++;
}
line[lineNum] = line[lineNum] + (words[i] + " ");
i++;
}
trace(blurb._x);
layoutLetters(message, scale);
dim = blurb.getBounds(_root);
blurb._x = 300;
blurb._xscale = 100;
blurb._yscale = 100;
blurb._xscale = (600 / blurb._width) * 100;
blurb._yscale = (600 / blurb._width) * 100;
creatingPreview._visible = false;
dddd = new Date();
trace(((dddd.getSeconds() - seconds) + " ") + (dddd.getMilliseconds() - millis));
Frame 9
stop();
Symbol 18 MovieClip Frame 2
bg1._x = bg1._x + 1;
bg2._x = bg2._x + 17;
if (bg2._x >= 1200) {
bg2._x = 0;
}
if (bg1._x >= 1195) {
bg1._x = 0;
}
tree._x = tree._x + 5;
if (tree._x >= 380) {
tree._x = math.floor((math.random() * 900) + 400) * -1;
}
tree2._x = tree2._x + 7;
if (tree2._x >= 400) {
tree2._x = math.floor((math.random() * 900) + 400) * -1;
}
tree3._x = tree3._x + 3;
if (tree3._x >= 320) {
tree3._x = math.floor((math.random() * 900) + 400) * -1;
}
tree4._x = tree4._x + (tree4._y / 6);
if (tree4._x >= 450) {
tree4._x = math.floor((math.random() * 1500) + 400) * -1;
tree4._y = math.floor((math.random() * 150) + 90);
}
Symbol 18 MovieClip Frame 3
gotoAndPlay (2);
Symbol 26 MovieClip Frame 3
gotoAndPlay (1);
Symbol 26 MovieClip Frame 8
_root.play();
Symbol 27 MovieClip Frame 1
limits = {xmin:-10, xmax:670, ymin:-10, ymax:360, zmin:3, zmax:800, smin:0.6, smax:1};
halfway = 98800 /* 0x0181F0 */;
picture.duplicateMovieClip("pictureCopy");
picture._visible = false;
pictureCopy.swapDepths(halfway);
maxFlakes = 20;
numFlakes = 0;
snow = new Object.rpenner.Snowfield(limits);
Symbol 27 MovieClip Frame 2
if ((numFlakes < maxFlakes) && ((++cycle) % 2)) {
snow.addFlake(numFlakes, "snowdot");
numFlakes++;
}
snow.setWind(((_xmouse - 325) / 400) * -1);
snow.live();
Symbol 27 MovieClip Frame 3
gotoAndPlay(_currentframe - 1);
Symbol 27 MovieClip Frame 4
stop();
Symbol 31 MovieClip Frame 1
this._xscale = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100;
Symbol 31 MovieClip Frame 2
gotoAndPlay (1);
Symbol 42 MovieClip Frame 1
stop();
Symbol 42 MovieClip Frame 2
stop();
Symbol 42 MovieClip Frame 3
stop();
Symbol 43 MovieClip Frame 1
stop();
bod.gotoAndStop("halt");
Symbol 43 MovieClip Frame 2
bod.gotoAndStop("l");
Symbol 43 MovieClip Frame 6
bod.gotoAndStop("r");
Symbol 43 MovieClip Frame 10
gotoAndPlay (2);
Symbol 43 MovieClip Frame 11
bod.gotoAndStop("halt");
Symbol 45 MovieClip Frame 48
stop();
Symbol 46 MovieClip Frame 1
timer = 1;
tellTarget ("../") {
stop();
};
Symbol 46 MovieClip Frame 2
timer++;
Symbol 46 MovieClip Frame 3
gotoAndPlay(_currentframe - 1);
if (timer >= seconds) {
stop();
tellTarget ("../") {
play();
};
} else {
tellTarget ("../") {
stop();
};
}
Symbol 58 MovieClip Frame 1
stop();
Symbol 58 MovieClip Frame 6
stop();
Symbol 66 MovieClip Frame 28
stop();
Symbol 74 MovieClip Frame 1
stop();
Symbol 74 MovieClip Frame 10
stop();
Symbol 92 MovieClip Frame 1
loop = math.floor((math.random() * 5) + 1);
Symbol 92 MovieClip Frame 2
if (loop >= 5) {
nextFrame();
play();
} else {
gotoAndPlay (1);
}
Symbol 93 MovieClip Frame 4
gotoAndPlay (2);
Symbol 93 MovieClip Frame 13
stop();
Symbol 93 MovieClip Frame 14
loop = loop + 1;
Symbol 93 MovieClip Frame 41
if (loop >= 4) {
_parent.play();
} else {
play();
}
Symbol 93 MovieClip Frame 61
if (loop >= 3) {
gotoAndPlay (14);
} else {
gotoAndPlay (3);
}
Symbol 93 MovieClip Frame 62
loop = loop + 1;
Symbol 93 MovieClip Frame 75
if (loop >= 2) {
gotoAndPlay (14);
} else {
play();
}
Symbol 93 MovieClip Frame 129
if (loop >= 3) {
play();
} else {
gotoAndPlay (62);
}
Symbol 93 MovieClip Frame 135
gotoAndPlay (14);
Symbol 94 MovieClip Frame 1
repeater = 0;
stopAllSounds();
Symbol 94 MovieClip Frame 2
_root.music.gotoAndStop("wind");
_quality = "MEDIUM";
if (Object.rpenner == null) {
Object.rpenner = new Object();
}
Math.randRangeF = function (low, high) {
return((Math.random() * (high - low)) + low);
};
Object.rpenner.Snowfield = function (limits) {
this.limits = limits;
this.fs = [];
};
Object.rpenner.Snowfield.prototype.addFlake = function (depth, mcID) {
var lm = this.limits;
var x = Math.randRangeF(lm.xmin, lm.xmax);
var y = lm.ymin;
var z = Math.randRangeF(lm.zmin, lm.zmax);
var s = Math.randRangeF(lm.smin, lm.smax);
this.fs.unshift(new Object.rpenner.Snowflake(s, this, depth, mcID));
this.fs[0].setZ(z);
this.fs[0].setScreenXY(x, y);
};
Object.rpenner.Snowfield.prototype.live = function () {
var fs = this.fs;
var i = fs.length;
while (i--) {
fs[i].live();
}
};
Object.rpenner.Snowfield.prototype.setWind = function (w) {
this.wind = w;
};
if (Object.rpenner == null) {
Object.rpenner = new Object();
}
Object.rpenner.Snowflake = function (scale, field, depth, mcID) {
this.velX = 0;
this.velY = -10;
this.d = 200;
this.scale = scale;
this._field = field;
this.mcID = mcID;
this.timeline = eval (_target);
this.attachGraphic(mcID, depth);
this.brownAmp = 0.2;
};
Object.rpenner.Snowflake.prototype.live = function () {
this.t++;
this.move();
this.renderXY();
};
Object.rpenner.Snowflake.prototype.move = function () {
if (!(this.t % 10)) {
this.brown = this.getBrown();
}
this.velX = this.velX + (this.brown + this._field.wind);
this.x = this.x + ((this.velX = this.velX * 0.97));
this.y = this.y + this.velY;
};
Object.rpenner.Snowflake.prototype.getBrown = function () {
return((random(20) - 10) * 0.02);
};
Object.rpenner.Snowflake.prototype.renderXY = function () {
var lm = this._field.limits;
with (this.mc) {
_x = this.x * this.pers;
_y = (-this.y) * this.pers;
if (lm.ymax < _y) {
this.setScreenY(lm.ymin);
}
if (lm.xmax < _x) {
this.setScreenX(lm.xmin);
} else if (_x < lm.xmin) {
this.setScreenX(lm.xmax);
}
}
};
Object.rpenner.Snowflake.prototype.setScreenX = function (x) {
this.x = ((this.mc._x = x)) / this.pers;
};
Object.rpenner.Snowflake.prototype.setScreenY = function (y) {
this.y = ((this.mc._y = y)) / this.pers;
};
Object.rpenner.Snowflake.prototype.setScreenXY = function (x, y) {
this.mc._x = x;
this.x = x / this.pers;
this.mc._y = y;
this.y = (-y) / this.pers;
};
Object.rpenner.Snowflake.prototype.setScreenY = function (y) {
this.mc._y = y;
this.y = (-y) / this.pers;
};
Object.rpenner.Snowflake.prototype.setZ = function (z) {
this.z = z;
this.pers = this.d / (this.d + this.z);
this.renderZ();
};
Object.rpenner.Snowflake.prototype.renderZ = function () {
with (this.mc) {
_xscale = (_yscale = (this.pers * this.scale) * 100);
}
var depth = Math.floor(100000 - (this.z * 10));
this.mc.swapDepths(depth);
};
Object.rpenner.Snowflake.prototype.attachGraphic = function (id, depth) {
this.timeline.attachMovie(id, id + depth, depth);
this.mc = this.timeline[id + depth];
};
Instance of Symbol 46 MovieClip in Symbol 94 MovieClip Frame 41
onClipEvent (load) {
seconds = 60;
}
Symbol 94 MovieClip Frame 43
peng.play();
Symbol 94 MovieClip Frame 58
peng.gotoAndStop(1);
Instance of Symbol 46 MovieClip in Symbol 94 MovieClip Frame 58
onClipEvent (load) {
seconds = 20;
}
Instance of Symbol 46 MovieClip in Symbol 94 MovieClip Frame 59
onClipEvent (load) {
seconds = 25;
}
Instance of Symbol 46 MovieClip in Symbol 94 MovieClip Frame 60
onClipEvent (load) {
seconds = 50;
}
Instance of Symbol 46 MovieClip in Symbol 94 MovieClip Frame 61
onClipEvent (load) {
seconds = 25;
}
Symbol 94 MovieClip Frame 68
jumper.play();
Symbol 94 MovieClip Frame 78
_root.music.gotoAndPlay("optus");
Instance of Symbol 46 MovieClip in Symbol 94 MovieClip Frame 85
onClipEvent (load) {
seconds = 25;
}
Instance of Symbol 46 MovieClip in Symbol 94 MovieClip Frame 86
onClipEvent (load) {
seconds = 5;
}
Instance of Symbol 46 MovieClip in Symbol 94 MovieClip Frame 92
onClipEvent (load) {
seconds = 10;
}
Instance of Symbol 46 MovieClip in Symbol 94 MovieClip Frame 93
onClipEvent (load) {
seconds = 7;
}
Instance of Symbol 46 MovieClip in Symbol 94 MovieClip Frame 104
onClipEvent (load) {
seconds = 13;
}
Instance of Symbol 46 MovieClip in Symbol 94 MovieClip Frame 105
onClipEvent (load) {
seconds = 4;
}
Symbol 94 MovieClip Frame 106
peng.play();
Instance of Symbol 46 MovieClip in Symbol 94 MovieClip Frame 112
onClipEvent (load) {
seconds = 9;
}
Symbol 94 MovieClip Frame 113
count = 1;
Symbol 94 MovieClip Frame 114
if (repeater >= 1) {
gotoAndPlay (189);
} else {
play();
}
count = count + 1;
Instance of Symbol 46 MovieClip in Symbol 94 MovieClip Frame 114
onClipEvent (load) {
seconds = 4;
}
Symbol 94 MovieClip Frame 116
peng.gotoAndPlay("top");
Instance of Symbol 46 MovieClip in Symbol 94 MovieClip Frame 120
onClipEvent (load) {
seconds = 10;
}
Symbol 94 MovieClip Frame 121
if (reshot >= 1) {
gotoAndPlay (198);
} else {
play();
}
Instance of Symbol 46 MovieClip in Symbol 94 MovieClip Frame 121
onClipEvent (load) {
seconds = 15;
}
Symbol 94 MovieClip Frame 176
peng.gotoAndPlay("jump");
Instance of Symbol 46 MovieClip in Symbol 94 MovieClip Frame 176
onClipEvent (load) {
seconds = 50;
}
Symbol 94 MovieClip Frame 177
peng.gotoAndPlay("turn");
Symbol 94 MovieClip Frame 188
repeater = 1;
gotoAndPlay (105);
Symbol 94 MovieClip Frame 189
stop();
peng.gotoAndPlay("turn2");
Instance of Symbol 46 MovieClip in Symbol 94 MovieClip Frame 190
onClipEvent (load) {
seconds = 15;
}
Instance of Symbol 46 MovieClip in Symbol 94 MovieClip Frame 197
onClipEvent (load) {
seconds = 8;
}
Symbol 94 MovieClip Frame 198
reshot = 0;
Instance of Symbol 46 MovieClip in Symbol 94 MovieClip Frame 199
onClipEvent (load) {
seconds = 2;
}
Instance of Symbol 46 MovieClip in Symbol 94 MovieClip Frame 208
onClipEvent (load) {
seconds = 8;
}
Symbol 94 MovieClip Frame 209
if (1 >= count) {
gotoAndPlay (114);
} else {
_root.play();
}
Symbol 97 MovieClip Frame 1
stop();
Symbol 97 MovieClip Frame 2
stop();
Symbol 97 MovieClip Frame 3
stop();
Symbol 111 Button
on (release) {
stopAllSounds();
trace(_root.dialogSendMsg.msg);
if (_root.dialogSendMsg._visible == true) {
_root.savedMessage = _root.dialogSendMsg.msg;
_root.savedref_name = _root.dialogSendMsg.ref_name;
_root.savedfirstname = _root.dialogSendMsg.firstname;
_root.savedemail = _root.dialogSendMsg.email;
}
_root.gotoAndPlay("replay");
}
Symbol 115 Button
on (release) {
_root.dialogSendMsg._visible = true;
_root.dialogSendMsg.swear = "";
_root.dialogSendMsg.msg = _root.savedMessage;
_root.dialogSendMsg.ref_name = _root.savedref_name;
_root.dialogSendMsg.firstname = _root.savedfirstname;
_root.dialogSendMsg.email = _root.savedemail;
gotoAndPlay (2);
}
Symbol 119 Button
on (release) {
_root.dialogSendMsg._visible = false;
_root.dialogSendMsg.swear = "";
_root.dialogSendMsg.msg = _root.savedMessage;
_root.dialogSendMsg.ref_name = _root.savedref_name;
_root.dialogSendMsg.firstname = _root.savedfirstname;
_root.dialogSendMsg.email = _root.savedemail;
gotoAndPlay (2);
}
Symbol 120 Button
on (release) {
_root.dialogSendMsg._visible = true;
_root.dialogSendMsg.swear = "";
_root.dialogSendMsg.msg = _root.savedMessage;
_root.dialogSendMsg.ref_name = _root.savedref_name;
_root.dialogSendMsg.firstname = _root.savedfirstname;
_root.dialogSendMsg.email = _root.savedemail;
gotoAndPlay (2);
}
Symbol 121 MovieClip Frame 1
stop();
Symbol 121 MovieClip Frame 2
stop();
Symbol 121 MovieClip Frame 3
stop();
Instance of Symbol 46 MovieClip in Symbol 123 MovieClip Frame 1
onClipEvent (load) {
seconds = 65;
}
Symbol 123 MovieClip Frame 35
stop();
Symbol 350 MovieClip Frame 1
stop();
Symbol 355 Button
on (rollOver) {
extras.play();
}
Symbol 367 MovieClip Frame 1
stop();
Instance of Symbol 46 MovieClip in Symbol 367 MovieClip Frame 5
onClipEvent (load) {
seconds = 30;
}
Symbol 374 Button
on (release) {
var swear_words_arr = new Array("fuck", "pussy", "shit", "cunt", "dick", "prick", "cock", "dickhead", "blowjob", "wanker", "tits", "nigger", "twat", "bitch", "motherfucker", "asshole", "dyke", "fag", "poof", "whore", "slut", "penis", "vagina", "nipples", "testicles", "scrotum", "semen");
var swear_alert_arr = new Array();
var swear_alert_count = 0;
var i = 0;
while (i < swear_words_arr.length) {
var j = 0;
while (j < msg.length) {
if (swear_words_arr[i] == msg.substring(j, j + swear_words_arr[i].length).toLowerCase()) {
swear_alert_arr[swear_alert_count] = msg.substring(j, j + swear_words_arr[i].length);
swear_alert_count++;
}
j++;
}
i++;
}
var alert_text = "";
var k = 1;
while (swear_alert_count >= k) {
alert_text = alert_text + ((("\n(" + k) + ") ") + swear_alert_arr[k - 1]);
k++;
}
if (0 < swear_alert_count) {
swear = "Sorry this word is not accepted.";
msg = "";
} else if (msg.length < 1) {
status.play();
} else {
_root.msg = msg;
_visible = false;
_root.gotoAndPlay("render");
_root.menu.panel.sender.gotoAndStop(3);
}
_root.savedMessage = _root.dialogSendMsg.msg;
_root.savedref_name = _root.dialogSendMsg.ref_name;
_root.savedfirstname = _root.dialogSendMsg.firstname;
_root.savedemail = _root.dialogSendMsg.email;
}
Symbol 378 Button
on (release) {
var swear_words_arr = new Array("fuck", "pussy", "shit", "cunt", "dick", "prick", "cock", "dickhead", "blowjob", "wanker", "tits", "nigger", "twat", "bitch", "motherfucker", "asshole", "dyke", "fag", "poof", "whore", "slut", "penis", "vagina", "nipples", "testicles", "scrotum", "semen");
var swear_alert_arr = new Array();
var swear_alert_count = 0;
var i = 0;
while (i < swear_words_arr.length) {
var j = 0;
while (j < msg.length) {
if (swear_words_arr[i] == msg.substring(j, j + swear_words_arr[i].length).toLowerCase()) {
swear_alert_arr[swear_alert_count] = msg.substring(j, j + swear_words_arr[i].length);
swear_alert_count++;
}
j++;
}
i++;
}
var alert_text = "";
var k = 1;
while (swear_alert_count >= k) {
alert_text = alert_text + ((("\n(" + k) + ") ") + swear_alert_arr[k - 1]);
k++;
}
if (0 < swear_alert_count) {
swear = "Sorry this word is not accepted.";
} else {
automail = "/optusxmas/flash/automail.email";
thankyou = "/optusxmas/flash/thankyou.html";
redo = "/optusxmas/flash/redo.html";
error = "/optusxmas/flash/redo.html";
id = msg;
sta.stat = "";
if (ref_name.length < 1) {
sta.stat = "Your Name Required";
} else if (firstname.length < 1) {
sta.stat = "Friends Name Required";
} else if (email.length < 1) {
sta.stat = "Email Address Required";
} else if (msg.length < 1) {
sta.stat = "Please Write a Message";
}
friendemail = _root.friendemail;
if (sta.stat != "") {
sta.gotoAndPlay(5);
} else {
sta.stat = "Sending...";
sta.gotoAndPlay(2);
loadVariables ("http://www.returnity.com/cgi-bin/Signup?pubid=169", "", "POST");
}
}
}
Symbol 381 Button
on (release) {
gotoAndPlay (2);
_root.dialogSendMsg.swear = "";
}
Symbol 382 MovieClip Frame 1
stop();
Symbol 382 MovieClip Frame 2
_root.dialogSendMsg._visible = false;
_root.menu.panel.sender.gotoAndStop(1);
Symbol 387 MovieClip Frame 4
stop();
Symbol 392 MovieClip Frame 1
stop();
Symbol 392 MovieClip Frame 4
if ((_parent.done == 1) || (150 < counter)) {
if (_parent.error != "error") {
stat = "Message Sent";
_parent.email = "";
_parent.firstname = "";
} else {
stat = "Error Sending Message";
}
} else {
counter++;
gotoAndPlay (2);
}
Symbol 392 MovieClip Frame 27
counter = 0;
Symbol 401 MovieClip Frame 1
stop();
Symbol 401 MovieClip Frame 8
stop();
Symbol 401 MovieClip Frame 9
gotoAndPlay (8);
Symbol 407 Button
on (release) {
getURL ("http://www.optus.com.au/privacy/", "_blank");
}
Symbol 410 MovieClip Frame 5
stop();