home *** CD-ROM | disk | FTP | other *** search
/ Mobiclic 130 / MOBICLIC130.ISO / pc / DATA / GEN130 / GEN130_00 / A_GEN130_00 / INTERFACE_KAR.swf / scripts / frame_5 / DoAction.as
Text File  |  2010-12-13  |  571b  |  31 lines

  1. BT_OEIL.onRollOver = function()
  2. {
  3.    if(this.gOEILactif == 1 && this.gClicOn == undefined)
  4.    {
  5.       gereCursor(2);
  6.       this.gotoAndPlay("E2");
  7.    }
  8.    else
  9.    {
  10.       this.useHandCursor = 0;
  11.    }
  12. };
  13. BT_OEIL.onRollOut = function()
  14. {
  15.    if(this.gOEILactif == 1 && this.gClicOn == undefined)
  16.    {
  17.       gereCursor(1);
  18.       this.gotoAndPlay("E1");
  19.    }
  20. };
  21. BT_OEIL.onPress = function()
  22. {
  23.    if(this.gOEILactif == 1 && this.gClicOn == undefined)
  24.    {
  25.       this.gClicOn = 1;
  26.       this.gotoAndPlay("E3");
  27.       gereCursor(1);
  28.    }
  29. };
  30. stop();
  31.