Frame 1
idi = id_instalacion;
idu = id_usuario;
idp = id_partido;
idc = id_contenido;
url_ret = url_retorno;
url_jug = url_juegos;
puntos1 = 0;
pausa = true;
pausatrue = false;
if (_root.getBytesLoaded() >= _root.getBytesTotal()) {
_root.gotoAndPlay("intro");
}
A = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100;
porcentajepre = Math.round(A) + "%";
Frame 2
gotoAndPlay (1);
Frame 5
idi = id_instalacion;
idu = id_usuario;
idp = id_partido;
idc = id_contenido;
url_ret = url_retorno;
url_jug = url_juegos;
mysoundob = new Sound(this);
mysoundob.attachSound("intro");
mysoundob.setVolume(50);
mysoundob.start(0, 1000);
pausa = false;
stop();
Instance of Symbol 27 MovieClip in Frame 5
on (rollOver) {
gotoAndStop (2);
}
on (rollOut) {
gotoAndStop (1);
}
on (release) {
id_instalacion = _root.idi;
id_usuario = _root.idu;
id_partido = _root.idp;
id_contenido = _root.idc;
puntos1 = _root.puntos1;
url_retorno = _root.url_ret;
getURL ("javascript:window.close();");
}
on (releaseOutside) {
gotoAndStop (1);
}
on (press) {
gotoAndStop (3);
}
Frame 12
stop();
Frame 19
_root.pant_pausa._y = 10000;
globalsound = new Sound();
globalsound.setVolume(850);
pausa = true;
pausatrue = false;
puntos = 0;
peces = 16;
peces2 = 0;
objetivo = 200;
nivel = 1;
puntosparc = 0;
velocidad = 10;
mysoundobj = new Sound(this);
mysoundobj.attachSound("musica");
mysoundobj.start(0, 1000);
pesco = 0;
numEnemy = 4;
_root.mar.swapDepths(9000);
_root.mar.swapDepths(10000);
_root.sal.swapDepths(10001);
_root.pau.swapDepths(10002);
_root.opciones.swapDepths(10003);
_root.pant_pausa.swapDepths(1211);
_root.panel_opciones.swapDepths(292929);
_root.pantallaintermedia.swapDepths(10005);
_root.enemy1.swapDepths(_root.vb);
i = 2;
while (i <= numEnemy) {
enemy1.duplicateMovieClip("enemy" + i, i + 100);
_root["enemy" + i].swapDepths(_root.vb);
exp1.duplicateMovieClip("exp" + i, i + 10);
i++;
}
cose = 0;
sen = 0;
angulo = 0;
puntaje = 0;
puntos = 0;
nivel = 1;
vel = 4;
energia = 250;
lug = 1;
puntos1 = 0;
_highquality = 3;
Instance of Symbol 84 MovieClip "gr" in Frame 19
onClipEvent (load) {
_root.spaceship.scrollStart = true;
gr_a.duplicateMovieClip("gr_a2", 100);
gr_a2._x = (gr_a._x + gr_a._width) - 3;
groundStartx = this._x;
groundSpeed = _root.spaceship.speedx;
}
onClipEvent (enterFrame) {
if (_root.pausa == false) {
groundSpeed = _root.spaceship.speedx;
if (groundSpeed > 0) {
this._x = this._x - (1 + (groundSpeed / 8));
} else {
this._x = this._x - 1;
}
if (this._x <= (groundStartx - gr_a._width)) {
this._x = groundStartx - groundSpeed;
}
}
}
Instance of Symbol 88 MovieClip "mainGround" in Frame 19
onClipEvent (load) {
_root.spaceship.scrollStart = true;
ground.duplicateMovieClip("ground2", 100);
ground2._x = (ground._x + ground._width) - 3;
groundStartx = this._x;
groundSpeed = _root.spaceship.speedx;
}
onClipEvent (enterFrame) {
if (_root.pausa == false) {
groundSpeed = _root.spaceship.speedx;
if (groundSpeed > 0) {
this._x = this._x - (5 + groundSpeed);
} else {
this._x = this._x - (5 + (groundSpeed / 7));
}
if (this._x <= (groundStartx - ground._width)) {
this._x = groundStartx - groundSpeed;
}
}
}
Instance of Symbol 109 MovieClip "spaceship" in Frame 19
onClipEvent (load) {
moveSpeed = 2;
scrollx = _root.mainGround.ground._width;
scrollStart = false;
decay = 0.96;
bottom = 315;
salto = 27;
gravedad = 2;
}
onClipEvent (enterFrame) {
if (_root.pausa == false) {
_root.puntaje = _root.puntos;
y = this._y;
speedy = speedy + 5;
y = y + (speedy / gravedad);
if (jumping == 1) {
if (speedy < 0) {
this._rotation = this._rotation + 5;
} else {
this._rotation = this._rotation + 3;
}
}
if (y >= bottom) {
this._rotation = 0;
speedy = 0;
y = bottom;
_root.humo._visible = true;
jumping = "0";
}
if (jumping != 1) {
this._rotation = 0;
this._y = bottom;
}
if (Key.isDown(38) and (this._currentframe == 1)) {
if (jumping != 1) {
_root.sombra.gotoAndPlay(2);
_root.humo._visible = false;
this._rotation = -15;
speedy = speedy - salto;
jumping = "1";
}
}
if (Key.isDown(39)) {
speedx = speedx + (moveSpeed / 2);
} else {
speedx = speedx * decay;
}
if (Key.isDown(37)) {
speedx = speedx - moveSpeed;
} else {
speedx = speedx * decay;
}
_x = (_x + speedx);
_y = (_y + speedy);
speed = Math.sqrt(speedx * speedx);
if (speed > 10) {
speedx = speedx * (10 / speed);
}
if (_x < 37) {
_x = 38;
}
if (_x > 400) {
_x = 400;
}
}
}
onClipEvent (keyUp) {
if (_root.pausa == false) {
if (Key.getCode() == 39) {
scrollStart = false;
}
}
}
Instance of Symbol 110 MovieClip "mira" in Frame 19
onClipEvent (load) {
maxLasers = 8;
depthCounter = 1;
_root.laser._visible = false;
laserCounter = 1;
startDrag (this, true, 0, 0, 580, 480);
}
onClipEvent (enterFrame) {
if (_root.pausa == false) {
temp = getTimer();
if (_root.spaceship._x < (_root.mira._x + _root.mira._width)) {
dy = Math.abs(_root.spaceship._y - _root.mira._y);
dx = Math.abs(_root.spaceship._x - _root.mira._x);
hip = Math.sqrt((dy * dy) + (dx * dx));
angulo = 90 - ((Math.acos(dx / hip) * 180) / 3);
_root.spaceship.canon._rotation = angulo;
}
}
}
onClipEvent (mouseDown) {
if (_root.pausa == false) {
if ((laserCounter <= maxLasers) and (temp > (temp2 + 500))) {
temp2 = getTimer();
laserCounter++;
_root.laser.duplicateMovieClip("laser" + depthCounter, depthCounter);
_root["laser" + depthCounter].swapDepths(_root.vb);
_root["laser" + depthCounter]._visible = true;
_root["laser" + depthCounter].gotoAndStop(random(5));
depthCounter++;
if (depthCounter > maxLasers) {
depthCounter = 1;
}
_root.angulo = 90 - angulo;
an = _root.angulo;
_root.cose = Math.abs(Math.cos((an * 3.1415) / 180));
_root.sen = Math.abs(Math.sin((an * 3.1415) / 180));
}
}
}
Instance of Symbol 116 MovieClip "obs" in Frame 19
onClipEvent (load) {
salto = false;
_root.spaceship.scrollStart = true;
groundSpeed = _root.spaceship.speedx;
this._x = 1000 + random(600);
lugar = 1 + random(2);
this.gotoAndStop(lugar);
}
onClipEvent (enterFrame) {
if (_root.pausa == false) {
if ((this.hitTest(_root.spaceship.lug) and (salto == false)) and (_root.inmu._currentframe == 1)) {
salto = true;
_root.spaceship.speedy = _root.spaceship.speedy - 25;
_root.spaceship.jumping = "1";
_root.spaceship.gotoAndPlay(2);
_root.energia = _root.energia - 10;
_root.barra._width = _root.barra._width - 10;
_root.barra._x = _root.barra._x + 5;
}
groundSpeed = _root.spaceship.speedx;
if (groundSpeed > 0) {
this._x = this._x - (5 + groundSpeed);
} else {
this._x = this._x - 7;
}
if (this._x <= -20) {
lugar = 1 + random(2);
this.gotoAndStop(lugar);
this._x = 1000 + random(600);
salto = false;
}
}
}
Instance of Symbol 120 MovieClip "sombra" in Frame 19
onClipEvent (enterFrame) {
this._x = _root.spaceship._x;
}
Instance of Symbol 123 MovieClip in Frame 19
onClipEvent (load) {
_root.spaceship.scrollStart = true;
groundSpeed = _root.spaceship.speedx;
this._x = 1000 + random(3600);
lugar = 1 + random(2);
this.gotoAndStop(lugar);
}
onClipEvent (enterFrame) {
if (_root.pausa == false) {
groundSpeed = _root.spaceship.speedx;
if (groundSpeed > 0) {
this._x = this._x - (5 + groundSpeed);
} else {
this._x = this._x - 9;
}
if (this._x <= -20) {
lugar = 1 + random(2);
this.gotoAndStop(lugar);
this._x = 2000 + random(3600);
}
}
}
Instance of Symbol 127 MovieClip "inmu" in Frame 19
onClipEvent (load) {
t = 0;
}
onClipEvent (enterFrame) {
if (_root.pausa == false) {
this._x = _root.spaceship._x;
this._y = _root.spaceship._y;
j = getTimer();
if (((t + 10000) < j) and (t != 0)) {
gotoAndPlay (9);
t = 0;
}
}
}
Instance of Symbol 136 MovieClip "laser" in Frame 19
onClipEvent (load) {
cose = 15 * _root.cose;
sen = 15 * _root.sen;
angulo = 270 + _root.mira.angulo;
mysoundobj = new Sound(this);
mysoundobj.attachSound("disp1");
mysoundobj.start();
if (this._currentframe == 2) {
mysoundobj = new Sound(this);
mysoundobj.attachSound("disp2");
mysoundobj.start();
}
if (this._currentframe == 3) {
mysoundobj = new Sound(this);
mysoundobj.attachSound("disp3");
mysoundobj.start();
}
if (this._currentframe == 4) {
mysoundobj = new Sound(this);
mysoundobj.attachSound("disp4");
mysoundobj.start();
}
if (this._currentframe == 5) {
mysoundobj = new Sound(this);
mysoundobj.attachSound("disp5");
mysoundobj.start();
}
laserMoveSpeed = 20;
if (_root.mira.an > 45) {
this._x = _root.spaceship._x - 15;
} else {
this._x = _root.spaceship._x + 10;
}
this._y = (_root.spaceship._y - (_root.spaceship._height / 2)) + (this._height / 2);
this._visible = false;
this._x = _root.lugar._x;
this._y = _root.lugar._y;
}
onClipEvent (enterFrame) {
if (_root.pausa == false) {
if (this._name != "laser") {
if (!this.hitTest(_root.spaceship.lug)) {
this._visible = true;
}
dx = _root.spaceship._x - _root.mira._x;
dy = _root.mira._y - _root.spaceship._y;
rel = dy / dx;
this._x = this._x + cose;
this._y = this._y - sen;
this._rotation = angulo;
if ((this._x > 600) or (this._y < 0)) {
_root.mira.laserCounter--;
this.removeMovieClip();
}
if (this.hitTest(_root.poder) and (_root.poder._currentframe == 1)) {
_root.poder.gotoAndPlay(2);
_root.inmu.gotoAndPlay(2);
_root.inmu.t = getTimer();
}
if (this.hitTest(_root.energy) and (_root.energy._currentframe == 1)) {
if (_root.energia <= 240) {
_root.energy.gotoAndPlay(2);
_root.energia = _root.energia + 10;
_root.barra._width = _root.barra._width + 10;
_root.barra._x = _root.barra._x - 5;
}
}
i = 1;
while (i <= _root.numEnemy) {
if (this.hitTest(_root["enemy" + i].centro) and (_root["enemy" + i].listo == false)) {
mysoundobj = new Sound(this);
mysoundobj.setVolume(100);
mysoundobj.attachSound("burbu");
mysoundobj.start();
if (_root["enemy" + i].rol == 1) {
_root["enemy" + i].vuela = false;
_root["enemy" + i].cae = true;
} else {
_root.puntos = _root.puntos + 10;
_root["enemy" + i].cae = false;
_root["enemy" + i].vuela = true;
_root["enemy" + i].x = _root["enemy" + i]._x;
_root["enemy" + i].h = _root["enemy" + i]._y;
}
_root["enemy" + i].listo = true;
_root["enemy" + i].burbu.gotoAndPlay(1);
this._visible = true;
_root.mira.laserCounter--;
this.removeMovieClip();
}
i++;
}
}
}
}
Instance of Symbol 152 MovieClip "enemy1" in Frame 19
onClipEvent (load) {
function reset() {
toco = false;
this.malo.gotoAndStop(1);
this.burbu._visible = true;
this.burbu.gotoAndStop(1);
inc = 2;
vuela = false;
cae = false;
listo = false;
m = _root.spaceship.canon._currentframe;
this._x = 600 + random(400);
this._y = random(200) + 50;
i = 1;
while (i <= _root.numEnemy) {
if (this.hitTest(_root["enemy" + i]) and (_root["enemy" + i]._name != this._name)) {
reset();
}
i++;
}
enemySpeed = random(5) + _root.vel;
this.gotoAndStop(1);
this._visible = true;
lugar = 1 + random(2);
this.gotoAndStop(lugar);
if (this._currentframe == 1) {
rol = 0;
} else {
rol = 1;
}
}
reset();
bottom = 310;
x1 = x;
med = x;
}
onClipEvent (enterFrame) {
if (_root.pausa == false) {
groundSpeed = _root.spaceship.speedx;
if ((vuela == true) or (cae == true)) {
if ((vuela == true) and (this._y > -20)) {
this._x = this._x - (5 + random(5));
this._y = this._y - (3 + random(5));
if (this.burbu._currentframe > 5) {
this.burbu._visible = false;
}
}
if ((cae == true) and (this._y <= bottom)) {
if (this.burbu._currentframe > 5) {
this.burbu._visible = false;
inc = inc * 1.1;
this._y = this._y + (4 + inc);
}
} else if ((this._y > bottom) and (cae == true)) {
this._y = bottom + 30;
if (this.malo._currentframe == 1) {
this.malo.gotoAndPlay(2);
}
if (this.malo._currentframe != 1) {
if (groundSpeed > 0) {
this._x = this._x - (5 + groundSpeed);
} else {
this._x = this._x - 7;
}
}
}
} else {
this._x = this._x - enemySpeed;
}
if (this._currentframe == 2) {
if (((this.hitTest(_root.spaceship.lug) and (toco == false)) and (this.burbu._currentframe != 1)) and (_root.inmu._currentframe == 1)) {
toco = true;
_root.spaceship.gotoAndPlay(2);
_root.energia = _root.energia - 10;
_root.barra._width = _root.barra._width - 10;
_root.barra._x = _root.barra._x + 5;
}
}
if ((this._x < -10) or (this._y < -10)) {
if ((this._currentframe == 1) and (vuela == false)) {
_root.energia = _root.energia - 10;
_root.barra._width = _root.barra._width - 10;
_root.barra._x = _root.barra._x + 5;
}
reset();
}
}
}
Instance of Symbol 156 MovieClip "energy" in Frame 19
onClipEvent (load) {
function reset() {
this._x = random(3000) + 550;
this._y = random(200) + 100;
enemySpeed = 5;
item = random(4) + 1;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.pausa == false) {
this._x = this._x - enemySpeed;
if (this._x < -10) {
reset();
}
}
}
Instance of Symbol 160 MovieClip "poder" in Frame 19
onClipEvent (load) {
function reset() {
this._x = random(9000) + 1050;
this._y = random(200) + 100;
enemySpeed = 5;
item = random(4) + 1;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.pausa == false) {
if (_root.inmu._currentframe == 1) {
this._x = this._x - enemySpeed;
}
if (this._x < -10) {
reset();
}
}
}
Instance of Symbol 162 MovieClip "mctiempo" in Frame 19
onClipEvent (load) {
i = 1;
_root.nivel = i;
_root.pausa = true;
_root.pantallaintermedia._visible = true;
_root.pantallaintermedia.gotoAndPlay("inicio");
mysoundobj = new Sound(this);
mysoundobj.attachSound("tema1");
mysoundobj.setVolume(50);
mysoundobj.start(0, 1000);
}
onClipEvent (enterFrame) {
_root.puntos1 = _root.puntos;
_root.peces2 = _root.puntos / 60;
if (_root.energia <= 0) {
_root.gotoAndPlay("game_over");
}
if (_root.puntos >= _root.objetivo) {
_root.vel = _root.vel + 1.3;
mysoundobj.stop();
_root.pausa = true;
_root.pantallaintermedia._visible = true;
_root.pantallaintermedia.gotoAndPlay("nivel");
_root.numEnemy = _root.numEnemy + 1;
ll = _root.numEnemy;
_root.enemy1.duplicateMovieClip("enemy" + ll, ll + 100);
_root.objetivo = _root.objetivo + (100 + (i * 100));
_root.peces = (_root.objetivo - _root.puntos) / 60;
i = i + 1;
_root.nivel = i;
}
}
Instance of Symbol 218 MovieClip "pant_pausa" in Frame 19
/* no clip actions */
Instance of Symbol 27 MovieClip "sal" in Frame 19
on (rollOver) {
gotoAndStop (2);
}
on (rollOut) {
gotoAndStop (1);
}
on (release) {
id_instalacion = _root.idi;
id_usuario = _root.idu;
id_partido = _root.idp;
id_contenido = _root.idc;
puntos1 = 0;
url_retorno = _root.url_ret;
getURL ("javascript:window.close();");
}
on (releaseOutside) {
gotoAndStop (1);
}
on (press) {
gotoAndStop (3);
}
Instance of Symbol 221 MovieClip "pau" in Frame 19
on (rollOver) {
gotoAndStop (2);
}
on (rollOut) {
gotoAndStop (1);
}
on (release) {
gotoAndStop (2);
}
on (releaseOutside) {
gotoAndStop (1);
}
on (press) {
gotoAndStop (3);
if (_root.pantallaintermedia._visible == false) {
_root.opciones.gotoAndStop(2);
if (_root.pausa == true) {
_root.pausa = false;
_root.opciones.gotoAndStop(1);
_root.pant_pausa._y = 10000;
_root.pausatrue = false;
} else {
_root.pausa = true;
_root.pausatrue = true;
_root.pant_pausa._y = 200;
}
}
}
Instance of Symbol 224 MovieClip "opciones" in Frame 19
on (rollOver) {
if (_root.pausatrue == false) {
gotoAndStop (2);
}
}
on (rollOut) {
if (_root.pausatrue == false) {
gotoAndStop (1);
}
}
on (releaseOutside) {
if (_root.pausatrue == false) {
gotoAndStop (1);
}
}
on (release) {
if (_root.pantallaintermedia._visible == false) {
if (_root.pausatrue == false) {
gotoAndStop (2);
_root.pantallaintermedia._visible = true;
_root.pantallaintermedia.gotoAndPlay("opciones");
if (_root.pausa == true) {
_root.pausa = false;
} else {
_root.pausa = true;
}
}
}
}
on (press) {
if (_root.pausatrue == false) {
gotoAndStop (3);
}
}
Frame 20
stop();
stop();
Frame 31
i = 1;
while (i <= numEnemy) {
_root["enemy" + i].unloadMovie();
i++;
}
_root.opciones.unloadMovie();
_root.pau.unloadMovie();
_root.sal._x = 172;
stop();
Symbol 20 Button
on (release) {
if (_root.pausa == false) {
_root.gotoAndPlay("juego");
mysoundob.stop();
}
}
Symbol 24 Button
on (release) {
if (_root.pausa == false) {
_root.gotoAndPlay("ayuda");
mysoundob.stop();
}
}
Symbol 27 MovieClip Frame 1
stop();
Symbol 27 MovieClip Frame 2
stop();
Symbol 27 MovieClip Frame 3
stop();
Symbol 47 Button
on (release) {
gotoAndPlay (29);
}
Symbol 59 Button
on (release) {
gotoAndPlay (30);
}
Symbol 72 Button
on (release) {
if (_root.pausa == false) {
_root.gotoAndPlay("juego");
}
}
Symbol 73 MovieClip Frame 28
gotoAndPlay (1);
Symbol 73 MovieClip Frame 29
stop();
Symbol 73 MovieClip Frame 30
stop();
Symbol 76 MovieClip Frame 1
stop();
Symbol 87 MovieClip Frame 1
mysoundobj1 = new Sound(this);
mysoundobj1.attachSound("tema1");
mysoundobj1.start(0, 1000);
stop();
Symbol 88 MovieClip Frame 1
stop();
Symbol 108 MovieClip Frame 1
Symbol 109 MovieClip Frame 1
stop();
Instance of Symbol 96 MovieClip "canon" in Symbol 109 MovieClip Frame 1
onClipEvent (enterFrame) {
}
Symbol 109 MovieClip Frame 20
gotoAndStop (1);
Symbol 116 MovieClip Frame 1
stop();
Symbol 116 MovieClip Frame 2
stop();
Symbol 116 MovieClip Frame 3
stop();
Symbol 120 MovieClip Frame 1
stop();
Symbol 127 MovieClip Frame 1
stop();
Symbol 127 MovieClip Frame 8
stop();
Symbol 127 MovieClip Frame 25
gotoAndStop (1);
Symbol 136 MovieClip Frame 1
stop();
Symbol 144 MovieClip Frame 1
stop();
Symbol 144 MovieClip Frame 6
stop();
Symbol 151 MovieClip Frame 1
stop();
Symbol 151 MovieClip Frame 19
gotoAndPlay (2);
Symbol 152 MovieClip Frame 1
stop();
Symbol 152 MovieClip Frame 2
stop();
Symbol 156 MovieClip Frame 1
stop();
Symbol 156 MovieClip Frame 21
gotoAndStop (1);
_root.energy.reset();
Symbol 160 MovieClip Frame 1
stop();
Symbol 160 MovieClip Frame 15
stop();
_root.poder.reset();
Symbol 171 Button
on (release) {
_root.pantallaintermedia._visible = false;
_root.pausa = false;
}
Symbol 179 Button
on (release) {
_root.pantallaintermedia._visible = false;
_root.pausa = false;
_root.tipo.gotoAndPlay(2);
}
Symbol 187 MovieClip Frame 1
stop();
Symbol 187 MovieClip Frame 2
stop();
Symbol 192 MovieClip Frame 1
stop();
Symbol 192 MovieClip Frame 2
stop();
Symbol 197 MovieClip Frame 1
stop();
Symbol 197 MovieClip Frame 2
stop();
Symbol 202 MovieClip Frame 1
stop();
Symbol 202 MovieClip Frame 2
stop();
Symbol 207 MovieClip Frame 1
stop();
Symbol 207 MovieClip Frame 2
stop();
Symbol 212 MovieClip Frame 1
stop();
Symbol 212 MovieClip Frame 2
stop();
Symbol 212 MovieClip Frame 3
stop();
Instance of Symbol 187 MovieClip in Symbol 213 MovieClip Frame 1
on (release) {
_root.globalsound.setVolume(850);
gotoAndStop (2);
}
on (rollOver) {
gotoAndStop (2);
}
on (rollOut) {
gotoAndStop (1);
}
Instance of Symbol 192 MovieClip in Symbol 213 MovieClip Frame 1
on (release) {
_root.globalsound.setVolume(0);
gotoAndStop (2);
}
on (rollOver) {
gotoAndStop (2);
}
on (rollOut) {
gotoAndStop (1);
}
Instance of Symbol 197 MovieClip in Symbol 213 MovieClip Frame 1
on (release) {
_highquality = 2;
gotoAndStop (2);
}
on (rollOver) {
gotoAndStop (2);
}
on (rollOut) {
gotoAndStop (1);
}
Instance of Symbol 202 MovieClip in Symbol 213 MovieClip Frame 1
on (release) {
_highquality = 0;
gotoAndStop (2);
}
on (rollOver) {
gotoAndStop (2);
}
on (rollOut) {
gotoAndStop (1);
}
Instance of Symbol 207 MovieClip in Symbol 213 MovieClip Frame 1
on (release) {
_highquality = 1;
gotoAndStop (2);
}
on (rollOver) {
gotoAndStop (2);
}
on (rollOut) {
gotoAndStop (1);
}
Instance of Symbol 212 MovieClip in Symbol 213 MovieClip Frame 1
on (rollOver) {
if (_root.pausatrue == false) {
gotoAndStop (2);
}
}
on (rollOut) {
if (_root.pausatrue == false) {
gotoAndStop (1);
}
}
on (releaseOutside) {
if (_root.pausatrue == false) {
gotoAndStop (1);
}
}
on (release) {
_root.pantallaintermedia._visible = false;
_root.pausa = false;
}
onClipEvent (load) {
}
on (press) {
gotoAndStop (3);
}
Symbol 214 MovieClip Frame 19
stop();
Symbol 214 MovieClip Frame 40
stop();
Symbol 214 MovieClip Frame 47
stop();
Symbol 218 MovieClip Frame 1
stop();
Instance of Symbol 217 MovieClip in Symbol 218 MovieClip Frame 1
/* no clip actions */
Symbol 218 MovieClip Frame 3
stop();
Symbol 221 MovieClip Frame 1
stop();
Symbol 221 MovieClip Frame 2
stop();
Symbol 221 MovieClip Frame 3
stop();
Symbol 224 MovieClip Frame 1
stop();
Symbol 224 MovieClip Frame 2
stop();
Symbol 224 MovieClip Frame 3
stop();