Frame 1
function min(a, b) {
if (a < b) {
return(a);
}
return(b);
}
function playSnd(lib_snd) {
s = new Sound(this);
s.attachSound(lib_snd);
s.start();
}
function stopMySound() {
stopSoundFlag = true;
mc_sloop.gotoAndStop(3);
}
function startMySound() {
stopSoundFlag = false;
if (!pauseFlag) {
mc_sloop.gotoAndStop(2);
}
}
function startGame() {
level = 0;
nextLevel();
Set("/gametablo:scores", 0);
setProperty("/gametablo", _visible , true);
}
function gameOver() {
this.gotoAndPlay("lamo");
mc_sloop.gotoAndStop(3);
}
function gameWin() {
Set("/gametablo:scores", Number(/gametablo:scores) + scrLevel);
this.gotoAndStop("rul");
mc_sloop.gotoAndStop(3);
}
function nextLevel() {
this.gotoAndStop("startgame");
if (!stopSoundFlag) {
mc_sloop.gotoAndStop(2);
}
}
function newGame() {
setProperty("/Game", _visible , 0);
this.Stop();
setProperty("/Rating", _visible , 1);
tellTarget ("/Rating") {
gotoAndStop ("Save");
};
stop();
}
function startPause() {
pauseFlag = true;
mc_sloop.gotoAndStop(3);
m1.pG.stop();
i = 1;
while (wfC >= i) {
wfA[i].pGo.stop();
wfA[i].pGl.stop();
i++;
}
}
function stopPause() {
pauseFlag = false;
if (!stopSoundFlag) {
mc_sloop.gotoAndStop(2);
}
m1.pG.play();
i = 1;
while (wfC >= i) {
wfA[i].pGo.play();
wfA[i].pGl.play();
i++;
}
}
stopSoundFlag = false;
mP = 57.2957795130823;
mPo = (Math.PI/180);
h2 = 16;
h22 = 24;
Sheep = function (parent, num, minSpeed, maxSpeed, rotateSpeed, wayLong, rotateLong, runInCenter) {
this.p = parent;
this.numL = num;
this.minS = minSpeed;
this.maxS = maxSpeed;
this.riS = runInCenter;
this.cS = 0;
this.rtS = rotateSpeed;
this.rtD = 1;
this.wL = wayLong;
this.wC = 0;
this.rtL = rotateLong;
this.vx = 0;
this.vy = 0;
this.fx = this.p._x;
this.fy = this.p._y;
this.st = 0;
this.tdT = 3;
};
Sheep.prototype.sGo = function () {
saC++;
if (random(3) == 0) {
this.st = 2;
if (random(2) == 0) {
this.rtD = 1;
} else {
this.rtD = -1;
}
} else {
this.st = 1;
this.cS = random(this.maxS - this.minS) + this.minS;
this.vx = Math.sin(this.p._rotation * mPo);
this.vy = -Math.cos(this.p._rotation * mPo);
}
this.wC = 0;
};
Sheep.prototype.calcXY = function () {
if (this.st == 1) {
this.fx = this.p._x + (this.vx * this.cS);
this.fy = this.p._y + (this.vy * this.cS);
}
};
Sheep.prototype.goto = function () {
this.wC++;
if (this.st == 1) {
this.p._x = this.fx;
this.p._y = this.fy;
with (this) {
if ((((p._x < 0) || (520 < p._x)) || (p._y < 0)) || (390 < p._y)) {
die();
}
}
if (this.wL < this.wC) {
this.st = 0;
saC--;
}
} else if (this.st == 2) {
this.p._rotation = this.p._rotation + (this.rtD * this.rtS);
if (this.rtL < this.wC) {
this.st = 0;
saC--;
}
}
if (this.st == 3) {
if (this.wC >= this.tdT) {
this.die();
}
}
};
Sheep.prototype.r90 = function () {
if (random(2) == 0) {
k = 1;
} else {
k = -1;
}
this.vx = (-this.vy) * k;
this.vy = this.vx * k;
this.p._rotation = Math.atan2(this.vx, -this.vy) * mP;
};
Sheep.prototype.hT = function (obj) {
if ((Math.abs(this.fx - obj._x) < h2) && (Math.abs(this.fy - obj._y) < h2)) {
return(true);
}
return(false);
};
Sheep.prototype.boom = function () {
if ((this.st == 1) || (this.st == 2)) {
saC--;
}
this.st = 3;
this.wC = 0;
nn.mc_boom.duplicateMovieClip("pBoom", 1000 + this.numL);
with (nn.pBoom) {
_visible = true;
_x = this.p._x;
_y = this.p._y;
}
};
Sheep.prototype.die = function () {
if ((this.st == 1) || (this.st == 2)) {
saC--;
}
with (this) {
st = 4;
p._visible = false;
p._x = (p._y = -1000);
}
saD++;
};
Sheep.prototype.run = function () {
if (this.st == 0) {
saC++;
}
with (this) {
wC = 0;
st = 1;
cS = riS;
}
with (this) {
tmpI = Math.atan2(p._x - 260, p._y - 195) * mP;
p._rotation = -tmpI;
vx = Math.sin(p._rotation * mPo);
vy = -Math.cos(p._rotation * mPo);
}
playSnd("lib_sheep");
};
Wolf = function (baseLevel, pNum, minSpeed, maxSpeed, pauseTime, goTime, dieTime, glukTime, glukAmount) {
this.name = "w" add pNum;
nn.attachMovie("lib_wolf", this.name, (baseLevel + (pNum * 3)) + 1);
nn.attachMovie("lib_wolf_Go", this.name + "g", baseLevel + (pNum * 3));
nn.attachMovie("lib_wolf_gluk", this.name + "gl", (baseLevel + (pNum * 3)) + 2);
tellTarget ("nn." + this.name) {
_y = -2000;
_x = -2000;
_visible = false;
c1._visible = (c2._visible = false);
};
tellTarget (("nn." + this.name) + "g") {
_y = 0;
_x = 0;
_visible = false;
c1._visible = (c2._visible = false);
};
tellTarget (("nn." + this.name) + "gl") {
_y = 0;
_x = 0;
_visible = false;
c1._visible = (c2._visible = false);
};
this.p = eval ("nn." + this.name);
this.pGo = eval (("nn." + this.name) + "g");
this.pGl = eval (("nn." + this.name) + "gl");
this.vx = 0;
this.vy = 0;
this.minS = minSpeed;
this.maxS = maxSpeed;
this.cS = 0;
this.st = 0;
this.pT = pauseTime;
this.gT = goTime;
this.pC = 0;
this.sF = true;
this.dT = dieTime;
this.glT = glukTime;
this.glA = glukAmount;
this.glC = 0;
};
Wolf.prototype.rem = function () {
removeMovieClip("nn." + this.name);
};
Wolf.prototype.sGo = function () {
with (this) {
cS = random(maxS - minS) + minS;
}
tmpI = random(360);
this.vx = Math.sin(tmpI * mPo);
this.vy = Math.cos(tmpI * mPo);
a = 60;
k = Math.abs(this.vy / this.vx);
x = 260 + a;
y = k * x;
y0 = 195 + a;
if (y0 < y) {
y = y0;
x = y / k;
}
if (this.vx < 0) {
x = -x;
}
if (this.vy < 0) {
y = -y;
}
this.pGo._x = 260 + x;
this.pGo._y = 195 + y;
with (this) {
pGo._visible = true;
vx = -vx;
vy = -vy;
tmpI = Math.atan2(vx, vy) * mP;
pGo._rotation = (-tmpI) + 90;
st = 1;
pC = 0;
}
};
Wolf.prototype.goto = function () {
with (this) {
if (sF) {
return(undefined);
}
if (st == 0) {
if (dT < pC) {
sGo();
}
} else if (st == 1) {
pGo._x = pGo._x + (vx * cS);
pGo._y = pGo._y + (vy * cS);
if (pT < pC) {
pC = 0;
st = 2;
sF = true;
pGo._visible = false;
p._x = pGo._x;
p._y = pGo._y;
p._rotation = pGo._rotation;
p._visible = true;
}
} else if (st == 2) {
if (pT < pC) {
pC = 0;
st = 1;
p._visible = false;
pGo._visible = true;
}
}
}
};
Wolf.prototype.sheepAm = function () {
with (this) {
st = 3;
sF = true;
pC = 0;
p._visible = false;
pGo._visible = false;
p._x = pGo._x;
p._y = pGo._y;
}
nn.mc_topt1.duplicateMovieClip("pTpt1", 2000 + this.pNum);
nn.pTpt1._x = this.p._x;
nn.pTpt1._y = this.p._y;
nn.pTpt1._rotation = this.p._rotation;
nn.pTpt1._visible = true;
nn.pTpt1.sender = this;
};
Wolf.prototype.pasAm = function () {
with (this) {
st = 4;
sF = true;
pC = 0;
p._visible = false;
pGo._visible = false;
p._x = pGo._x;
p._y = pGo._y;
}
nn.mc_topt2.duplicateMovieClip("pTpt2", 2500 + this.pNum);
nn.pTpt2._x = this.p._x;
nn.pTpt2._y = this.p._y;
nn.pTpt2._rotation = this.p._rotation;
nn.pTpt2._visible = true;
nn.pTpt2.sender = this;
nn._parent.eFlag = true;
};
Wolf.prototype.goToDie = function () {
with (this) {
sF = true;
st = 0;
pC = 0;
pGo._x = (pGo._y = (p._x = (p._y = -2000)));
pGo._visible = (p._visible = false);
glC = 0;
}
};
Wolf.prototype.next = function () {
with (this) {
if (st == 3) {
sF = true;
pC = 0;
st = 2;
p._visible = true;
pGo._visible = false;
} else if (st == 4) {
p._parent._parent.gameOver();
}
}
};
Wolf.prototype.hT = function (obj) {
if (this.st == 2) {
if (this.p.c1.hitTest(obj)) {
return(true);
}
if (this.p.c2.hitTest(obj)) {
return(true);
}
} else if (this.st == 1) {
if (this.pGo.c1.hitTest(obj)) {
return(true);
}
if (this.pGo.c2.hitTest(obj)) {
return(true);
}
}
return(false);
};
Wolf.prototype.hTo = function (obj) {
if (this.st == 2) {
if (this.p.c1.hitTest(obj.pU.c)) {
return(true);
}
if (this.p.c2.hitTest(obj.pU.c)) {
return(true);
}
} else if (this.st == 1) {
if (this.pGo.c1.hitTest(obj.pU.c)) {
return(true);
}
if (this.pGo.c2.hitTest(obj.pU.c)) {
return(true);
}
}
return(false);
};
Wolf.prototype.gluk = function () {
with (this) {
st = 5;
sF = true;
pC = 0;
pGo._visible = (p._visible = false);
p._x = (pGl._x = pGo._x);
p._y = (pGl._y = pGo._y);
pGl._visible = true;
pGl._rotation = pGo._rotation;
}
playSnd("lib_wattack");
};
Wolf.prototype.gluCheck = function () {
with (this) {
if (st == 5) {
if (glT < pC) {
pC = 0;
st = 2;
p._visible = true;
pGo._visible = false;
pGl._visible = false;
pGl._x = (pGl._y = -5000);
glC++;
if (glC == glA) {
die();
}
return(undefined);
}
} else if (st == 6) {
if (pC >= 3) {
goToDie();
}
}
}
};
Wolf.prototype.die = function () {
with (this) {
st = 6;
pC = 0;
sF = true;
p._visible = true;
pGo._visible = false;
}
nn.mc_boom.duplicateMovieClip("pBoom", 6000 + this.numL);
with (nn.pBoom) {
_visible = true;
_x = this.pGo._x;
_y = this.pGo._y;
_xscale = (_yscale = 150);
}
Set("/gametablo:scores", Number(/gametablo:scores) + scrWolf);
};
Man = function (parent, parentGo, parentShoot, parentFire) {
this.p = parent;
this.pG = parentGo;
this.pS = parentShoot;
this.pF = parentFire;
this.pU = this.p;
with (this) {
pF._x = (pF._y = (pS._x = (pS._y = -3000)));
pF._visible = (pG._visible = (pS._visible = false));
pG._x = p._x;
pG._y = p._y;
}
pS.stop();
this.st = 0;
this.shA = false;
this.sh = false;
this.shF = false;
this.fr = false;
this.fx = this.p._x;
this.fy = this.p._y;
};
Man.prototype.goto = function (hit) {
with (this) {
if (!hit) {
pG._x = (p._x = fx);
pG._y = (p._y = fy);
}
}
};
Man.prototype.calcXY = function () {
with (this) {
txa = Math.abs((tx = _xmouse - fx));
tya = Math.abs((ty = _ymouse - fy));
tr = txa + tya;
pG._rotation = (p._rotation = ((u = Math.atan2(tx, -ty))) * mP);
if (tr < 8) {
if (st == 1) {
st = 0;
pG._visible = false;
p._visible = true;
pU = p;
}
return(undefined);
}
if (st == 0) {
st = 1;
p._visible = false;
pG._visible = true;
pU = pG;
}
dY = min(int(tr - 8), 10);
if (dY < 0.0001) {
if (st == 1) {
st = 0;
pG._visible = false;
p._visible = true;
pU = p;
}
}
fx = p._x + (dY * Math.sin(u));
fy = p._y - (dY * Math.cos(u));
if (0 >= fx) {
fx = 0;
}
if (520 < fx) {
fx = 520;
}
if (0 >= fy) {
fy = 0;
}
if (390 < fy) {
fy = 390;
}
}
};
Man.prototype.shoot = function () {
with (this) {
pG._visible = (p._visible = false);
pS.duplicateMovieClip("pShoot", 3000);
nn.pShoot._visible = true;
nn.pShoot._x = p._x;
nn.pShoot._y = p._y;
nn.pShoot._rotation = p._rotation;
nn.pShoot.sender = this;
pU = nn.pShoot;
shA = true;
}
playSnd("lib_knut");
};
Man.prototype.endSh = function () {
if (st == 2) {
return(undefined);
}
with (this) {
shA = false;
if (st == 0) {
p._visible = true;
pU = p;
} else {
pG._visible = true;
pU = pG;
}
}
};
Man.prototype.fire = function () {
with (this) {
pG._visible = (p._visible = false);
pF.duplicateMovieClip("pFire", 3000);
nn.pFire._visible = true;
nn.pFire._x = p._x;
nn.pFire._y = p._y;
nn.pFire._rotation = p._rotation;
nn.pFire.sender = this;
pU = nn.pFire;
shF = true;
}
playSnd("lib_shoot");
};
Man.prototype.endF = function () {
if (st == 2) {
return(undefined);
}
with (this) {
shF = false;
if (st == 0) {
p._visible = true;
pU = p;
} else {
pG._visible = true;
pU = pG;
}
}
};
Man.prototype.hTf = function (obj) {
if ((Math.abs(this.fx - obj.fx) < (h2 + 14)) && (Math.abs(this.fy - obj.fy) < (h2 + 14))) {
return(true);
}
return(false);
};
Man.prototype.hT = function (obj) {
if ((Math.abs(this.fx - obj._x) < (h2 + 14)) && (Math.abs(this.fy - obj._y) < (h2 + 14))) {
return(true);
}
return(false);
};
Man.prototype.die = function () {
with (this) {
p._x = (p._y = (pG._x = (pG._y = -3000)));
p._visible = (pG._visible = false);
st = 2;
}
nn.pFire._visible = (nn.pShoot._visible = false);
};
stop();
Frame 2
stop();
Instance of Symbol 69 MovieClip "sn" in Frame 2
onClipEvent (load) {
if (_parent.sound) {
_parent.snd.start(0, 200000);
} else {
gotoAndStop (2);
}
}
onClipEvent (unload) {
_parent.snd.stop();
}
Frame 3
stop();
Frame 4
stop();
Instance of Symbol 159 MovieClip in Frame 4
onClipEvent (load) {
tellTarget (_parent) {
stop();
level++;
txtLevel = level;
tellTarget (nn.mc_man_Sh) {
_visible = false;
_y = -1000;
_x = -1000;
stop();
};
tellTarget (nn.mc_man_F) {
_visible = false;
_y = -1000;
_x = -1000;
stop();
};
tellTarget (nn.mc_boom) {
_visible = false;
_y = -1000;
_x = -1000;
stop();
};
tellTarget (nn.mc_topt1) {
_visible = false;
_y = -1000;
_x = -1000;
stop();
};
tellTarget (nn.mc_topt2) {
_visible = false;
_y = -1000;
_x = -1000;
stop();
};
tellTarget (nn.mc_w_gluk) {
_visible = false;
_y = -1000;
_x = -1000;
stop();
};
scrLevel = level * 50;
scrWolf = 5 * level;
eFlag = false;
pauseFlag = false;
if (stopSoundFlag) {
btn1.gotoAndStop(2);
}
levelTime = (30 + (30 * level)) * 12;
curTime = 0;
ind.a._x = ind.b._x - ind.b._width;
var sC = 10;
var sCM = min(level + 3, sC);
var saCM = Math.round(sCM / 3);
var saC = 0;
var saD = 0;
var saDM = 3;
o = new Array(sC + 1);
i = 1;
while (sC >= i) {
pp = eval ("o" + i);
if (sCM >= i) {
o[i] = new Sheep(pp, i, 2, 3, 10, 15, 16, 6);
} else {
pp._visible = false;
pp._x = (pp._y = -1000);
}
i++;
}
if (level < 4) {
wfC = 1;
} else {
wfC = 2;
}
wfA = new Array(wfC + 1);
glukC = min(5, int(Math.exp(level / 5)));
i = 1;
while (wfC >= i) {
wfA[i] = new Wolf(10, i, 3, 5, 6, 5 + level, 3 + (48 / level), 12, glukC);
i++;
}
wfR = 40;
m1 = new Man(mc_man, mc_man_Go, nn.mc_man_Sh, nn.mc_man_F);
mRG = 20;
myRG = 25;
mRK = 18;
};
}
onClipEvent (enterFrame) {
tellTarget (_parent) {
if (pauseFlag) {
return(undefined);
}
if (saD >= saDM) {
gameOver();
}
curTime++;
prc = curTime / levelTime;
ind.a._x = ind.b._x - (ind.b._width * (1 - prc));
if (prc >= 1) {
gameWin();
}
i = 0;
if (saC < saCM) {
j = random(sCM) + 1;
do {
if (o[j].st == 0) {
break;
}
j++;
if (saCM < j) {
j = 1;
}
i++;
} while (i != sCM);
if (o[j].st == 0) {
o[j].sGo();
}
}
i = 1;
while (sCM >= i) {
if (o[i].st == 3) {
o[i].goto();
}
if ((o[i].st == 0) || (o[i].st == 4)) {
} else {
o[i].calcXY();
hit = false;
j = 1;
while (sCM >= j) {
if (i != j) {
if (o[i].hT(o[j].p) == true) {
hit = true;
}
}
j++;
}
if (m1.hTf(o[i])) {
hit = true;
}
if (hit) {
o[i].r90();
} else {
o[i].goto();
}
}
i++;
}
i = 1;
while (wfC >= i) {
wfA[i].pC++;
wfA[i].gluCheck();
i++;
}
tmpI = 0;
i = 1;
while (wfC >= i) {
if (wfA[i].sF == false) {
tmpI = i;
break;
}
i++;
}
if (0 < tmpI) {
wfA[tmpI].goto();
} else {
tmpI = random(wfC) + 1;
with (wfA[tmpI]) {
sF = false;
goto();
}
}
if (eFlag) {
return(undefined);
}
cu = Math.cos((ugol = m1.p._rotation * mPo));
su = Math.sin(ugol);
dY = (dR = 0);
if ((!m1.shA) && (!m1.shF)) {
if (Key.isDown(1)) {
if ((_xmouse < (btn1._x - (btn1._width / 2))) || (_ymouse < (btn1._y - (btn1._height / 2)))) {
m1.fire();
}
} else if (Key.isDown(32) || (Key.isDown(4))) {
m1.shoot();
} else {
m1.calcXY();
hit = false;
j = 1;
while (sCM >= j) {
if (m1.hT(o[j].p) == true) {
hit = true;
}
j++;
}
m1.goto(hit);
}
}
if (m1.fr) {
cu = Math.cos((ugol = m1.p._rotation * mPo));
su = Math.sin(ugol);
$x = m1.p._x;
$y = m1.p._y;
$r = -1000;
$h = null;
i = 1;
while (wfC >= i) {
$p = wfA[i];
if (($p.st == 1) || ($p.st == 2)) {
$nx = (((dx = $p.pGo._x - $x)) * cu) + (((dy = $p.pGo._y - $y)) * su);
$ny = (dy * cu) - (dx * su);
if ((-myRG) < $ny) {
} else if (Math.abs($nx + mRG) < wfR) {
if ($r < $ny) {
$h = $p;
$r = $ny;
}
}
}
i++;
}
$h2 = null;
i = 1;
while (sCM >= i) {
$p = o[i];
if ($p.st < 3) {
$nx = ((((dx = $p.p._x - $x)) * cu) + (((dy = $p.p._y - $y)) * su)) + mRG;
$ny = (dy * cu) - (dx * su);
if ((-myRG) < $ny) {
} else if (Math.abs($nx) < h2) {
if ($r < $ny) {
$h2 = $p;
$r = $ny;
$h = null;
}
}
}
i++;
}
if ($h != null) {
$h.gluk();
}
if ($h2 != null) {
$h2.boom();
}
} else if (m1.sh) {
$x = m1.p._x;
$y = m1.p._y;
i = 1;
while (sCM >= i) {
$p = o[i];
if ($p.st < 3) {
$nx = ((((dx = $p.p._x - $x)) * cu) + (((dy = $p.p._y - $y)) * su)) - mRK;
$ny = (dy * cu) - (dx * su);
if (-5 < $ny) {
} else if ((Math.abs($nx) < h22) && (-120 < $ny)) {
$p.run();
}
}
i++;
}
}
i = 1;
while (wfC >= i) {
if ((wfA[i].st == 1) || (wfA[i].st == 2)) {
j = 1;
while (sCM >= j) {
if (wfA[i].hT(o[j].p)) {
o[j].die();
wfA[i].sheepAm();
break;
}
j++;
}
if (wfA[i].hTo(m1)) {
m1.die();
wfA[i].pasAm();
break;
}
}
i++;
}
};
}
Frame 5
stop();
Frame 45
newGame();
stop();
Instance of Symbol 69 MovieClip "sn" in Frame 45
onClipEvent (load) {
if (_parent.sound) {
_parent.snd.start(0, 200000);
} else {
gotoAndStop (2);
}
}
onClipEvent (unload) {
_parent.snd.stop();
}
Symbol 23 Button
on (press) {
getURL ("http://vkids.ru", "_blank");
}
Instance of Symbol 39 MovieClip "ball" in Symbol 44 MovieClip Frame 2
onClipEvent (load) {
stop();
}
Symbol 44 MovieClip Frame 101
_parent.ru.play();
stop();
Symbol 48 MovieClip Frame 1
stop();
Symbol 48 MovieClip Frame 17
_parent.voda.ball.gotoAndPlay(1);
if (_parent._currentframe == 1) {
_parent.play();
}
stop();
Symbol 65 Button
on (release) {
_root.GlobalSoundVkids = false;
gotoAndStop (3);
}
Symbol 68 Button
on (release) {
_root.GlobalSoundVkids = true;
gotoAndStop (2);
}
Symbol 69 MovieClip Frame 1
stop();
if (_root.GlobalSoundVkids == false) {
gotoAndStop (3);
} else {
_root.GlobalSoundVkids = true;
gotoAndStop (2);
}
Symbol 69 MovieClip Frame 2
stop();
Symbol 69 MovieClip Frame 3
stop();
Symbol 71 MovieClip Frame 1
stop();
Instance of Symbol 44 MovieClip "voda" in Symbol 71 MovieClip Frame 1
onClipEvent (enterFrame) {
_parent.FullSize = ((Math.floor(_parent._parent.getBytesLoaded() / 1024) + " / ") + Math.floor(_parent._parent.getBytesTotal() / 1024)) + " kb loaded";
var percent = ((_parent._parent.getBytesLoaded() / _parent._parent.getBytesTotal()) * 100);
if (_currentframe < (Math.floor(percent) + 1)) {
gotoAndStop(Math.floor(percent) + 1);
}
}
Instance of Symbol 69 MovieClip "sn" in Symbol 71 MovieClip Frame 2
onClipEvent (load) {
if (_parent.sound) {
_parent.snd.start(0, 200000);
} else {
gotoAndStop (2);
}
}
onClipEvent (unload) {
_parent.snd.stop();
}
Symbol 71 MovieClip Frame 74
_parent.play();
_parent.play();
Symbol 86 Button
on (release) {
gotoAndStop (3);
}
Symbol 89 Button
on (release) {
startGame();
}
Symbol 94 Button
on (press) {
getURL ("http://vkids.ru", "_blank");
}
Symbol 96 MovieClip Frame 1
stop();
Symbol 102 Button
on (release) {
gotoAndStop (2);
}
Symbol 104 Button
on (release) {
startGame();
}
Symbol 132 MovieClip Frame 5
this.sender.sh = true;
Symbol 132 MovieClip Frame 6
this.sender.sh = false;
Symbol 132 MovieClip Frame 7
if (typeof(this.sender) == undefined) {
this.stop();
return(undefined);
}
this.sender.endSh();
this.removeMovieClip();
Symbol 138 MovieClip Frame 2
this.sender.fr = true;
Symbol 138 MovieClip Frame 3
this.sender.fr = false;
Symbol 138 MovieClip Frame 6
if (typeof(this.sender) == undefined) {
this.stop();
return(undefined);
}
this.sender.endF();
this.removeMovieClip();
Symbol 140 MovieClip Frame 6
this.removeMovieClip();
Symbol 147 MovieClip Frame 11
this.sender.next();
this.removeMovieClip();
Symbol 149 MovieClip Frame 11
this.sender.next();
this.removeMovieClip();
Instance of Symbol 132 MovieClip "mc_man_Sh" in Symbol 150 MovieClip Frame 1
onClipEvent (load) {
this._currentframe = this._totalframes;
}
Symbol 163 Button
on (release) {
_parent.startPause();
this.gotoAndStop(2);
}
Symbol 165 Button
on (release) {
_parent.stopPause();
this.gotoAndStop(1);
}
Symbol 166 MovieClip Frame 1
stop();
Symbol 168 Button
on (release) {
_parent.stopMySound();
this.gotoAndStop(2);
}
Symbol 170 Button
on (release) {
_parent.startMySound();
this.gotoAndStop(1);
}
Symbol 171 MovieClip Frame 1
stop();
Symbol 177 MovieClip Frame 1
this.stop();
Symbol 186 Button
on (release) {
nextLevel();
}
Symbol 197 Button
on (press) {
getURL ("http://vkids.ru", "_blank");
}
Symbol 200 Button
on (release) {
gotoAndStop (2);
}