Frame 1
function Next() {
gotoAndPlay ("Titles");
}
if (_global.SoundON == undefined) {
_global.SoundON = true;
}
var Flakes = new Array();
init = function () {
width = 550;
height = 350;
max_snowsize = 10;
snowflakes = 50;
i = 0;
while (i < snowflakes) {
t = attachMovie("snow", "snow" + i, i);
Flakes.push(t);
t._alpha = 20 + (Math.random() * 80);
t._x = (-(width / 2)) + (Math.random() * (1.5 * width));
t._y = (-(height / 2)) + (Math.random() * (1.5 * height));
t._xscale = (t._yscale = 50 + (Math.random() * (max_snowsize * 10)));
t.k = 1 + (Math.random() * 2);
t.wind = -1.5 + (Math.random() * 4.2);
t.onEnterFrame = mover;
i++;
}
};
mover = function () {
this._y = this._y + this.k;
this._x = this._x + this.wind;
if (this._y > (height + 10)) {
this._y = -20;
}
if (this._x > (width + 20)) {
this._x = (-(width / 2)) + (Math.random() * (1.5 * width));
this._y = -20;
} else if (this._x < -20) {
this._x = (-(width / 2)) + (Math.random() * (1.5 * width));
this._y = -20;
}
};
init();
All.LNUM.embedFonts = true;
stop();
function doSomething() {
Ins.gotoAndStop(40);
_level0.PauseUN();
}
function doSomething2() {
getURL ("http://www.Peturo.com", _blank);
}
function doSomething4() {
if (_global.SoundON) {
stopAllSounds();
_global.SoundON = false;
} else {
_global.SoundON = true;
Sounds("Game", 15);
}
}
function doSomething5() {
_quality = "HIGH";
}
function doSomething6() {
_quality = "MEDIUM";
}
function doSomething7() {
_quality = "LOW";
}
MENU.customItems.push(Functioned2);
MENU = new ContextMenu();
MENU.hideBuiltInItems();
Quality = new ContextMenuItem("High", doSomething5, true);
Quality2 = new ContextMenuItem("Medium", doSomething6);
Quality3 = new ContextMenuItem("Low", doSomething7);
Pause_c = new ContextMenuItem("Pause", doSomething);
if (_global.SoundON) {
Sound_c = new ContextMenuItem("Sound: ON", doSomething4);
} else {
Sound_c = new ContextMenuItem("Sound: OFF", doSomething4);
}
Peturo_c = new ContextMenuItem("Visit Peturo", doSomething2, true);
MENU.customItems.push(Sound_c);
MENU.customItems.push(Peturo_c);
MENU.customItems.push(Quality);
MENU.customItems.push(Quality2);
MENU.customItems.push(Quality3);
_root.menu = MENU;
stop();
Frame 3
stop();
Frame 4
function Sounds(sound) {
if (_global.SoundON) {
var _local2 = new Sound();
_local2.attachSound("Intro");
_local2.start(0, 15);
_local2.setVolume(100);
}
}
if (_global.SoundON == undefined) {
_global.SoundON = true;
}
Sounds("Intro");
stop();
Frame 5
stop();
Frame 18
gotoAndPlay ("Menu");
Frame 19
function NewGame(Level) {
o = 0;
while (o < Flakes.length) {
Flakes[o].removeMovieClip();
o++;
}
MENU = false;
_level0.T_Menu.gotoAndStop(27);
_level0.T_Menu.swapDepths(-100);
Puss.removeMovieClip();
Puss.swapDepths(-100);
_level0.gotoAndStop(Level);
}
function Sounds(sound, clicks) {
if (_global.SoundON) {
var _local2 = new Sound();
_local2.attachSound(sound);
_local2.start(0, clicks);
_local2.setVolume(100);
}
}
var Flakes = new Array();
o = 0;
while (o < Flakes.length) {
Flakes[o].removeMovieClip();
o++;
}
init = function () {
width = 550;
height = 350;
max_snowsize = 10;
snowflakes = 50;
i = 0;
while (i < snowflakes) {
t = attachMovie("snow", "snow" + i, i);
Flakes.push(t);
t._alpha = 50 + (Math.random() * 50);
t._x = (-(width / 2)) + (Math.random() * (1.5 * width));
t._y = (-(height / 2)) + (Math.random() * (1.5 * height));
t._xscale = (t._yscale = 50 + (Math.random() * (max_snowsize * 10)));
t.k = 1 + (Math.random() * 2);
t.wind = -1.5 + (Math.random() * 4.2);
t.onEnterFrame = mover;
i++;
}
};
mover = function () {
if (MENU) {
this._y = this._y + this.k;
this._x = this._x + this.wind;
if (this._y > (height + 10)) {
this._y = -20;
}
if (this._x > (width + 20)) {
this._x = (-(width / 2)) + (Math.random() * (1.5 * width));
this._y = -20;
} else if (this._x < -20) {
this._x = (-(width / 2)) + (Math.random() * (1.5 * width));
this._y = -20;
}
}
};
init();
stop();
function doSomething() {
Ins.gotoAndStop(40);
_level0.PauseUN();
}
function doSomething2() {
getURL ("http://www.Peturo.com", _blank);
}
function doSomething4() {
if (_global.SoundON) {
stopAllSounds();
_global.SoundON = false;
} else {
_global.SoundON = true;
Sounds("Game", 15);
}
}
function doSomething5() {
_quality = "HIGH";
}
function doSomething6() {
_quality = "MEDIUM";
}
function doSomething7() {
_quality = "LOW";
}
MENU.customItems.push(Functioned2);
MENU = new ContextMenu();
MENU.hideBuiltInItems();
Quality = new ContextMenuItem("High", doSomething5, true);
Quality2 = new ContextMenuItem("Medium", doSomething6);
Quality3 = new ContextMenuItem("Low", doSomething7);
Pause_c = new ContextMenuItem("Pause", doSomething);
if (_global.SoundON) {
Sound_c = new ContextMenuItem("Sound: ON", doSomething4);
} else {
Sound_c = new ContextMenuItem("Sound: OFF", doSomething4);
}
Peturo_c = new ContextMenuItem("Visit Peturo", doSomething2, true);
MENU.customItems.push(Sound_c);
MENU.customItems.push(Peturo_c);
MENU.customItems.push(Quality);
MENU.customItems.push(Quality2);
MENU.customItems.push(Quality3);
_root.menu = MENU;
function __com_mochibot__(swfid, mc, lv, trk) {
var x;
var g;
var s;
var fv;
var sb;
var u;
var res;
var mb;
var mbc;
mb = "__mochibot__";
mbc = "mochibot.com";
g = (_global ? (_global) : (_level0._root));
if (g[mb + swfid]) {
return(g[mb + swfid]);
}
s = System.security;
x = mc._root.getSWFVersion;
fv = (x ? (mc.getSWFVersion()) : ((_global ? 6 : 5)));
if (!s) {
s = {};
}
sb = s.sandboxType;
if (sb == "localWithFile") {
return(null);
}
x = s.allowDomain;
if (x) {
s.allowDomain(mbc);
}
x = s.allowInsecureDomain;
if (x) {
s.allowInsecureDomain(mbc);
}
u = (((((((((((("http://" + mbc) + "/my/core.swf?mv=7&fv=") + fv) + "&v=") + escape(getVersion())) + "&swfid=") + escape(swfid)) + "&l=") + lv) + "&f=") + mc) + (sb ? ("&sb=" + sb) : "")) + (trk ? "&t=1" : "");
lv = ((fv > 6) ? (mc.getNextHighestDepth()) : ((g[mb + "level"] ? (g[mb + "level"] + 1) : (lv))));
g[mb + "level"] = lv;
if (fv == 5) {
res = "_level" + lv;
if (!eval (res)) {
loadMovieNum (u, lv);
}
} else {
res = mc.createEmptyMovieClip(mb + swfid, lv);
res.loadMovie(u);
}
return(res);
}
__com_mochibot__("e38691c5", this, 10301, true);
Instance of Symbol 151 MovieClip "Puss" in Frame 19
onClipEvent (load) {
this.swapDepths(15);
}
Instance of Symbol 173 MovieClip "T_Menu" in Frame 19
onClipEvent (load) {
this.swapDepths(10000000000);
}
Frame 20
FinalScore.text = GameScore + " Kids in the world got presents!";
stop();
var MENU = new Boolean(true);
var Flakes = new Array();
o = 0;
while (o < Flakes.length) {
Flakes[o].removeMovieClip();
o++;
}
init = function () {
width = 550;
height = 350;
max_snowsize = 10;
snowflakes = 50;
i = 0;
while (i < snowflakes) {
t = attachMovie("snow", "snow" + i, i);
Flakes.push(t);
t._alpha = 50 + (Math.random() * 50);
t._x = (-(width / 2)) + (Math.random() * (1.5 * width));
t._y = (-(height / 2)) + (Math.random() * (1.5 * height));
t._xscale = (t._yscale = 50 + (Math.random() * (max_snowsize * 10)));
t.k = 1 + (Math.random() * 2);
t.wind = -1.5 + (Math.random() * 4.2);
t.onEnterFrame = mover;
i++;
}
};
mover = function () {
if (MENU) {
this._y = this._y + this.k;
this._x = this._x + this.wind;
if (this._y > (height + 10)) {
this._y = -20;
}
if (this._x > (width + 20)) {
this._x = (-(width / 2)) + (Math.random() * (1.5 * width));
this._y = -20;
} else if (this._x < -20) {
this._x = (-(width / 2)) + (Math.random() * (1.5 * width));
this._y = -20;
}
}
};
init();
Frame 21
stop();
__top10_send__ = new LoadVars();
__top10_receive__ = new LoadVars();
__top10_url_1__ = "http://www.armorbot.com/flashcomm";
__top10_url_2__ = "/top10_b";
__top10_send__.hid = 604;
__top10_send__.kid = "NXWPGW";
__top10_send__.sendAndLoad(__top10_url_1__ + __top10_url_2__, __top10_receive__, "POST");
__top10_receive__.onLoad = function (success) {
if (success) {
i = 1;
while (i < 11) {
_root[("_name" + i) + "_"].text = __top10_receive__["name" + i];
_root[("_score" + i) + "_"].text = __top10_receive__["score" + i];
_parent[("_name" + i) + "_"].embedFonts = true;
_parent[("_score" + i) + "_"].embedFonts = true;
i++;
}
} else {
_root.__err__.gotoAndStop(2);
}
};
Frame 22
function Sounds(sound, repeat) {
if (_global.SoundON) {
var _local2 = new Sound();
_local2.attachSound(sound);
_local2.start(0, repeat);
_local2.setVolume(100);
}
}
function Sounds2(sound, repeat) {
if (_global.SoundON) {
var _local2 = new Sound();
_local2.attachSound(sound);
_local2.start(0, repeat);
_local2.setVolume(100);
}
}
function PauseUN() {
if (!_global.PAUSE) {
MusicPlay.setVolume(50);
_global.PAUSE = true;
p = 0;
while (p < ALLOBJECTS.length) {
ALLOBJECTS[p].stop();
p++;
}
GullInMind.BirdFlap.gotoAndStop(1);
} else {
MusicPlay.setVolume(100);
_global.PAUSE = false;
p = 0;
while (p < ALLOBJECTS.length) {
ALLOBJECTS[p].play();
p++;
}
GullInMind.BirdFlap.gotoAndPlay(1);
}
}
function AmmoSet(Target) {
if (bigSpeed < 15) {
bigSpeed = bigSpeed + 0.3;
}
Ammo = Ammo + (Target + ((100 + Target) / Target));
Ammo = Math.floor(Ammo);
}
function Hidden() {
p = 0;
while (p < BackGrounds.length) {
BackGrounds[p]._visible = true;
ForeGrounds[p]._visible = true;
p++;
}
p = 0;
while (p < BackGrounds.length) {
if (_global.Current != p) {
BackGrounds[p]._visible = false;
BackGrounds[p].gotoAndPlay(1);
ForeGrounds[p]._visible = false;
ForeGrounds[p].gotoAndPlay(1);
}
p++;
}
}
function onEnterFrame() {
function doSomething() {
Ins.gotoAndStop(40);
_level0.PauseUN();
}
function doSomething2() {
getURL ("http://www.Peturo.com", _blank);
}
function doSomething3() {
stopAllSounds();
Sounds("Intro");
_level0.PauseUN();
_level0.gotoAndPlay("Menu");
}
function doSomething4() {
if (_global.SoundON) {
stopAllSounds();
_global.SoundON = false;
} else {
_global.SoundON = true;
Sounds("Game", 15);
}
}
function doSomething5() {
_quality = "HIGH";
}
function doSomething6() {
_quality = "MEDIUM";
}
function doSomething7() {
_quality = "LOW";
}
MENU.customItems.push(Functioned2);
MENU = new ContextMenu();
MENU.hideBuiltInItems();
Quality = new ContextMenuItem("High", doSomething5, true);
Quality2 = new ContextMenuItem("Medium", doSomething6);
Quality3 = new ContextMenuItem("Low", doSomething7);
Pause_c = new ContextMenuItem("Pause", doSomething);
Menu_c = new ContextMenuItem("Menu", doSomething3);
if (_global.SoundON) {
Sound_c = new ContextMenuItem("Sound: ON", doSomething4);
} else {
Sound_c = new ContextMenuItem("Sound: OFF", doSomething4);
}
Peturo_c = new ContextMenuItem("Visit Peturo", doSomething2, true);
MENU.customItems.push(Menu_c);
MENU.customItems.push(Pause_c);
MENU.customItems.push(Sound_c);
MENU.customItems.push(Peturo_c);
MENU.customItems.push(Quality);
MENU.customItems.push(Quality2);
MENU.customItems.push(Quality3);
_root.menu = MENU;
if (!_global.PAUSE) {
Score.text = GameScore;
if (GullInMind.hitTest(_level0.Sleigh) && (!GullInMind.HIT)) {
GullInMind.HIT = true;
GullInMind.gotoAndStop(2);
Ammo = Ammo - 2;
Sounds2("Gull_b", 1);
}
if ((Ammo < 1) || (PresHIT == LevelTarget)) {
if (PresHIT < LevelTarget) {
PauseUN();
_level0.Sounds("GameOver", 1);
_level0["Gift" + i].removeMovieClip();
_level0[("Gift" + i) - 1].removeMovieClip();
_level0[("Gift" + i) - 2].removeMovieClip();
_level0[("Gift" + i) - 3].removeMovieClip();
_level0[("Gift" + i) - 4].removeMovieClip();
GullInMind.removeMovieClip();
gotoAndPlay ("GameOver");
} else {
_global.Current++;
if (_global.Current > LevelsNUM) {
_global.Current = 0;
}
DetectReset();
ForeGrounds[_global.Current].gotoAndPlay(1);
_level0.LevelTarget = _level0.LevelTarget + Increase;
AmmoSet(LevelTarget);
PresHIT = 0;
bigSpeed = bigSpeed + 0.75;
Hidden();
_level0.Sounds2("LevelUP", 1);
GullInMind.removeMovieClip();
CreateNew();
Level.play();
}
}
PresT = Ammo;
Pres = (PresHIT + "/") + LevelTarget;
if (Key.isDown(32)) {
if (KeysUP) {
Ammo--;
KeysUP = false;
i++;
duplicateMovieClip (_level0.Gift, "Gift" + i, i);
_level0["Gift" + i]._x = _level0.Sleigh._x - 30;
_level0["Gift" + i]._y = _level0.Sleigh._y;
}
} else {
KeysUP = true;
}
}
}
function DetectReset() {
j = 0;
while (j < Detection.length) {
Detection[j]._x = DetectNums[j] + 40;
Detection[j].Tick._visible = false;
Detection[j].nowHit = true;
j++;
}
}
function Reload(Me) {
Me.nowHit = true;
}
function DetectHIT(PresentV) {
if (PresentV.hitTest(GullInMind) && (!GullInMind.HIT)) {
Sounds2("Gull_b", 1);
GullInMind.HIT = true;
GullInMind.gotoAndStop(2);
PresentV.gotoAndPlay("MISS");
GullInMind.Gull.Gull._alpha = 0;
_level0.Sounds2("Miss", 1);
PresentV.End = true;
}
j = 0;
while (j < Detection.length) {
if (!PresentV.End) {
if (PresentV.hitTest(Detection[j])) {
Detection[j].Tick._visible = true;
_level0.PresHIT++;
_level0.GameScore++;
if (Detection[j].nowHit) {
PresentV.gotoAndPlay("HIT");
_level0.Sounds2("Hit", 1);
} else {
PresentV.gotoAndPlay("MISS");
_level0.Sounds2("Miss", 1);
}
Detection[j].nowHit = false;
PresentV.End = true;
}
}
j++;
}
}
function MoveLeft() {
if (!_global.PAUSE) {
this._x = this._x - bigSpeed;
if (this._x < 0) {
this.removeMovieClip();
CreateNew();
}
}
}
function CreateNew() {
GullInMind = undefined;
GullInMind = attachMovie("Gull", "Gull" + Vari, Vari);
GullInMind._y = _level0.Sleigh._y;
GullInMind._x = 500;
GullInMind._xscale = 15;
GullInMind._yscale = 15;
GullInMind.HIT = false;
_level0["Gull" + Vari].onEnterFrame = MoveLeft;
Vari++;
GullInMind.gotoAndStop(1);
}
_global.Current = 0;
_global.PAUSE = false;
i = 1;
KeysUP = true;
PresHIT = 0;
var BackGrounds = new Array(_level0.Mountains, _level0.Sand, _level0.Glacier, _level0.City, _level0.Ocean);
var ForeGrounds = new Array(_level0.Houses, _level0.Stalls, _level0.Igloo, _level0.BuildingTop, _level0.Islands);
var ALLOBJECTS = new Array(_level0.Stalls, _level0.Mountains, _level0.Houses, _level0.Clouds, _level0.Sleigh.Sleigh, _level0.Sand, _level0.Ocean, _level0.Islands, _level0.City, _level0.BuildingTop);
var Detection = new Array(_level0.Detect.Detect1, _level0.Detect.Detect2, _level0.Detect.Detect3, _level0.Detect.Detect4);
var DetectNums = new Array(-332.8, -168, -2.3, 164.3);
var LevelTarget = new Number(20);
var Increase = new Number(2);
var Ammo = new Number(0);
var Vari = new Number(1);
var GameScore = new Number(0);
var bigSpeed = new Number(5);
var LevelsNUM = new Number(BackGrounds.length - 1);
var GullInMind = new Object();
stopAllSounds();
Sounds("Game", 15);
CreateNew();
AmmoSet(LevelTarget);
DetectReset();
Ammo = Ammo + 10;
Score.embedFonts = true;
Pressi.embedFonts = true;
PresTi.embedFonts = true;
stop();
Instance of Symbol 248 MovieClip "Gift" in Frame 22
onClipEvent (load) {
if (!_global.PAUSE) {
_level0.Hidden();
if (_level0.Gift != this) {
var myColor = new Color(this.Gift.Gift);
myColor.setTransform({bb:Math.random() * 512, gb:Math.random() * 512, rb:Math.random() * 512});
Alive = true;
speed = 3;
speed2 = 3;
this.End = false;
}
}
}
onClipEvent (enterFrame) {
if (!_global.PAUSE) {
if (_level0.Gift != this) {
if (Alive) {
this._y = this._y + speed;
this._x = this._x - speed2;
speed = speed + 0.3;
speed2 = speed2 + 0.1;
_level0.DetectHIT(this);
if ((this._y > 280) && (Alive)) {
if (!this.End) {
this.gotoAndPlay("MISS");
_level0.Sounds2("Miss", 1);
}
Alive = false;
}
}
}
}
}
Instance of Symbol 288 MovieClip "Sleigh" in Frame 22
onClipEvent (load) {
Speed = 5;
Right = 420;
Left = 100;
Bottom = 250;
Top = 80;
}
onClipEvent (enterFrame) {
if (!_global.PAUSE) {
JustPress = false;
if (Key.isDown(38)) {
if (this._y > Top) {
this._rotation--;
JustPress = true;
this._y = this._y - Speed;
}
}
if (Key.isDown(40)) {
if (this._y < Bottom) {
this._rotation++;
JustPress = true;
this._y = this._y + Speed;
}
}
if (Key.isDown(39)) {
if (this._x < Right) {
this._x = this._x + Speed;
}
} else if (this._x > Left) {
this._x = this._x - Speed;
}
if (!JustPress) {
if (this._rotation > 0) {
this._rotation--;
}
if (this._rotation < 0) {
this._rotation++;
}
}
}
}
Frame 23
var MENU = new Boolean(true);
var Flakes = new Array();
o = 0;
while (o < Flakes.length) {
Flakes[o].removeMovieClip();
o++;
}
init = function () {
width = 550;
height = 350;
max_snowsize = 10;
snowflakes = 50;
i = 0;
while (i < snowflakes) {
t = attachMovie("snow", "snow" + i, i);
Flakes.push(t);
t._alpha = 50 + (Math.random() * 50);
t._x = (-(width / 2)) + (Math.random() * (1.5 * width));
t._y = (-(height / 2)) + (Math.random() * (1.5 * height));
t._xscale = (t._yscale = 50 + (Math.random() * (max_snowsize * 10)));
t.k = 1 + (Math.random() * 2);
t.wind = -1.5 + (Math.random() * 4.2);
t.onEnterFrame = mover;
i++;
}
};
mover = function () {
if (MENU) {
this._y = this._y + this.k;
this._x = this._x + this.wind;
if (this._y > (height + 10)) {
this._y = -20;
}
if (this._x > (width + 20)) {
this._x = (-(width / 2)) + (Math.random() * (1.5 * width));
this._y = -20;
} else if (this._x < -20) {
this._x = (-(width / 2)) + (Math.random() * (1.5 * width));
this._y = -20;
}
}
};
init();
stop();
Symbol 15 MovieClip Frame 17
stop();
Symbol 19 MovieClip Frame 25
stop();
Symbol 20 MovieClip Frame 1
stop();
Symbol 21 MovieClip [Gull] Frame 1
stop();
Symbol 21 MovieClip [Gull] Frame 2
stop();
Symbol 71 Button
on (release) {
getURL ("http://newgrounds.com/collection/christmas2006.html", _blank);
}
Symbol 75 Button
on (release) {
getURL ("http://www.ArmorGames.com", blank);
}
Instance of Symbol 83 MovieClip in Symbol 86 MovieClip Frame 1
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_parent.gotoAndPlay("Map");
}
}
Symbol 87 Button
on (release) {
getURL ("http://www.Peturo.com", blank);
}
Symbol 96 MovieClip Frame 1
_root.stop();
PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100;
Loading = PercentLoaded - (PercentLoaded % 1);
LNUM.text = Loading;
PercentLoaded2 = (PercentLoaded / 100) * 360;
Loading2 = PercentLoaded2 - (PercentLoaded2 % 1);
j = 1;
while (j < Bars.length) {
Bars[j].removeMovieClip();
j++;
}
var Bars = new Array(Bar);
i = 0;
while (i < PercentLoaded2) {
duplicateMovieClip (Bar, "Bar" + i, i);
Bars.push(_level0.All["Bar" + i]);
i++;
}
var Rotate = new Number(0);
c = 0;
while (c < Bars.length) {
Bars[c]._rotation = Rotate;
Rotate++;
c++;
}
if (PercentLoaded > 99) {
gotoAndPlay (3);
}
_parent.LNUM.embedFonts = true;
_root.LNUM.embedFonts = true;
LNUM.embedFonts = true;
Symbol 96 MovieClip Frame 2
gotoAndPlay (1);
Symbol 96 MovieClip Frame 3
_level0.play();
Symbol 98 Button
on (release) {
_level0.Next();
}
Instance of Symbol 103 MovieClip "Clouds" in Symbol 111 MovieClip Frame 1
onClipEvent (load) {
this.stop();
}
Symbol 127 Button
on (release) {
_root.play();
}
Symbol 128 MovieClip Frame 80
_root.play();
stop();
Symbol 130 Button
on (release) {
gotoAndPlay ("Menu");
}
Symbol 139 MovieClip Frame 1
stop();
Symbol 140 Button
on (release) {
getURL ("http://www.Peturo.com", blank);
}
Symbol 142 MovieClip Frame 80
_root.play();
Symbol 151 MovieClip Frame 20
stop();
Instance of Symbol 150 MovieClip in Symbol 151 MovieClip Frame 20
onClipEvent (load) {
this.swapDepths(15);
}
Symbol 158 Button
on (rollOver) {
_level0.Sounds("Switch", 1);
}
on (release) {
_level0.NewGame("Game");
}
Symbol 162 Button
on (release) {
_level0.NewGame("Scores");
}
on (rollOver) {
_level0.Sounds("Switch", 1);
}
Symbol 165 Button
on (release) {
getURL ("http://www.armorgames.com/", blank);
}
on (rollOver) {
_level0.Sounds("Switch", 1);
}
Symbol 168 Button
on (release) {
getURL ("http://www.peturo.com/", blank);
}
on (rollOver) {
_level0.Sounds("Switch", 1);
}
Symbol 171 Button
on (release) {
_level0.NewGame("thanks");
}
on (rollOver) {
_level0.Sounds("Switch", 1);
}
Instance of Symbol 159 MovieClip in Symbol 173 MovieClip Frame 5
onClipEvent (enterFrame) {
this.New.enabled = false;
}
Symbol 173 MovieClip Frame 15
stop();
Symbol 193 Button
on (release) {
ab20_09 = new LoadVars();
ab20_09.z = myName;
ab20_09.x = GameScore;
ab20_09.c = 604;
ab20_09.v = "NXWPGW";
ab20_09.sendAndLoad("http://armorbot.com/s_b", ab20_09, "POST");
_level0.B_Submit.enabled = false;
_level0.B_Submit._alpha = 50;
_level0.gotoAndPlay("Scores");
}
on (rollOver) {
_level0.Sounds("Switch", 1);
}
Symbol 200 Button
on (release) {
function Sounds(sound) {
if (_global.SoundON) {
var _local2 = new Sound();
_local2.attachSound("Intro");
_local2.start(0, 15);
_local2.setVolume(100);
}
}
stopAllSounds();
Sounds("Intro");
_level0.gotoAndPlay("Menu");
}
on (rollOver) {
_level0.Sounds("Switch", 1);
}
Symbol 204 Button
on (release) {
o = 0;
while (o < Flakes.length) {
Flakes[o].removeMovieClip();
o++;
}
_level0.gotoAndPlay("Game");
}
on (rollOver) {
_level0.Sounds("Switch", 1);
}
Symbol 206 MovieClip Frame 20
stop();
Symbol 213 MovieClip Frame 1
stop();
Symbol 213 MovieClip Frame 2
stop();
Symbol 237 Button
on (release) {
function Sounds(sound) {
if (_global.SoundON) {
var _local2 = new Sound();
_local2.attachSound("Intro");
_local2.start(0, 15);
_local2.setVolume(100);
}
}
stopAllSounds();
Sounds("Intro");
_level0.gotoAndPlay("Menu");
}
Symbol 238 Button
on (release) {
o = 0;
while (o < Flakes.length) {
Flakes[o].removeMovieClip();
o++;
}
_level0.gotoAndPlay("Game");
}
Symbol 248 MovieClip Frame 20
stop();
Symbol 248 MovieClip Frame 21
play();
Symbol 248 MovieClip Frame 48
stop();
Symbol 248 MovieClip Frame 49
play();
Symbol 248 MovieClip Frame 74
stop();
Symbol 294 MovieClip Frame 1
var speed = new Number(6.65);
Instance of Symbol 293 MovieClip "Detect4" in Symbol 294 MovieClip Frame 1
onClipEvent (enterFrame) {
if (!_global.PAUSE) {
this._x = this._x - _parent.speed;
if (this._x < -497.1) {
this._x = 165.3;
this.Tick._visible = false;
_level0.Reload(this);
}
}
}
Instance of Symbol 293 MovieClip "Detect3" in Symbol 294 MovieClip Frame 1
onClipEvent (enterFrame) {
if (!_global.PAUSE) {
this._x = this._x - _parent.speed;
if (this._x < -497.1) {
this._x = 165.3;
this.Tick._visible = false;
_level0.Reload(this);
}
}
}
Instance of Symbol 293 MovieClip "Detect2" in Symbol 294 MovieClip Frame 1
onClipEvent (enterFrame) {
if (!_global.PAUSE) {
this._x = this._x - _parent.speed;
if (this._x < -497.1) {
this._x = 165.3;
this.Tick._visible = false;
_level0.Reload(this);
}
}
}
Instance of Symbol 293 MovieClip "Detect1" in Symbol 294 MovieClip Frame 1
onClipEvent (enterFrame) {
if (!_global.PAUSE) {
this._x = this._x - _parent.speed;
if (this._x < -497.1) {
this._x = 165.3;
this.Tick._visible = false;
_level0.Reload(this);
}
}
}
Symbol 298 MovieClip Frame 1
stop();
Symbol 305 MovieClip Frame 1
Ins.embedFonts = true;
Symbol 308 Button
on (release, keyPress "<Space>") {
Next();
}
Symbol 309 MovieClip Frame 1
_level0.PauseUN(true);
Symbol 309 MovieClip Frame 10
function Next() {
Ins.Ins.text = Arrazh[NextB];
NextB++;
if (NextB > 5) {
play();
}
}
stop();
var Arrazh = new Array("Use your Arrow Keys to steer your sleigh", "Press the SpaceBar to drop presents onto the houses below", "Look out for birds they will try to attack you!", "Right Click for more Options", "\nFly!", "");
var NextB = new Number(0);
Next();
Symbol 309 MovieClip Frame 15
_level0.PauseUN(true);
Symbol 309 MovieClip Frame 37
stop();
Symbol 312 Button
on (release) {
_level0.gotoAndPlay("Menu");
}
on (rollOver) {
_level0.Sounds("Switch", 1);
}