Frame 2
if (getBytesLoaded() != getBytesTotal()) {
gotoAndPlay (1);
} else {
gotoAndPlay (3);
}
Frame 3
goal = new Sound();
goal.attachSound("goal");
shoot = new Sound();
shoot.attachSound("shoot");
sifflet = new Sound();
sifflet.attachSound("sifflet");
Frame 80
stop();
Frame 81
pays1 = "esp";
pays2 = "esp";
nom_J1 = "";
nom_J2 = "";
nomJ1 = "Joueur 1";
nomJ2 = "Joueur 2";
minute = "2";
seconde = "00";
temps = "2:00";
min = 2;
sec = 0;
score1 = 0;
unite1 = 0;
dizaine1 = 0;
score2 = 0;
unite2 = 0;
dizaine2 = 0;
stop();
Frame 82
sifflet.start(0, 1);
_root.joueur1._visible = true;
_root.joueur2._visible = true;
h = 0;
v = 0;
angle = 0;
vitX = 0;
vitY = 0;
paysJ1 = "ESPAGNE";
if (_root.pays1 == "fra") {
_root.attachMovie("france", "joueur1", 1);
paysJ1 = "FRANCE";
}
if (_root.pays1 == "esp") {
_root.attachMovie("espagne", "joueur1", 1);
paysJ1 = "ESPAGNE";
}
if (_root.pays1 == "bra") {
_root.attachMovie("bresil", "joueur1", 1);
paysJ1 = "BRESIL";
}
if (_root.pays1 == "cam") {
_root.attachMovie("cameroun", "joueur1", 1);
paysJ1 = "CAMEROUN";
}
_root.joueur1._x = 130;
_root.joueur1._y = 212;
_root.joueur1._xscale = 75;
_root.joueur1._yscale = 75;
if (_root.nom_j1 == "") {
_root.nom_j1 = paysJ1;
} else {
_root.nom_j1 = _root.nom_j1.toUpperCase();
}
angle2 = 0;
vitX2 = 0;
vitY2 = 0;
paysJ2 = " ESPAGNE";
if (_root.pays2 == "fra") {
_root.attachMovie("france", "joueur2", 2);
paysJ2 = " FRANCE";
}
if (_root.pays2 == "esp") {
_root.attachMovie("espagne", "joueur2", 2);
paysJ2 = " ESPAGNE";
}
if (_root.pays2 == "bra") {
_root.attachMovie("bresil", "joueur2", 2);
paysJ2 = " BRESIL";
}
if (_root.pays2 == "cam") {
_root.attachMovie("cameroun", "joueur2", 2);
paysJ2 = "CAMEROUN";
}
_root.joueur2._x = 530;
_root.joueur2._y = 212;
_root.joueur2._xscale = 75;
_root.joueur2._yscale = 75;
if (_root.nom_j2 == "") {
_root.nom_j2 = paysJ2;
} else {
_root.nom_j2 = _root.nom_j2.toUpperCase();
}
stop();
function decSec() {
_root.temps = (minute + ":") + seconde;
sec--;
if (sec < 0) {
sec = 59;
min--;
}
if (sec < 10) {
seconde = "0" + sec;
} else {
seconde = sec;
}
minute = min;
if (min < 0) {
clearInterval(tps);
_root.gotoAndStop(86);
}
}
stop();
tps = setInterval(decSec, 1000);
Instance of Symbol 88 MovieClip in Frame 82
onClipEvent (load) {
vitesse = 20;
rap = 4.5;
frein = 0.7;
}
onClipEvent (enterFrame) {
_root.ballon._x = _root.ballon._x + _root.h;
_root.ballon._y = _root.ballon._y + _root.v;
if (((!Key.isDown(39)) && (!Key.isDown(37))) && (!Key.isDown(38))) {
_root.joueur1.gotoAndStop(2);
}
if (Key.isDown(39)) {
_root.angle = _root.angle + 20;
_root.joueur1.gotoAndStop(1);
_root.joueur1._rotation = _root.angle;
}
if (Key.isDown(37)) {
_root.angle = _root.angle - 20;
_root.joueur1.gotoAndStop(1);
_root.joueur1._rotation = _root.angle;
}
if (Key.isDown(38)) {
_root.joueur1.gotoAndStop(1);
i = _root.angle % 360;
if (i == 0) {
_root.vitY = -vitesse;
}
if ((i > 0) && (i < 90)) {
_root.vitX = i / rap;
_root.vitY = -(vitesse - (i / rap));
}
if (i == 90) {
_root.vitX = vitesse;
}
if ((i > 90) && (i < 180)) {
_root.vitX = vitesse - ((i - 90) / rap);
_root.vitY = (i - 90) / rap;
}
if (i == 180) {
_root.vitY = vitesse;
}
if ((i > 180) && (i < 270)) {
_root.vitX = -((i - 180) / rap);
_root.vitY = vitesse - ((i - 180) / rap);
}
if (i == 270) {
_root.vitX = -vitesse;
}
if ((i > 270) && (i < 360)) {
_root.vitX = -(vitesse - ((i - 270) / rap));
_root.vitY = -((i - 270) / rap);
}
if ((i < 0) && (i > -90)) {
_root.vitX = -(Math.abs(i) / rap);
_root.vitY = -(vitesse - (Math.abs(i) / rap));
}
if (i == -90) {
_root.vitX = -vitesse;
}
if ((i < -90) && (i > -180)) {
_root.vitX = -(vitesse - ((Math.abs(i) - 90) / rap));
_root.vitY = (Math.abs(i) - 90) / rap;
}
if (i == -180) {
_root.vitY = vitesse;
}
if ((i < -180) && (i > -270)) {
_root.vitX = (Math.abs(i) - 180) / rap;
_root.vitY = vitesse - ((Math.abs(i) - 180) / rap);
}
if (i == -270) {
_root.vitX = vitesse;
}
if ((i < -270) && (i > -360)) {
_root.vitX = vitesse - ((Math.abs(i) - 270) / rap);
_root.vitY = -((Math.abs(i) - 270) / rap);
}
} else {
_root.vitX = _root.vitX * frein;
_root.vitY = _root.vitY * frein;
}
vit = Math.sqrt((_root.vitX * _root.vitX) + (_root.vitY * _root.vitY));
if (vit > vitesse) {
_root.vitX = _root.vitX * (vitesse / vit);
_root.vitY = _root.vitY * (vitesse / vit);
}
_root.joueur1._x = _root.joueur1._x + _root.vitX;
_root.joueur1._y = _root.joueur1._y + _root.vitY;
if (((!Key.isDown(90)) && (!Key.isDown(81))) && (!Key.isDown(68))) {
_root.joueur2.gotoAndStop(2);
}
if (Key.isDown(68)) {
_root.angle2 = _root.angle2 + 20;
_root.joueur2.gotoAndStop(1);
_root.joueur2._rotation = _root.angle2;
}
if (Key.isDown(81)) {
_root.angle2 = _root.angle2 - 20;
_root.joueur2.gotoAndStop(1);
_root.joueur2._rotation = _root.angle2;
}
if (Key.isDown(90)) {
_root.joueur2.gotoAndStop(1);
i2 = _root.angle2 % 360;
if (i2 == 0) {
_root.vitY2 = -vitesse;
}
if ((i2 > 0) && (i2 < 90)) {
_root.vitX2 = i2 / rap;
_root.vitY2 = -(vitesse - (i2 / rap));
}
if (i2 == 90) {
_root.vitX2 = vitesse;
}
if ((i2 > 90) && (i2 < 180)) {
_root.vitX2 = vitesse - ((i2 - 90) / rap);
_root.vitY2 = (i2 - 90) / rap;
}
if (i2 == 180) {
_root.vitY2 = vitesse;
}
if ((i2 > 180) && (i2 < 270)) {
_root.vitX2 = -((i2 - 180) / rap);
_root.vitY2 = vitesse - ((i2 - 180) / rap);
}
if (i2 == 270) {
_root.vitX2 = -vitesse;
}
if ((i2 > 270) && (i2 < 360)) {
_root.vitX2 = -(vitesse - ((i2 - 270) / rap));
_root.vitY2 = -((i2 - 270) / rap);
}
if ((i2 < 0) && (i2 > -90)) {
_root.vitX2 = -(Math.abs(i2) / rap);
_root.vitY2 = -(vitesse - (Math.abs(i2) / rap));
}
if (i2 == -90) {
_root.vitX2 = -vitesse;
}
if ((i2 < -90) && (i2 > -180)) {
_root.vitX2 = -(vitesse - ((Math.abs(i2) - 90) / rap));
_root.vitY2 = (Math.abs(i2) - 90) / rap;
}
if (i2 == -180) {
_root.vitY2 = vitesse;
}
if ((i2 < -180) && (i2 > -270)) {
_root.vitX2 = (Math.abs(i2) - 180) / rap;
_root.vitY2 = vitesse - ((Math.abs(i2) - 180) / rap);
}
if (i2 == -270) {
_root.vitX2 = vitesse;
}
if ((i2 < -270) && (i2 > -360)) {
_root.vitX2 = vitesse - ((Math.abs(i2) - 270) / rap);
_root.vitY2 = -((Math.abs(i2) - 270) / rap);
}
} else {
_root.vitX2 = _root.vitX2 * frein;
_root.vitY2 = _root.vitY2 * frein;
}
vit2 = Math.sqrt((_root.vitX2 * _root.vitX2) + (_root.vitY2 * _root.vitY2));
if (vit2 > vitesse) {
_root.vitX2 = _root.vitX2 * (vitesse / vit2);
_root.vitY2 = _root.vitY2 * (vitesse / vit2);
}
_root.joueur2._x = _root.joueur2._x + _root.vitX2;
_root.joueur2._y = _root.joueur2._y + _root.vitY2;
_root.h = _root.h * 0.9;
_root.v = _root.v * 0.9;
if (_root.joueur1.hitTest(_root.joueur2)) {
rebond = 15;
if (_root.joueur1._x < _root.joueur2._x) {
_root.joueur1._x = _root.joueur1._x - rebond;
_root.joueur2._x = _root.joueur2._x + rebond;
} else {
_root.joueur2._x = _root.joueur2._x - rebond;
_root.joueur1._x = _root.joueur1._x + rebond;
}
if (_root.joueur1._y < _root.joueur2._y) {
_root.joueur1._y = _root.joueur1._y - rebond;
_root.joueur2._y = _root.joueur2._y + rebond;
} else {
_root.joueur2._y = _root.joueur2._y - rebond;
_root.joueur1._y = _root.joueur1._y + rebond;
}
}
_root.unite1 = _root.score1 % 10;
if (_root.score1 >= 10) {
_root.dizaine1 = (_root.score1 - _root.unite1) / 10;
} else {
_root.dizaine1 = 0;
}
if (_root.dizaine1 != 0) {
_root.dix1.gotoAndStop(_root.dizaine1);
} else {
_root.dix1.gotoAndStop(10);
}
if (_root.unite1 != 0) {
_root.unit1.gotoAndStop(_root.unite1);
} else {
_root.unit1.gotoAndStop(10);
}
_root.unite2 = _root.score2 % 10;
if (_root.score2 >= 10) {
_root.dizaine2 = (_root.score2 - _root.unite2) / 10;
} else {
_root.dizaine2 = 0;
}
if (_root.dizaine2 != 0) {
_root.dix2.gotoAndStop(_root.dizaine2);
} else {
_root.dix2.gotoAndStop(10);
}
if (_root.unite2 != 0) {
_root.unit2.gotoAndStop(_root.unite2);
} else {
_root.unit2.gotoAndStop(10);
}
}
Instance of Symbol 108 MovieClip "ballon" in Frame 82
onClipEvent (load) {
blVit = 20;
}
onClipEvent (enterFrame) {
if ((((this._x > 600) || (this._x < 50)) || (this._y > 400)) || (this._y < 10)) {
_root.ballon._x = 323;
_root.ballon._y = 214;
_root.joueur1._x = 91;
_root.joueur1._y = 212;
_root.joueur2._x = 458;
_root.joueur2._y = 212;
_root.h = 0;
_root.v = 0;
sifflet.start(0, 1);
}
i = _root.angle % 360;
if (this.hitTest(_root.joueur1)) {
_root.shoot.start();
if (((((i >= 0) && (i <= 20)) || (i >= 340)) || ((i >= -20) && (i <= 0))) || (i <= -340)) {
_root.v = -blVit;
}
if (((i >= 80) && (i <= 100)) || ((i >= -280) && (i <= -260))) {
_root.h = blVit;
}
if (((i >= 160) && (i <= 200)) || ((i >= -200) && (i <= -160))) {
_root.v = blVit;
}
if (((i >= 260) && (i <= 280)) || ((i >= -100) && (i <= -80))) {
_root.h = -blVit;
}
if (((i > 20) && (i < 80)) || ((i < -270) && (i > -340))) {
_root.h = blVit;
_root.v = -blVit;
}
if (((i > 100) && (i < 160)) || ((i < -200) && (i > -260))) {
_root.h = blVit;
_root.v = blVit;
}
if (((i > 200) && (i < 260)) || ((i < -100) && (i > -160))) {
_root.h = -blVit;
_root.v = blVit;
}
if (((i > 280) && (i < 340)) || ((i < -20) && (i > -80))) {
_root.h = -blVit;
_root.v = -blVit;
}
}
i2 = _root.angle2 % 360;
if (this.hitTest(_root.joueur2)) {
_root.shoot.start();
if (((((i2 >= 0) && (i2 <= 20)) || (i2 >= 340)) || ((i2 >= -20) && (i2 <= 0))) || (i2 <= -340)) {
_root.v = -blVit;
}
if (((i2 >= 80) && (i2 <= 100)) || ((i2 >= -280) && (i2 <= -260))) {
_root.h = blVit;
}
if (((i2 >= 160) && (i2 <= 200)) || ((i2 >= -200) && (i2 <= -160))) {
_root.v = blVit;
}
if (((i2 >= 260) && (i2 <= 280)) || ((i2 >= -100) && (i2 <= -80))) {
_root.h = -blVit;
}
if (((i2 > 20) && (i2 < 80)) || ((i2 < -270) && (i2 > -340))) {
_root.h = blVit;
_root.v = -blVit;
}
if (((i2 > 100) && (i2 < 160)) || ((i2 < -200) && (i2 > -260))) {
_root.h = blVit;
_root.v = blVit;
}
if (((i2 > 200) && (i < 260)) || ((i2 < -100) && (i2 > -160))) {
_root.h = -blVit;
_root.v = blVit;
}
if (((i2 > 280) && (i < 340)) || ((i2 < -20) && (i2 > -80))) {
_root.h = -blVit;
_root.v = -blVit;
}
}
}
Instance of Symbol 110 MovieClip in Frame 82
onClipEvent (enterFrame) {
if (this.hitTest(_root.ballon)) {
if (Math.abs(_root.h) < 10) {
_root.h = 10;
} else {
_root.h = -_root.h;
}
}
if (this.hitTest(_root.joueur1)) {
_root.joueur1._x = _root.joueur1._x + 25;
}
if (this.hitTest(_root.joueur2)) {
_root.joueur2._x = _root.joueur2._x + 25;
}
}
Instance of Symbol 110 MovieClip in Frame 82
onClipEvent (enterFrame) {
if (this.hitTest(_root.ballon)) {
if (Math.abs(_root.h) < 10) {
_root.h = -10;
} else {
_root.h = -_root.h;
}
}
if (this.hitTest(_root.joueur1)) {
_root.joueur1._x = _root.joueur1._x - 25;
}
if (this.hitTest(_root.joueur2)) {
_root.joueur2._x = _root.joueur2._x - 25;
}
}
Instance of Symbol 110 MovieClip in Frame 82
onClipEvent (enterFrame) {
if (this.hitTest(_root.ballon)) {
if (Math.abs(_root.v) < 10) {
_root.v = 10;
} else {
_root.v = -_root.v;
}
}
if (this.hitTest(_root.joueur1)) {
_root.joueur1._y = _root.joueur1._y + 25;
}
if (this.hitTest(_root.joueur2)) {
_root.joueur2._y = _root.joueur2._y + 25;
}
}
Instance of Symbol 110 MovieClip in Frame 82
onClipEvent (enterFrame) {
if (this.hitTest(_root.ballon)) {
if (Math.abs(_root.v) < 10) {
_root.v = -10;
} else {
_root.v = -_root.v;
}
}
if (this.hitTest(_root.joueur1)) {
_root.joueur1._y = _root.joueur1._y - 25;
}
if (this.hitTest(_root.joueur2)) {
_root.joueur2._y = _root.joueur2._y - 25;
}
}
Instance of Symbol 110 MovieClip in Frame 82
onClipEvent (enterFrame) {
if (this.hitTest(_root.ballon)) {
if (Math.abs(_root.h) < 10) {
_root.h = -10;
} else {
_root.h = -_root.h;
}
}
if (this.hitTest(_root.joueur1)) {
_root.joueur1._x = _root.joueur1._x - 25;
}
if (this.hitTest(_root.joueur2)) {
_root.joueur2._x = _root.joueur2._x - 25;
}
}
Instance of Symbol 110 MovieClip in Frame 82
onClipEvent (enterFrame) {
if (this.hitTest(_root.ballon)) {
if (Math.abs(_root.h) < 10) {
_root.h = 10;
} else {
_root.h = -_root.h;
}
}
if (this.hitTest(_root.joueur1)) {
_root.joueur1._x = _root.joueur1._x + 25;
}
if (this.hitTest(_root.joueur2)) {
_root.joueur2._x = _root.joueur2._x + 25;
}
}
Instance of Symbol 113 MovieClip "butG" in Frame 82
onClipEvent (enterFrame) {
if (this.hitTest(_root.ballon)) {
_root.score2++;
_root.ballon._x = 275;
_root.ballon._y = 212;
_root.joueur1._x = 91;
_root.joueur1._y = 212;
_root.joueur2._x = 458;
_root.joueur2._y = 212;
_root.h = 0;
_root.v = 0;
_root.gotoAndStop(83);
}
if (this.hitTest(_root.joueur1)) {
_root.joueur1._x = _root.joueur1._x + 25;
}
if (this.hitTest(_root.joueur2)) {
_root.joueur2._x = _root.joueur2._x + 25;
}
}
Instance of Symbol 113 MovieClip "butD" in Frame 82
onClipEvent (enterFrame) {
if (this.hitTest(_root.ballon)) {
_root.score1++;
_root.ballon._x = 275;
_root.ballon._y = 212;
_root.joueur1._x = 91;
_root.joueur1._y = 212;
_root.joueur2._x = 458;
_root.joueur2._y = 212;
_root.h = 0;
_root.v = 0;
_root.gotoAndStop(83);
}
if (this.hitTest(_root.joueur1)) {
_root.joueur1._x = _root.joueur1._x - 25;
}
if (this.hitTest(_root.joueur2)) {
_root.joueur2._x = _root.joueur2._x - 25;
}
}
Frame 83
stop();
_root.joueur1._visible = false;
_root.joueur2._visible = false;
goal.start(0, 1);
stop();
clearInterval(tps);
Instance of Symbol 108 MovieClip "ballon" in Frame 83
onClipEvent (load) {
blVit = 20;
}
onClipEvent (enterFrame) {
i = _root.angle % 360;
if (this.hitTest(_root.joueur1)) {
if (((((i >= 0) && (i <= 20)) || (i >= 340)) || ((i >= -20) && (i <= 0))) || (i <= -340)) {
_root.v = -blVit;
}
if (((i >= 80) && (i <= 100)) || ((i >= -280) && (i <= -260))) {
_root.h = blVit;
}
if (((i >= 160) && (i <= 200)) || ((i >= -200) && (i <= -160))) {
_root.v = blVit;
}
if (((i >= 260) && (i <= 280)) || ((i >= -100) && (i <= -80))) {
_root.h = -blVit;
}
if (((i > 20) && (i < 80)) || ((i < -270) && (i > -340))) {
_root.h = blVit;
_root.v = -blVit;
}
if (((i > 100) && (i < 160)) || ((i < -200) && (i > -260))) {
_root.h = blVit;
_root.v = blVit;
}
if (((i > 200) && (i < 260)) || ((i < -100) && (i > -160))) {
_root.h = -blVit;
_root.v = blVit;
}
if (((i > 280) && (i < 340)) || ((i < -20) && (i > -80))) {
_root.h = -blVit;
_root.v = -blVit;
}
}
i2 = _root.angle2 % 360;
if (this.hitTest(_root.joueur2)) {
if (((((i2 >= 0) && (i2 <= 20)) || (i2 >= 340)) || ((i2 >= -20) && (i2 <= 0))) || (i2 <= -340)) {
_root.v = -blVit;
}
if (((i2 >= 80) && (i2 <= 100)) || ((i2 >= -280) && (i2 <= -260))) {
_root.h = blVit;
}
if (((i2 >= 160) && (i2 <= 200)) || ((i2 >= -200) && (i2 <= -160))) {
_root.v = blVit;
}
if (((i2 >= 260) && (i2 <= 280)) || ((i2 >= -100) && (i2 <= -80))) {
_root.h = -blVit;
}
if (((i2 > 20) && (i2 < 80)) || ((i2 < -270) && (i2 > -340))) {
_root.h = blVit;
_root.v = -blVit;
}
if (((i2 > 100) && (i2 < 160)) || ((i2 < -200) && (i2 > -260))) {
_root.h = blVit;
_root.v = blVit;
}
if (((i2 > 200) && (i < 260)) || ((i2 < -100) && (i2 > -160))) {
_root.h = -blVit;
_root.v = blVit;
}
if (((i2 > 280) && (i < 340)) || ((i2 < -20) && (i2 > -80))) {
_root.h = -blVit;
_root.v = -blVit;
}
}
}
Frame 85
stop();
Frame 86
stop();
sifflet.start(0, 3);
clearInterval(fin);
_root.joueur1._visible = false;
_root.joueur2._visible = false;
tabPhrase = ["a facilement gagn\u00E9 !", "est vraiment un fin technicien !!!", ": c'est le meilleur !!!", ": \" et 1, et 2, et 3...0 !!!\"", "a enflamm\u00E9 le public !!!", "va toucher sa prime de victoire !!!", "va chanter I Will Survive ce soir !!!"];
if (score1 > score2) {
win = nom_J1;
} else {
win = nom_J2;
}
if (score1 == score2) {
textSC = "Les \u00E9quipes se s\u00E9parent sur un match nul !";
} else {
textSC = ((("\"" + win) + "\"") + " ") + tabPhrase[Math.round(Math.random() * 6)];
}
if (score1 < 10) {
finalSC1 = "0" + score1;
} else {
finalSC1 = score1;
}
if (score2 < 10) {
finalSC2 = "0" + score2;
} else {
finalSC2 = score2;
}
Frame 104
gotoAndStop (60);
Symbol 23 Button
on (rollOver) {
_root.ballon._y = _root.regle._y;
_root.ballon._x = 200;
}
on (press) {
_root.gotoAndPlay(85);
}
Symbol 27 Button
on (rollOver) {
_root.ballon._y = _root.jouer._y;
_root.ballon._x = 260;
}
on (press) {
_root.gloria.stop();
_root.selec.start();
_root.gotoAndPlay(81);
}
Symbol 35 Button
on (press) {
gotoAndStop (80);
}
Symbol 38 Button
on (press) {
_root.nomJ2 = _root.nom_j2;
_root.nomJ1 = _root.nom_j1;
gotoAndStop (82);
_root.selec.stop();
}
Symbol 42 MovieClip Frame 1
stop();
Symbol 42 MovieClip Frame 2
stop();
Symbol 42 MovieClip Frame 3
stop();
Symbol 42 MovieClip Frame 4
stop();
Symbol 44 Button
on (press) {
_root.vue1.gotoAndStop(1);
_root.pays1 = "esp";
}
Symbol 46 Button
on (press) {
_root.vue1.gotoAndStop(2);
_root.pays1 = "bra";
}
Symbol 48 Button
on (press) {
_root.vue1.gotoAndStop(3);
_root.pays1 = "fra";
}
Symbol 50 Button
on (press) {
_root.vue1.gotoAndStop(4);
_root.pays1 = "cam";
}
Symbol 51 Button
on (press) {
_root.vue2.gotoAndStop(1);
_root.pays2 = "esp";
}
Symbol 52 Button
on (press) {
_root.vue2.gotoAndStop(2);
_root.pays2 = "bra";
}
Symbol 53 Button
on (press) {
_root.vue2.gotoAndStop(3);
_root.pays2 = "fra";
}
Symbol 54 Button
on (press) {
_root.vue2.gotoAndStop(4);
_root.pays2 = "cam";
}
Symbol 78 MovieClip Frame 1
stop();
Symbol 78 MovieClip Frame 2
stop();
Symbol 78 MovieClip Frame 3
stop();
Symbol 78 MovieClip Frame 4
stop();
Symbol 78 MovieClip Frame 5
stop();
Symbol 78 MovieClip Frame 6
stop();
Symbol 78 MovieClip Frame 7
stop();
Symbol 78 MovieClip Frame 8
stop();
Symbol 78 MovieClip Frame 9
stop();
Symbol 78 MovieClip Frame 10
stop();
Symbol 93 MovieClip [france] Frame 1
stop();
Symbol 93 MovieClip [france] Frame 2
stop();
Symbol 98 MovieClip [cameroun] Frame 1
stop();
Symbol 98 MovieClip [cameroun] Frame 2
stop();
Symbol 99 MovieClip [espagne] Frame 1
stop();
Symbol 99 MovieClip [espagne] Frame 2
stop();
Symbol 104 MovieClip [bresil] Frame 1
stop();
Symbol 104 MovieClip [bresil] Frame 2
stop();
Symbol 127 MovieClip Frame 33
_root.gotoAndStop(82);
Symbol 144 Button
on (press) {
_root.gotoAndPlay(87);
}