home *** CD-ROM | disk | FTP | other *** search
/ Mobiclic 127 / MOBICLIC127.ISO / mac / DATA / DSS127 / DSS127_02 / DSS127_02.swf / scripts / frame_40 / DoAction.as
Text File  |  2010-09-13  |  762b  |  38 lines

  1. function startPause()
  2. {
  3.    _root.intervalPause = setInterval(_root,"suitePause",2000);
  4. }
  5. function suitePause()
  6. {
  7.    clearInterval(intervalPause);
  8.    gotoAndStop("00_03");
  9. }
  10. stop();
  11. var nom_du_son = "00_02";
  12. joueSon({nomSon:nom_du_son,actionFin:"RIEN"});
  13. doneSonnette = undefined;
  14. ZONE_INT_01.onRollOver = function()
  15. {
  16.    if(doneSonnette == undefined)
  17.    {
  18.       gereCursor(2);
  19.       this.gotoAndStop("E2");
  20.    }
  21. };
  22. ZONE_INT_01.onRollOut = function()
  23. {
  24.    gereCursor(1);
  25.    this.gotoAndStop("E1");
  26. };
  27. ZONE_INT_01.onPress = function()
  28. {
  29.    if(doneSonnette == undefined)
  30.    {
  31.       doneSonnette = 1;
  32.       gereCursor(1);
  33.       this.gotoAndStop("E1");
  34.       joueBruitage({nomSon:"B_SONNETTE"});
  35.       _root.startPause();
  36.    }
  37. };
  38.