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   
Text File  |  2010-09-13  |  1KB  |  49 lines

  1. trace("START frame");
  2. StartFrame();
  3. InitMC({mc:BT_EXPOSE,son:"B_EXP",IB:"IB_EXP"});
  4. BT_EXPOSE.OnPress = function()
  5. {
  6.    ChangeModule({codeRub:"MBB",numMod:1});
  7. };
  8. BT_EXPOSE.swapDepths(25002);
  9. InitMC({mc:BT_COURRIER,son:"B_COUR",IB:"IB_COUR"});
  10. BT_COURRIER.OnPress = function()
  11. {
  12.    _root.stopSon();
  13.    _root.CourrierBox._visible = true;
  14.    this.IntId = setInterval(this,"DelaiAffichage",100);
  15. };
  16. BT_COURRIER.swapDepths(25003);
  17. InitMC({mc:BT_WEB,son:"B_WEB",IB:"IB_WEB"});
  18. BT_WEB.OnPress = function()
  19. {
  20.    _root.stopSon();
  21.    getUrl("http:www.mobiclic.com", "_blank");
  22. };
  23. BT_WEB.swapDepths(25004);
  24. BT_COURRIER.DelaiAffichage = function()
  25. {
  26.    clearInterval(this.IntId);
  27.    if(_global.HOTE.ImprimerEcran())
  28.    {
  29.       _root.CourrierBox._visible = false;
  30.    }
  31.    else
  32.    {
  33.       _root.CourrierBox._visible = false;
  34.    }
  35. };
  36. _root.OnMediaPleinEcranOff = function()
  37. {
  38.    BT_EXPOSE._visible = true;
  39.    BT_WEB._visible = true;
  40.    BT_COURRIER._visible = true;
  41. };
  42. _root.OnMediaPleinEcranOn = function()
  43. {
  44.    BT_EXPOSE._visible = false;
  45.    BT_WEB._visible = false;
  46.    BT_COURRIER._visible = false;
  47. };
  48. stop();
  49.