home *** CD-ROM | disk | FTP | other *** search
/ Mobiclic 127 / MOBICLIC127.ISO / mac / DATA / DSS127 / DSS127_02 / DSS127_02.swf / scripts / frame_136 / DoAction.as
Text File  |  2010-09-13  |  2KB  |  75 lines

  1. stop();
  2. if(gMusicOn)
  3. {
  4.    soundObjects[gMusic].setVolume(gVolume);
  5. }
  6. gereTextes.masqueLM({codeLM:listTextes[0]});
  7. gereTextes.masqueLM({codeLM:listTextes[1]});
  8. gereTextes.masqueLM({codeLM:listTextes[2]});
  9. gereTextes.masqueLM({mc:this,codeLM:"LM_VIDEO"});
  10. clearInterval(intervalTeletext);
  11. clearInterval(intervalReaction);
  12. clearInterval(pauseReaction);
  13. clearInterval(intervalPause);
  14. stopBruitage({nomSon:"B_HELICO_1"});
  15. stopBruitage({nomSon:"B_HELICO_2"});
  16. if(_global.HOTE !== undefined)
  17. {
  18.    if(_global.HOTE.fromPastilles == 1)
  19.    {
  20.       _global.ChangeModule({codeRub:"DSS",numMod:5,A_GoLabel:"ATTENTE_RETOUR"});
  21.    }
  22.    else if(getPos(_global.HOTE.gListeVu_DSS127[1],0) == -1)
  23.    {
  24.       gotoAndStop("FIN_01");
  25.       play();
  26.    }
  27. }
  28. var i = 1;
  29. while(i <= 3)
  30. {
  31.    this["ZONE_" + gimme2digits(i)].pZone = i;
  32.    this["ZONE_" + gimme2digits(i)].onRollOver = function()
  33.    {
  34.       this.useHandCursor = 0;
  35.       if(_global.HOTE == undefined)
  36.       {
  37.          this.useHandCursor = 1;
  38.          gereCursor(2);
  39.          this.gotoAndStop("E2");
  40.          joueBruitage({nomSon:"B_" + gimme2digits(this.pZone)});
  41.       }
  42.       else if(_global.HOTE.gListeVu_DSS127[1][this.pZone - 1] == 0)
  43.       {
  44.          this.useHandCursor = 1;
  45.          gereCursor(2);
  46.          this.gotoAndStop("E2");
  47.          joueBruitage({nomSon:"B_" + gimme2digits(this.pZone)});
  48.       }
  49.    };
  50.    this["ZONE_" + gimme2digits(i)].onRollOut = function()
  51.    {
  52.       gereCursor(1);
  53.       this.gotoAndStop("E1");
  54.       stopBruitage({nomSon:"B_" + gimme2digits(this.pZone)});
  55.    };
  56.    this["ZONE_" + gimme2digits(i)].onPress = function()
  57.    {
  58.       if(_global.HOTE == undefined)
  59.       {
  60.          gereCursor(1);
  61.          this.gotoAndStop("E1");
  62.          stopBruitage({nomSon:"B_" + gimme2digits(this.pZone)});
  63.          _root.gotoAndStop("LAB_" + gimme2digits(this.pZone));
  64.       }
  65.       else if(_global.HOTE.gListeVu_DSS127[1][this.pZone - 1] == 0)
  66.       {
  67.          gereCursor(1);
  68.          this.gotoAndStop("E1");
  69.          stopBruitage({nomSon:"B_" + gimme2digits(this.pZone)});
  70.          _root.gotoAndStop("LAB_" + gimme2digits(this.pZone));
  71.       }
  72.    };
  73.    i++;
  74. }
  75.