home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mobiclic 127
/
MOBICLIC127.ISO
/
mac
/
DATA
/
DSS127
/
DSS127_07
/
DSS127_07.swf
/
scripts
/
frame_7
/
DoAction.as
< prev
Wrap
Text File
|
2010-09-13
|
1KB
|
49 lines
trace("START frame");
StartFrame();
InitMC({mc:BT_EXPOSE,son:"B_EXP",IB:"IB_EXP"});
BT_EXPOSE.OnPress = function()
{
ChangeModule({codeRub:"MBB",numMod:1});
};
BT_EXPOSE.swapDepths(25002);
InitMC({mc:BT_COURRIER,son:"B_COUR",IB:"IB_COUR"});
BT_COURRIER.OnPress = function()
{
_root.stopSon();
_root.CourrierBox._visible = true;
this.IntId = setInterval(this,"DelaiAffichage",100);
};
BT_COURRIER.swapDepths(25003);
InitMC({mc:BT_WEB,son:"B_WEB",IB:"IB_WEB"});
BT_WEB.OnPress = function()
{
_root.stopSon();
getUrl("http:www.mobiclic.com", "_blank");
};
BT_WEB.swapDepths(25004);
BT_COURRIER.DelaiAffichage = function()
{
clearInterval(this.IntId);
if(_global.HOTE.ImprimerEcran())
{
_root.CourrierBox._visible = false;
}
else
{
_root.CourrierBox._visible = false;
}
};
_root.OnMediaPleinEcranOff = function()
{
BT_EXPOSE._visible = true;
BT_WEB._visible = true;
BT_COURRIER._visible = true;
};
_root.OnMediaPleinEcranOn = function()
{
BT_EXPOSE._visible = false;
BT_WEB._visible = false;
BT_COURRIER._visible = false;
};
stop();