home *** CD-ROM | disk | FTP | other *** search
/ Mobiclic 174 / MOBICLIC174.ISO / mac / DATA / QZZ174 / QZZ174_00 / QZZ174_00.swf / scripts / frame_50 / DoAction.as
Text File  |  2015-04-27  |  1KB  |  53 lines

  1. function initTonneaux()
  2. {
  3.    var _loc5_ = ["A","B"];
  4.    var _loc2_ = 1;
  5.    while(_loc2_ < 3)
  6.    {
  7.       var _loc3_ = this.TONNEAUX["TONNEAU_" + gimme2digits(_loc2_)];
  8.       _loc3_.pLettre = _loc5_[_loc2_ - 1];
  9.       _loc3_.pNum = _loc2_;
  10.       _loc3_.pBruit = "B_T_0" + _loc2_;
  11.       _loc3_.onRollOver = function()
  12.       {
  13.          this.useHandCursor = true;
  14.          gereCursor(2);
  15.          this.gotoAndPlay("E2");
  16.          joueBruitage({nomSon:this.pBruit});
  17.       };
  18.       _loc3_.onRollOut = function()
  19.       {
  20.          gereCursor(1);
  21.          this.gotoAndPlay("E1");
  22.          stopBruitage({nomSon:this.pBruit});
  23.       };
  24.       _loc3_.onPress = function()
  25.       {
  26.          gereCursor(1);
  27.          stopBruitage({nomSon:this.pBruit});
  28.          gTypePartie = this.pNum;
  29.          gListeJoueur = [];
  30.          gInfosJoueur = new Object();
  31.          gJoueur = 1;
  32.          this.gotoAndPlay("E3");
  33.          desinitTonneaux();
  34.       };
  35.       _loc2_ = _loc2_ + 1;
  36.    }
  37. }
  38. function desinitTonneaux()
  39. {
  40.    var _loc4_ = ["A","B"];
  41.    var _loc2_ = 1;
  42.    while(_loc2_ < 3)
  43.    {
  44.       var _loc3_ = this.TONNEAUX["TONNEAU_" + gimme2digits(_loc2_)];
  45.       desactiveClip(_loc3_);
  46.       _loc2_ = _loc2_ + 1;
  47.    }
  48. }
  49. CAPITAINE.gotoAndPlay("E1");
  50. gTypePartie = 0;
  51. initTonneaux();
  52. stop();
  53.