Frame 1
stop();
stage.showMenu = false;
Instance of Symbol 38 MovieClip in Frame 1
onClipEvent (enterFrame) {
_root.b_loaded = _root.getBytesLoaded();
_root.b_total = _root.getBytesTotal();
_root.percent = Math.round((_root.b_loaded / _root.b_total) * 100);
this._width = _root.percent * 7;
if (_root.percent == 100) {
_root.play();
}
}
Instance of Symbol 49 MovieClip "cursor" in Frame 1
onClipEvent (enterFrame) {
Mouse.hide();
_y = _root._ymouse;
_x = _root._xmouse;
}
onClipEvent (load) {
this.swapDepths(15001);
}
Instance of Symbol 53 MovieClip in Frame 1
onClipEvent (load) {
this.swapDepths(15000);
}
Frame 2
stop();
Frame 3
if (asx == 3) {
stopAllSounds();
gotoAndStop (6);
}
Instance of Symbol 49 MovieClip "cursor" in Frame 3
onClipEvent (enterFrame) {
Mouse.hide();
_y = _root._ymouse;
_x = _root._xmouse;
}
onClipEvent (load) {
this.swapDepths(15001);
}
Instance of Symbol 53 MovieClip in Frame 3
onClipEvent (load) {
this.swapDepths(15000);
}
Frame 4
stop();
Frame 6
function bumpOwnCard() {
_root.asx = 0;
_root.editor._visible = false;
stopAllSounds();
_root.gotoAndPlay("Menu", 1);
gotoAndPlay (3);
}
_root.editor._visible = true;
this.onEnterFrame = function () {
i = 1;
while (i <= 3) {
this[("hexc" + i) + "Text"].onKillFocus = function () {
hexMode = false;
};
this[("hexc" + i) + "Text"].onSetFocus = function () {
hexMode = true;
};
fader = this["fader" + i].knob;
if (dragging) {
this["c" + i] = fader._y;
this["hc" + i] = this["c" + i].toString(16);
} else if (hexMode) {
fader._y = parseInt("0x" + this["hc" + i]);
this["c" + i] = parseInt("0x" + this["hc" + i]);
} else {
fader._y = this["c" + i];
this["hc" + i] = Number(this["c" + i]).toString(16);
if (this["c" + i] > 255) {
this["c" + i] = 255;
}
}
i++;
}
};
stop();
if (_root.asx == 1) {
_root.roomstyle = 1;
_root.present1 = 0;
_root.present2 = 0;
_root.present3 = 0;
_root.outside = 1;
_root.lightradius = 0;
_root.santa = 0;
_root.sharpnessz = 1;
_root.treecolor = 1;
_root.treetop = 1;
_root.environment = 0;
_root.treestump = 1;
_root.fireplace = 0;
_root.bulbtotal = 0;
_root.lamptotal = 0;
_root.sfxsetter = 1;
}
if (_root.asx == 2) {
datastuff = _root.loadcode.split(", ");
_root.roomstyle = datastuff[0];
_root.present1 = datastuff[1];
_root.present2 = datastuff[2];
_root.present3 = datastuff[3];
_root.outside = datastuff[4];
_root.lightradius = datastuff[5];
_root.santa = datastuff[6];
_root.sharpnessz = datastuff[7];
_root.treecolor = datastuff[8];
_root.treestump = datastuff[9];
_root.treetop = datastuff[10];
_root.environment = datastuff[11];
_root.fireplace = datastuff[12];
_root.bulbtotal = datastuff[13];
_root.lamptotal = datastuff[14];
_root.sfxsetter = datastuff[15];
bulbsnums = new Array();
_root.bulbtotal = Number(_root.bulbtotal);
i = 1;
while (i < (_root.bulbtotal + 1)) {
o = 16 + i;
_root.bulbsnums[i] = datastuff[o];
_root.bulbsnums[i] = _root.bulbsnums[i].split("b:")[1];
_root["bulbnum" + i] = _root.bulbsnums[i];
da_bulb = _root.bulbsnums[i].split("-");
l_y = da_bulb[0];
l_x = da_bulb[1];
l_yscale = da_bulb[2];
l_xscale = da_bulb[3];
l_lolvar = da_bulb[4];
l_color = da_bulb[5];
xsetdepth = 400 + i;
_root.attachMovie("item_hang", "item_hang" + i, xsetdepth);
_root["item_hang" + i]._y = l_y;
_root["item_hang" + i]._x = l_x;
_root["item_hang" + i]._yscale = l_yscale;
_root["item_hang" + i]._xscale = l_xscale;
_root["item_hang" + i].lolvar = l_lolvar;
_root["item_hang" + i].gotoAndStop(_root["item_hang" + i].lolvar);
_root["item_hang" + i].colorset = l_color;
i++;
}
_root.lamptotal = Number(_root.lamptotal);
lampsnums = new Array();
i = 1;
while (i < (_root.lamptotal + 1)) {
o = 8;
o = o + _root.lamptotal;
o = o + i;
_root.lampsnums[i] = datastuff[o];
_root.lampsnums[i] = _root.lampsnums[i].split("l:")[1];
_root["lampnum" + i] = _root.lampsnums[i];
da_lamp = _root.lampsnums[i].split("-");
b_y = da_lamp[0];
b_x = da_lamp[1];
b_lolvar = da_lamp[2];
b_brvar = da_lamp[3];
b_rotation = da_lamp[4];
xsetdepth = (410 + _root.bulbtotal) + i;
_root.attachMovie("lamp_hang", "lamp_hang" + i, xsetdepth);
_root["lamp_hang" + i]._y = b_y;
_root["lamp_hang" + i]._x = b_x;
_root["lamp_hang" + i].lolvar = b_lolvar;
_root["lamp_hang" + i].brvar = b_brvar;
_root["lamp_hang" + i]._rotation = b_rotation;
_root["lamp_hang" + i].gotoAndStop(_root["lamp_hang" + i].lolvar);
i++;
}
}
if (_root.asx == 3) {
editor.gotoAndStop(9);
datastuff = _root.treecode.split(", ");
_root.roomstyle = datastuff[0];
_root.present1 = datastuff[1];
_root.present2 = datastuff[2];
_root.present3 = datastuff[3];
_root.outside = datastuff[4];
_root.lightradius = datastuff[5];
_root.santa = datastuff[6];
_root.sharpnessz = datastuff[7];
_root.treecolor = datastuff[8];
_root.treestump = datastuff[9];
_root.treetop = datastuff[10];
_root.environment = datastuff[11];
_root.fireplace = datastuff[12];
_root.bulbtotal = datastuff[13];
_root.lamptotal = datastuff[14];
_root.sfxsetter = datastuff[15];
bulbsnums = new Array();
_root.bulbtotal = Number(_root.bulbtotal);
i = 1;
while (i < (_root.bulbtotal + 1)) {
o = 16 + i;
_root.bulbsnums[i] = datastuff[o];
_root.bulbsnums[i] = _root.bulbsnums[i].split("b:")[1];
_root["bulbnum" + i] = _root.bulbsnums[i];
da_bulb = _root.bulbsnums[i].split("-");
l_y = da_bulb[0];
l_x = da_bulb[1];
l_yscale = da_bulb[2];
l_xscale = da_bulb[3];
l_lolvar = da_bulb[4];
l_color = da_bulb[5];
xsetdepth = 400 + i;
_root.attachMovie("item_hang", "item_hang" + i, xsetdepth);
_root["item_hang" + i]._y = l_y;
_root["item_hang" + i]._x = l_x;
_root["item_hang" + i]._yscale = l_yscale;
_root["item_hang" + i]._xscale = l_xscale;
_root["item_hang" + i].lolvar = l_lolvar;
_root["item_hang" + i].gotoAndStop(_root["item_hang" + i].lolvar);
_root["item_hang" + i].colorset = l_color;
i++;
}
_root.lamptotal = Number(_root.lamptotal);
lampsnums = new Array();
i = 1;
while (i < (_root.lamptotal + 1)) {
o = 8;
o = o + _root.lamptotal;
o = o + i;
_root.lampsnums[i] = datastuff[o];
_root.lampsnums[i] = _root.lampsnums[i].split("l:")[1];
_root["lampnum" + i] = _root.lampsnums[i];
da_lamp = _root.lampsnums[i].split("-");
b_y = da_lamp[0];
b_x = da_lamp[1];
b_lolvar = da_lamp[2];
b_brvar = da_lamp[3];
b_rotation = da_lamp[4];
xsetdepth = (410 + _root.bulbtotal) + i;
_root.attachMovie("lamp_hang", "lamp_hang" + i, xsetdepth);
_root["lamp_hang" + i]._y = b_y;
_root["lamp_hang" + i]._x = b_x;
_root["lamp_hang" + i].lolvar = b_lolvar;
_root["lamp_hang" + i].brvar = b_brvar;
_root["lamp_hang" + i]._rotation = b_rotation;
_root["lamp_hang" + i].gotoAndStop(_root["lamp_hang" + i].lolvar);
i++;
}
}
_root._quality = "MEDIUM";
Instance of Symbol 149 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (_root.outside == 0) {
this._visible = false;
} else if (_root.outside > 0) {
this._visible = true;
this.gotoAndStop(_root.outside);
}
}
Instance of Symbol 149 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (_root.outside == 0) {
this._visible = false;
} else if (_root.outside > 0) {
this._visible = true;
this.gotoAndStop(_root.outside);
}
}
Instance of Symbol 157 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (_root.roomstyle == 0) {
this._visible = false;
} else if (_root.roomstyle > 0) {
this._visible = true;
this.gotoAndStop(_root.roomstyle);
}
}
Instance of Symbol 159 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (_root.fireplace == 0) {
this._visible = false;
} else {
this._visible = true;
}
}
Instance of Symbol 166 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (_root.present2 == 0) {
this._visible = false;
} else if (_root.present2 > 0) {
this._visible = true;
this.gotoAndStop(_root.present2);
}
}
Instance of Symbol 166 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (_root.present3 == 0) {
this._visible = false;
} else if (_root.present3 > 0) {
this._visible = true;
this.gotoAndStop(_root.present3);
}
}
Instance of Symbol 172 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (_root.lightradius == 0) {
this._visible = false;
} else if (_root.lightradius > 0) {
this._visible = true;
this.gotoAndStop(_root.lightradius);
}
}
Instance of Symbol 172 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (_root.lightradius == 0) {
this._visible = false;
} else if (_root.lightradius > 0) {
this._visible = true;
this.gotoAndStop(_root.lightradius);
}
}
Instance of Symbol 179 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (_root.treestump == 0) {
this._visible = false;
} else if (_root.treestump > 0) {
this._visible = true;
this.gotoAndStop(_root.treestump);
}
}
Instance of Symbol 200 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (_root.sharpnessz == 0) {
this._visible = false;
} else if (_root.sharpnessz > 0) {
this._visible = true;
this.gotoAndStop(_root.sharpnessz);
}
}
Instance of Symbol 208 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (_root.treetop == 0) {
this._visible = false;
} else if (_root.treetop > 0) {
this._visible = true;
this.gotoAndStop(_root.treetop);
}
}
Instance of Symbol 166 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (_root.present1 == 0) {
this._visible = false;
} else if (_root.present1 > 0) {
this._visible = true;
this.gotoAndStop(_root.present1);
}
}
Instance of Symbol 210 MovieClip in Frame 6
onClipEvent (mouseDown) {
if ((_root.yhepneys == true) && (this.hitTest(_root.cursor.tarTop))) {
_root.attachMovie("item_hang", "item_hang" + _root.bulbtotal, xsetdepth);
_root["item_hang" + _root.bulbtotal]._y = _root.cursor._y;
_root["item_hang" + _root.bulbtotal]._x = _root.cursor._x;
_root["item_hang" + _root.bulbtotal]._yscale = _root.editor.pre_go._yscale;
_root["item_hang" + _root.bulbtotal]._xscale = _root.editor.pre_go._xscale;
_root["item_hang" + _root.bulbtotal].lolvar = _root.editor.pre_go.lolvar;
_root["item_hang" + _root.bulbtotal].gotoAndStop(_root["item_hang" + bulbtotal].lolvar);
_root["item_hang" + _root.bulbtotal].colorset = _root.editor.pre_go.colorset;
_root["bulbnum" + _root.bulbtotal] = ((((((((((("" + _root.cursor._y) + "-") + _root.cursor._x) + "-") + _root.editor.pre_go._yscale) + "-") + _root.editor.pre_go._xscale) + "-") + _root.editor.pre_go.lolvar) + "-") + _root.editor.pre_go.colorset) + "";
_root["item_hang" + _root.bulbtotal].onMouseDown = function () {
if (((_root.deletion == true) && (this.hitTest(_root.cursor.tarTop))) && (this._visible == true)) {
rf = this._name;
rf = rf.split("item_hang")[1];
rf = Number(rf);
trace(rf);
i = rf + 1;
while (i < _root.bulbtotal) {
sf = _root["item_hang" + i]._name;
sf = sf.split("item_hang")[1];
sf = Number(sf);
sf--;
_root["item_hang" + i]._name = _root["item_hang" + sf];
i++;
}
this.removeMovieClip();
this._visible = false;
_root.bulbtotal--;
}
};
xsetdepth = xsetdepth + 1;
_root.bulbtotal++;
}
if ((_root.yhepneys2 == true) && (this.hitTest(_root.cursor.tarTop))) {
_root.attachMovie("lamp_hang", "lamp_hang" + _root.lamptotal, xsetdepth);
_root["lamp_hang" + _root.lamptotal]._y = _root.cursor._y;
_root["lamp_hang" + _root.lamptotal]._x = _root.cursor._x;
_root["lamp_hang" + _root.lamptotal].lolvar = _root.editor.pre_lamp.lolvar;
_root["lamp_hang" + _root.lamptotal].brvar = _root.editor.pre_lamp.brvar;
_root["lamp_hang" + _root.lamptotal]._rotation = _root.editor.pre_lamp._rotation;
_root["lamp_hang" + _root.lamptotal].gotoAndStop(_root["lamp_hang" + _root.lamptotal].lolvar);
_root["lampnum" + _root.lamptotal] = ((((((((("" + _root.cursor._y) + "-") + _root.cursor._x) + "-") + _root.editor.pre_lamp.lolvar) + "-") + _root.editor.pre_lamp.brvar) + "-") + _root.editor.pre_lamp._rotation) + "";
_root["lamp_hang" + _root.lamptotal].onMouseDown = function () {
if (((_root.deletion == true) && (this.hitTest(_root.cursor.tarTop))) && (this._visible == true)) {
this.removeMovieClip();
this._visible = false;
_root.lamptotal--;
}
};
xsetdepth = xsetdepth + 1;
_root.lamptotal++;
}
}
onClipEvent (load) {
xsetdepth = 400;
}
Instance of Symbol 214 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (_root.santa == 0) {
this._visible = false;
} else if (_root.santa > 0) {
this._visible = true;
this.gotoAndStop(_root.santa);
}
}
onClipEvent (load) {
this.swapDepths(14992);
}
Instance of Symbol 217 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (_root.environment == 0) {
this._visible = false;
} else if (_root.environment > 0) {
this._visible = true;
this.gotoAndStop(_root.environment);
}
}
onClipEvent (load) {
this.swapDepths(14993);
}
Instance of Symbol 395 MovieClip "editor" in Frame 6
onClipEvent (load) {
this.swapDepths(14994);
}
Instance of Symbol 399 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (_root.hc1 < 10) {
part1 = ("0" + _root.hc1) + "";
} else {
part1 = ("" + _root.hc1) + "";
}
if (_root.hc2 < 10) {
part2 = ("0" + _root.hc2) + "";
} else {
part2 = ("" + _root.hc2) + "";
}
if (_root.hc3 < 10) {
part3 = ("0" + _root.hc3) + "";
} else {
part3 = ("" + _root.hc3) + "";
}
_root.setcolor = ((((("0x" + part1) + "") + part2) + "") + part3) + "";
_root.editor.pre_go.colorset = _root.setcolor;
if (_root.yhepneys == true) {
this._visible = true;
} else if (_root.yhepneys == false) {
this._visible = false;
}
}
onClipEvent (load) {
this.swapDepths(14999);
}
Instance of Symbol 408 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (_root.yhepneys == true) {
this._visible = true;
} else if (_root.yhepneys == false) {
this._visible = false;
}
}
onClipEvent (load) {
this.swapDepths(14998);
}
Instance of Symbol 415 MovieClip "fader1" in Frame 6
onClipEvent (enterFrame) {
if (_root.yhepneys == true) {
this._visible = true;
} else if (_root.yhepneys == false) {
this._visible = false;
}
}
onClipEvent (load) {
this.swapDepths(14995);
}
Instance of Symbol 415 MovieClip "fader2" in Frame 6
onClipEvent (enterFrame) {
if (_root.yhepneys == true) {
this._visible = true;
} else if (_root.yhepneys == false) {
this._visible = false;
}
}
onClipEvent (load) {
this.swapDepths(14996);
}
Instance of Symbol 415 MovieClip "fader3" in Frame 6
onClipEvent (enterFrame) {
if (_root.yhepneys == true) {
this._visible = true;
} else if (_root.yhepneys == false) {
this._visible = false;
}
}
onClipEvent (load) {
this.swapDepths(14997);
}
Instance of Symbol 430 MovieClip in Frame 6
onClipEvent (mouseDown) {
if (_root.cursor.tarTop.hitTest(this)) {
if (_root.sfxsetter == 6) {
this.gotoAndStop(1);
} else {
this.nextFrame();
}
}
}
onClipEvent (load) {
this.gotoAndStop(_root.sfxsetter);
}
Instance of Symbol 49 MovieClip "cursor" in Frame 6
onClipEvent (enterFrame) {
Mouse.hide();
_y = _root._ymouse;
_x = _root._xmouse;
}
onClipEvent (load) {
this.swapDepths(15001);
}
Instance of Symbol 53 MovieClip in Frame 6
onClipEvent (load) {
this.swapDepths(15000);
}
Symbol 8 MovieClip Frame 1
stop();
Symbol 14 MovieClip [lamp_hang] Frame 1
stop();
Instance of Symbol 8 MovieClip in Symbol 14 MovieClip [lamp_hang] Frame 1
onClipEvent (enterFrame) {
this.gotoAndStop(_parent.brvar);
}
Instance of Symbol 16 MovieClip "color" in Symbol 18 MovieClip Frame 1
onClipEvent (load) {
oKleur = new Color(this);
oKleur.setRGB(_parent._parent.colorset);
}
onClipEvent (enterFrame) {
oKleur = new Color(this);
oKleur.setRGB(_parent._parent.colorset);
}
Instance of Symbol 22 MovieClip "color" in Symbol 24 MovieClip Frame 1
onClipEvent (load) {
oKleur = new Color(this);
oKleur.setRGB(_parent._parent.colorset);
}
onClipEvent (enterFrame) {
oKleur = new Color(this);
oKleur.setRGB(_parent._parent.colorset);
}
Instance of Symbol 27 MovieClip "color" in Symbol 29 MovieClip Frame 1
onClipEvent (load) {
oKleur = new Color(this);
oKleur.setRGB(_parent._parent.colorset);
}
onClipEvent (enterFrame) {
oKleur = new Color(this);
oKleur.setRGB(_parent._parent.colorset);
}
Instance of Symbol 32 MovieClip "color" in Symbol 34 MovieClip Frame 1
onClipEvent (load) {
oKleur = new Color(this);
oKleur.setRGB(_parent._parent.colorset);
}
onClipEvent (enterFrame) {
oKleur = new Color(this);
oKleur.setRGB(_parent._parent.colorset);
}
Symbol 36 MovieClip [item_hang] Frame 1
stop();
Symbol 108 MovieClip Frame 121
_alpha = (_alpha - 10);
Symbol 108 MovieClip Frame 122
_alpha = (_alpha - 10);
Symbol 108 MovieClip Frame 123
_alpha = (_alpha - 10);
Symbol 108 MovieClip Frame 124
_alpha = (_alpha - 10);
Symbol 108 MovieClip Frame 125
_alpha = (_alpha - 10);
Symbol 108 MovieClip Frame 126
_alpha = (_alpha - 10);
Symbol 108 MovieClip Frame 127
_alpha = (_alpha - 10);
Symbol 108 MovieClip Frame 128
_alpha = (_alpha - 10);
Symbol 108 MovieClip Frame 129
_alpha = (_alpha - 10);
Symbol 108 MovieClip Frame 130
_alpha = (_alpha - 10);
Symbol 108 MovieClip Frame 131
_root.play();
Symbol 125 Button
on (release) {
getURL ("http://www.armorgames.com", "_blank");
}
Symbol 130 Button
on (release) {
getURL ("http://www.eviludy.net", "_blank");
}
Symbol 131 Button
on (release) {
stopAllSounds();
_root.asx = 1;
gotoAndStop (6);
}
Symbol 132 Button
on (release) {
nextFrame();
}
Symbol 134 Button
on (release) {
stopAllSounds();
_root.asx = 2;
gotoAndStop (6);
}
Symbol 149 MovieClip Frame 1
stop();
Symbol 157 MovieClip Frame 1
stop();
Symbol 166 MovieClip Frame 1
stop();
Symbol 172 MovieClip Frame 1
stop();
Symbol 179 MovieClip Frame 1
stop();
Symbol 183 MovieClip Frame 1
stop();
Symbol 187 MovieClip Frame 1
stop();
Symbol 191 MovieClip Frame 1
stop();
Symbol 195 MovieClip Frame 1
stop();
Symbol 199 MovieClip Frame 1
stop();
Symbol 200 MovieClip Frame 1
stop();
Instance of Symbol 183 MovieClip in Symbol 200 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.treecolor == 0) {
this._visible = false;
} else if (_root.treecolor > 0) {
this._visible = true;
this.gotoAndStop(_root.treecolor);
}
}
Instance of Symbol 187 MovieClip in Symbol 200 MovieClip Frame 2
onClipEvent (enterFrame) {
if (_root.treecolor == 0) {
this._visible = false;
} else if (_root.treecolor > 0) {
this._visible = true;
this.gotoAndStop(_root.treecolor);
}
}
Instance of Symbol 191 MovieClip in Symbol 200 MovieClip Frame 3
onClipEvent (enterFrame) {
if (_root.treecolor == 0) {
this._visible = false;
} else if (_root.treecolor > 0) {
this._visible = true;
this.gotoAndStop(_root.treecolor);
}
}
Instance of Symbol 195 MovieClip in Symbol 200 MovieClip Frame 4
onClipEvent (enterFrame) {
if (_root.treecolor == 0) {
this._visible = false;
} else if (_root.treecolor > 0) {
this._visible = true;
this.gotoAndStop(_root.treecolor);
}
}
Instance of Symbol 199 MovieClip in Symbol 200 MovieClip Frame 5
onClipEvent (enterFrame) {
if (_root.treecolor == 0) {
this._visible = false;
} else if (_root.treecolor > 0) {
this._visible = true;
this.gotoAndStop(_root.treecolor);
}
}
Symbol 208 MovieClip Frame 1
stop();
Symbol 214 MovieClip Frame 1
stop();
Symbol 217 MovieClip Frame 1
stop();
Symbol 228 Button
on (release) {
nextFrame();
}
Symbol 235 Button
on (release) {
if (_root.roomstyle < 7) {
_root.roomstyle++;
}
}
Symbol 238 Button
on (release) {
if (_root.roomstyle > 1) {
_root.roomstyle--;
}
}
Symbol 242 Button
on (release) {
if (_root.present1 < 5) {
_root.present1++;
}
}
Symbol 243 Button
on (release) {
if (_root.present1 > 0) {
_root.present1--;
}
}
Symbol 246 Button
on (release) {
if (_root.present3 < 5) {
_root.present3++;
}
}
Symbol 247 Button
on (release) {
if (_root.present3 > 0) {
_root.present3--;
}
}
Symbol 250 Button
on (release) {
if (_root.present2 < 5) {
_root.present2++;
}
}
Symbol 251 Button
on (release) {
if (_root.present2 > 0) {
_root.present2--;
}
}
Symbol 254 Button
on (release) {
if (_root.outside < 10) {
_root.outside++;
}
}
Symbol 255 Button
on (release) {
if (_root.outside > 1) {
_root.outside--;
}
}
Symbol 258 Button
on (release) {
if (_root.lightradius < 5) {
_root.lightradius++;
}
}
Symbol 259 Button
on (release) {
if (_root.lightradius > 0) {
_root.lightradius--;
}
}
Symbol 262 Button
on (release) {
if (_root.santa < 3) {
_root.santa++;
}
}
Symbol 263 Button
on (release) {
if (_root.santa > 0) {
_root.santa--;
}
}
Symbol 266 Button
on (release) {
if (_root.environment < 2) {
_root.environment++;
}
}
Symbol 267 Button
on (release) {
if (_root.environment > 0) {
_root.environment--;
}
}
Symbol 273 Button
on (release) {
prevFrame();
}
Symbol 274 Button
on (release) {
if (_root.sharpnessz < 5) {
_root.sharpnessz++;
}
}
Symbol 275 Button
on (release) {
if (_root.sharpnessz > 1) {
_root.sharpnessz--;
}
}
Symbol 278 Button
on (release) {
if (_root.treecolor < 3) {
_root.treecolor++;
}
}
Symbol 279 Button
on (release) {
if (_root.treecolor > 1) {
_root.treecolor--;
}
}
Symbol 282 Button
on (release) {
if (_root.treetop < 7) {
_root.treetop++;
}
}
Symbol 283 Button
on (release) {
if (_root.treetop > 0) {
_root.treetop--;
}
}
Symbol 286 Button
on (release) {
if (_root.treestump < 6) {
_root.treestump++;
}
}
Symbol 287 Button
on (release) {
if (_root.treestump > 1) {
_root.treestump--;
}
}
Symbol 296 Button
on (release) {
gotoAndStop (3);
}
Symbol 299 Button
on (release) {
gotoAndStop (4);
}
Symbol 302 Button
on (release) {
gotoAndStop (7);
}
Symbol 305 Button
on (release) {
keypart_a = ((((((((((((((((((((((((((((((("" + _root.roomstyle) + ", ") + _root.present1) + ", ") + _root.present2) + ", ") + _root.present3) + ", ") + _root.outside) + ", ") + _root.lightradius) + ", ") + _root.santa) + ", ") + _root.sharpnessz) + ", ") + _root.treecolor) + ", ") + _root.treestump) + ", ") + _root.treetop) + ", ") + _root.environment) + ", ") + _root.fireplace) + ", ") + _root.bulbtotal) + ", ") + _root.lamptotal) + ", ") + _root.sfxsetter) + "";
keypart_b = "";
keypart_c = "";
i = 1;
while (i < _root.bulbtotal) {
keypart_b = ((("" + keypart_b) + ", b:") + _root["bulbnum" + i]) + "";
i++;
}
i = 1;
while (i < _root.lamptotal) {
keypart_c = ((("" + keypart_c) + ", l:") + _root["lampnum" + i]) + "";
i++;
}
_root.saveTree = (keypart_a + keypart_b) + keypart_c;
gotoAndStop (6);
}
Symbol 306 Button
on (release) {
if (_root.fireplace < 1) {
_root.fireplace++;
}
}
Symbol 307 Button
on (release) {
if (_root.fireplace > 0) {
_root.fireplace--;
}
}
Symbol 310 Button
on (release) {
if (_root.editor.pre_go.lolvar < 4) {
_root.editor.pre_go.lolvar++;
}
}
Symbol 311 Button
on (release) {
if (_root.editor.pre_go.lolvar > 1) {
_root.editor.pre_go.lolvar--;
}
}
Symbol 315 Button
on (release) {
if (_root.editor.pre_go._xscale < 200) {
_root.editor.pre_go._xscale = _root.editor.pre_go._xscale + 2;
_root.editor.pre_go._yscale = _root.editor.pre_go._yscale + 2;
}
}
Symbol 316 Button
on (release) {
if (_root.editor.pre_go._xscale > 36) {
_root.editor.pre_go._xscale = _root.editor.pre_go._xscale - 2;
_root.editor.pre_go._yscale = _root.editor.pre_go._yscale - 2;
}
}
Symbol 322 Button
on (release) {
gotoAndStop (2);
}
Symbol 323 Button
on (release) {
if (_root.editor.pre_lamp.brvar < 10) {
_root.editor.pre_lamp.brvar++;
}
}
Symbol 324 Button
on (release) {
if (_root.editor.pre_lamp.brvar > 1) {
_root.editor.pre_lamp.brvar--;
}
}
Symbol 327 Button
on (release) {
if (_root.editor.pre_lamp.lolvar < 5) {
_root.editor.pre_lamp.lolvar++;
}
}
Symbol 328 Button
on (release) {
if (_root.editor.pre_lamp.lolvar > 1) {
_root.editor.pre_lamp.lolvar--;
}
}
Symbol 331 Button
on (release) {
_root.editor.pre_lamp._rotation = _root.editor.pre_lamp._rotation + 6;
}
Symbol 332 Button
on (release) {
_root.editor.pre_lamp._rotation = _root.editor.pre_lamp._rotation - 6;
}
Symbol 346 Button
on (release) {
if ((((_root.name1 != "") && (_root.email1 != "")) && (_root.name2 != "")) && (_root.email2 != "")) {
keypart_a = ((((((((((((((((((((((((((((((("" + _root.roomstyle) + ", ") + _root.present1) + ", ") + _root.present2) + ", ") + _root.present3) + ", ") + _root.outside) + ", ") + _root.lightradius) + ", ") + _root.santa) + ", ") + _root.sharpnessz) + ", ") + _root.treecolor) + ", ") + _root.treestump) + ", ") + _root.treetop) + ", ") + _root.environment) + ", ") + _root.fireplace) + ", ") + _root.bulbtotal) + ", ") + _root.lamptotal) + ", ") + _root.sfxsetter) + "";
keypart_b = "";
keypart_c = "";
i = 1;
while (i < _root.bulbtotal) {
keypart_b = ((("" + keypart_b) + ", b:") + _root["bulbnum" + i]) + "";
i++;
}
i = 1;
while (i < _root.lamptotal) {
keypart_c = ((("" + keypart_c) + ", l:") + _root["lampnum" + i]) + "";
i++;
}
_root.saveTree = (keypart_a + keypart_b) + keypart_c;
gotoAndStop (8);
}
}
Symbol 389 Button
on (release) {
getURL ("http://www.armorgames.com/", "_blank");
}
Symbol 391 Button
on (release) {
getURL ("http://www.eviludy.net/", "_blank");
}
Symbol 393 Button
on (release) {
_root.bumpOwnCard();
}
Symbol 395 MovieClip Frame 1
stop();
_root.yhepneys = false;
_root.yhepneys2 = false;
_root.deletion = false;
Symbol 395 MovieClip Frame 2
_root.yhepneys = false;
_root.yhepneys2 = false;
_root.deletion = false;
Symbol 395 MovieClip Frame 3
_root.yhepneys = true;
_root.editor.pre_go.lolvar = 1;
_root.yhepneys2 = false;
_root.deletion = false;
Instance of Symbol 36 MovieClip [item_hang] "pre_go" in Symbol 395 MovieClip Frame 3
onClipEvent (enterFrame) {
this.gotoAndStop(lolvar);
}
Symbol 395 MovieClip Frame 4
_root.yhepneys = false;
_root.yhepneys2 = true;
_root.editor.pre_lamp.lolvar = 1;
_root.editor.pre_lamp.brvar = 1;
_root.deletion = false;
_root.editor.pre_lamp._rotation = 1;
Instance of Symbol 14 MovieClip [lamp_hang] "pre_lamp" in Symbol 395 MovieClip Frame 4
onClipEvent (enterFrame) {
this.gotoAndStop(lolvar);
}
Symbol 395 MovieClip Frame 5
_root.yhepneys = false;
_root.yhepneys2 = false;
_root.deletion = true;
Symbol 395 MovieClip Frame 8
name1 = _root.name1;
name2 = _root.name2;
email1 = _root.email1;
email2 = _root.email2;
messagex = _root.messagex;
treecode = _root.saveTree;
getURL ("http://www.eviludy.net/sendxmas.php", "_blank", "GET");
Symbol 413 Button
on (press) {
_root.dragging = true;
startDrag ("", false, left, top, right, bottom);
}
on (release, releaseOutside) {
_root.dragging = false;
stopDrag();
}
Instance of Symbol 414 MovieClip "knob" in Symbol 415 MovieClip Frame 1
onClipEvent (load) {
top = _y;
bottom = _y + 255;
left = _x;
right = _x;
}
Symbol 430 MovieClip Frame 1
stop();
stopAllSounds();
track1 = new Sound();
track1.attachSound("track1");
track1.start(0, 1000);
_root.sfxsetter = 1;
Symbol 430 MovieClip Frame 2
stop();
stopAllSounds();
track2 = new Sound();
track2.attachSound("track2");
track2.start(0, 1000);
_root.sfxsetter = 2;
Symbol 430 MovieClip Frame 3
stop();
stopAllSounds();
track3 = new Sound();
track3.attachSound("track3");
track3.start(0, 1000);
_root.sfxsetter = 3;
Symbol 430 MovieClip Frame 4
stop();
stopAllSounds();
track4 = new Sound();
track4.attachSound("track4");
track4.start(0, 1000);
_root.sfxsetter = 4;
Symbol 430 MovieClip Frame 5
stop();
stopAllSounds();
track5 = new Sound();
track5.attachSound("track5");
track5.start(0, 1000);
_root.sfxsetter = 5;
Symbol 430 MovieClip Frame 6
stop();
stopAllSounds();
_root.sfxsetter = 6;
Symbol 432 Button
on (keyPress "q") {
if (_quality == "LOW") {
_quality = "MEDIUM";
} else if (_quality == "MEDIUM") {
_quality = "HIGH";
} else if (_quality == "HIGH") {
_quality = "LOW";
}
}