home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mobiclic 127
/
MOBICLIC127.ISO
/
mac
/
DATA
/
DSS127
/
DSS127_03
/
DSS127_03.swf
/
scripts
/
frame_150
/
DoAction.as
Wrap
Text File
|
2010-09-13
|
5KB
|
202 lines
function testDone()
{
if(getPos(listDone,0) == -1)
{
allowManette = 1;
if(!doneRappel)
{
doneRappel = 1;
joueSon({nomSon:"02_R02",actionFin:"RIEN"});
}
}
}
function testReponse_1()
{
this.ZONE_02_01.gotoAndStop("E3");
if(listDone[0] == 1)
{
joueBruitage({nomSon:"B_ECHEC"});
joueSon({nomSon:"02_E01",actionFin:"testReponse_2"});
}
else
{
joueBruitage({nomSon:"B_SUCCES"});
joueSon({nomSon:"02_S01",actionFin:"testReponse_2"});
}
}
function testReponse_2()
{
this.ZONE_02_02.gotoAndStop("E3");
if(listDone[1] == 2)
{
joueBruitage({nomSon:"B_ECHEC"});
joueSon({nomSon:"02_E02",actionFin:"testReponse_3"});
}
else
{
joueBruitage({nomSon:"B_SUCCES"});
joueSon({nomSon:"02_S02",actionFin:"testReponse_3"});
}
}
function testReponse_3()
{
this.ZONE_02_03.gotoAndStop("E3");
if(listDone[2] == 2)
{
joueBruitage({nomSon:"B_ECHEC"});
joueSon({nomSon:"02_E03",actionFin:"testReponse_4"});
}
else
{
joueBruitage({nomSon:"B_SUCCES"});
joueSon({nomSon:"02_S03",actionFin:"testReponse_4"});
}
}
function testReponse_4()
{
this.ZONE_02_04.gotoAndStop("E3");
if(listDone[3] == 1)
{
joueBruitage({nomSon:"B_ECHEC"});
joueSon({nomSon:"02_E04",actionFin:"suiteReponses"});
}
else
{
joueBruitage({nomSon:"B_SUCCES"});
joueSon({nomSon:"02_S04",actionFin:"suiteReponses"});
}
}
function suiteReponses()
{
gotoAndStop("02_FIN");
}
gereTextes.afficheLM({codeLM:"LM_CONSIGNE"});
stop();
var i = 1;
while(i <= 4)
{
this["ZONE_02_" + gimme2digits(i)].pZone = i;
this["ZONE_02_" + gimme2digits(i)].onRollOver = function()
{
gereCursor(2);
this.gotoAndStop("E2");
joueBruitage({nomSon:"B_EXO"});
};
this["ZONE_02_" + gimme2digits(i)].onRollOut = function()
{
gereCursor(1);
this.gotoAndStop("E1");
stopBruitage({nomSon:"B_EXO"});
};
this["ZONE_02_" + gimme2digits(i)].onPress = function()
{
gereCursor(1);
this.gotoAndStop("E1");
stopBruitage({nomSon:"B_EXO"});
_root.gotoAndStop("02_" + gimme2digits(this.pZone));
};
i++;
}
var i = 1;
while(i <= 4)
{
this["BT_VRAI_" + gimme2digits(i)].pZone = i;
this["BT_VRAI_" + gimme2digits(i)].pDone = 0;
this["BT_VRAI_" + gimme2digits(i)].onRollOver = function()
{
if(this.pDone == 0)
{
gereCursor(2);
this.gotoAndStop("E2");
joueBruitage({nomSon:"B_REPONSE"});
}
};
this["BT_VRAI_" + gimme2digits(i)].onRollOut = function()
{
if(this.pDone == 0)
{
gereCursor(1);
this.gotoAndStop("E1");
stopBruitage({nomSon:"B_REPONSE"});
}
};
this["BT_VRAI_" + gimme2digits(i)].onPress = function()
{
if(this.pDone == 0)
{
this.pDone = 1;
gereCursor(1);
this.gotoAndStop("E3");
stopBruitage({nomSon:"B_REPONSE"});
_root["BT_FAUX_" + gimme2digits(this.pZone)].gotoAndStop("E1");
_root["BT_FAUX_" + gimme2digits(this.pZone)].pDone = 0;
_root.listDone[this.pZone - 1] = 1;
_root.testDone();
}
};
this["BT_FAUX_" + gimme2digits(i)].pZone = i;
this["BT_FAUX_" + gimme2digits(i)].pDone = 0;
this["BT_FAUX_" + gimme2digits(i)].onRollOver = function()
{
if(this.pDone == 0)
{
gereCursor(2);
this.gotoAndStop("E2");
joueBruitage({nomSon:"B_REPONSE"});
}
};
this["BT_FAUX_" + gimme2digits(i)].onRollOut = function()
{
if(this.pDone == 0)
{
gereCursor(1);
this.gotoAndStop("E1");
stopBruitage({nomSon:"B_REPONSE"});
}
};
this["BT_FAUX_" + gimme2digits(i)].onPress = function()
{
if(this.pDone == 0)
{
this.pDone = 2;
gereCursor(1);
this.gotoAndStop("E3");
stopBruitage({nomSon:"B_REPONSE"});
_root["BT_VRAI_" + gimme2digits(this.pZone)].gotoAndStop("E1");
_root["BT_VRAI_" + gimme2digits(this.pZone)].pDone = 0;
_root.listDone[this.pZone - 1] = 2;
_root.testDone();
}
};
i++;
}
MANETTE.onRollOver = function()
{
this.useHandCursor = 0;
if(_root.allowManette == 1)
{
this.useHandCursor = 1;
gereCursor(2);
joueBruitage({nomSon:"B_MANETTE"});
}
};
MANETTE.onRollOut = function()
{
if(_root.allowManette == 1)
{
gereCursor(1);
stopBruitage({nomSon:"B_MANETTE"});
}
};
MANETTE.onPress = function()
{
if(_root.allowManette == 1)
{
_root.allowManette = 0;
gereCursor(1);
this.gotoAndStop("E2");
stopBruitage({nomSon:"B_MANETTE"});
_root.testReponse_1();
}
};