home *** CD-ROM | disk | FTP | other *** search
/ Mobiclic 127 / MOBICLIC127.ISO / mac / DATA / DSS127 / DSS127_03 / DSS127_03.swf / scripts / frame_60 / DoAction.as
Text File  |  2010-09-13  |  1KB  |  71 lines

  1. function relanceInterval()
  2. {
  3.    clearInterval(intervalPlanet);
  4.    intervalPlanet = setInterval(this,"checkPlanet",3000);
  5. }
  6. function checkPlanet()
  7. {
  8.    clearInterval(intervalPlanet);
  9.    switch(planet)
  10.    {
  11.       case 1:
  12.          joueSon({nomSon:"01_02_E1",actionFin:"RIEN"});
  13.          break;
  14.       case 2:
  15.          zappPlanet();
  16.          ZONE_01_02.ANIM.play();
  17.          joueSon({nomSon:"01_02_S",actionFin:"suitePlanet"});
  18.          break;
  19.       case 3:
  20.          joueSon({nomSon:"01_02_E2",actionFin:"RIEN"});
  21.    }
  22. }
  23. function suitePlanet()
  24. {
  25.    gotoAndStop("CHOIX_ORBITE");
  26. }
  27. joueBruitage({nomSon:"B_FEN"});
  28. BT_X._visible = 0;
  29. gereTextes.afficheLM({codeLM:"LM_JEU_01"});
  30. gereTextes.afficheLM({codeLM:"LM_JEU_02"});
  31. gereTextes.afficheLM({codeLM:"LM_JEU_03"});
  32. LM_JEU_02._alpha = 0;
  33. LM_JEU_03._alpha = 0;
  34. planet = 1;
  35. ZONE_01_01.gotoAndStop("E1");
  36. ZONE_01_02.onRollOver = function()
  37. {
  38.    gereCursor(2);
  39. };
  40. ZONE_01_02.onRollOut = function()
  41. {
  42.    gereCursor(1);
  43. };
  44. ZONE_01_02.onPress = function()
  45. {
  46.    gereCursor(1);
  47.    _root.relanceInterval();
  48.    if(_root.planet < 3)
  49.    {
  50.       planet += 1;
  51.    }
  52.    else
  53.    {
  54.       planet = 1;
  55.    }
  56.    this.gotoAndStop("E" + planet);
  57. };
  58. zappPlanet = function()
  59. {
  60.    ZONE_01_02.onRollOver = function()
  61.    {
  62.    };
  63.    ZONE_01_02.onRollOut = function()
  64.    {
  65.    };
  66.    ZONE_01_02.onPress = function()
  67.    {
  68.    };
  69. };
  70. stop();
  71.