home *** CD-ROM | disk | FTP | other *** search
/ Mobiclic 136 / MOBICLIC136.ISO / pc / DATA / EPP136 / EPP136_00 / EPP136_00.swf / scripts / frame_20 / DoAction.as
Text File  |  2011-07-20  |  842b  |  32 lines

  1. function initBT_QUIT()
  2. {
  3.    var _loc2_ = BT_QUIT;
  4.    _loc2_.pIB = "IB_Q";
  5.    _loc2_.pBruit = "B_BT_QUIT";
  6.    _loc2_.onRollOver = function()
  7.    {
  8.       gereCursor(2);
  9.       this.gotoAndPlay("E2");
  10.       joueBruitage({nomSon:this.pBruit});
  11.       gereTextes.afficheIB({codeIB:this.pIB,X:this._x + 60,Y:this._y + this._height});
  12.    };
  13.    _loc2_.onRollOut = function()
  14.    {
  15.       gereCursor(1);
  16.       this.gotoAndPlay("E1");
  17.       stopBruitage({nomSon:this.pBruit});
  18.       gereTextes.masqueIB({codeIB:this.pIB});
  19.    };
  20.    _loc2_.onPress = function()
  21.    {
  22.       gereCursor(1);
  23.       this.gotoAndPlay("E1");
  24.       stopBruitage({nomSon:this.pBruit});
  25.       gereTextes.masqueIB({codeIB:this.pIB});
  26.       ChangeModule({codeRub:"MOB",numMod:0,FromModule:true,A_GoLabel:"START"});
  27.    };
  28. }
  29. initEPP();
  30. initBT_QUIT();
  31. stop();
  32.