home *** CD-ROM | disk | FTP | other *** search
/ Mobiclic 168 / MOBICLIC168.ISO / mac / DATA / GAM168 / GAM168_00 / GAM168_00.swf / scripts / frame_87 / DoAction.as
Text File  |  2014-10-17  |  523b  |  24 lines

  1. var myMc = this.BT_REJOUER;
  2. myMc.onRollOver = function()
  3. {
  4.    gereCursor(2);
  5.    this.gotoAndPlay("E2");
  6.    joueBruitage({nomSon:"B_REJOUE"});
  7.    gereTextes.afficheIB({codeIB:"IB_REJOUE",X:300,Y:365});
  8. };
  9. myMc.onRollOut = function()
  10. {
  11.    gereCursor(1);
  12.    this.gotoAndPlay("E1");
  13.    stopBruitage({nomSon:"B_REJOUE"});
  14.    gereTextes.masqueIB();
  15. };
  16. myMc.onPress = function()
  17. {
  18.    stopBruitage({nomSon:"B_REJOUE"});
  19.    gereCursor(1);
  20.    gereTextes.masqueIB();
  21.    _root.gotoAndPlay("ATTENTE");
  22. };
  23. stop();
  24.