home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mobiclic 127
/
MOBICLIC127.ISO
/
mac
/
DATA
/
DSS127
/
DSS127_02
/
DSS127_02.swf
/
scripts
/
frame_40
/
DoAction.as
Wrap
Text File
|
2010-09-13
|
762b
|
38 lines
function startPause()
{
_root.intervalPause = setInterval(_root,"suitePause",2000);
}
function suitePause()
{
clearInterval(intervalPause);
gotoAndStop("00_03");
}
stop();
var nom_du_son = "00_02";
joueSon({nomSon:nom_du_son,actionFin:"RIEN"});
doneSonnette = undefined;
ZONE_INT_01.onRollOver = function()
{
if(doneSonnette == undefined)
{
gereCursor(2);
this.gotoAndStop("E2");
}
};
ZONE_INT_01.onRollOut = function()
{
gereCursor(1);
this.gotoAndStop("E1");
};
ZONE_INT_01.onPress = function()
{
if(doneSonnette == undefined)
{
doneSonnette = 1;
gereCursor(1);
this.gotoAndStop("E1");
joueBruitage({nomSon:"B_SONNETTE"});
_root.startPause();
}
};