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

  1. stop();
  2. BT_X._visible = 1;
  3. gereTextes.afficheLM({mc:Q05,codeLM:"LM_02_ITV_Q05"});
  4. gereTextes.afficheLM({mc:Q06,codeLM:"LM_02_ITV_Q06"});
  5. gereTextes.afficheLM({mc:Q07,codeLM:"LM_02_ITV_Q07"});
  6. gereTextes.afficheLM({mc:Q08,codeLM:"LM_02_ITV_Q08"});
  7. itvRetour = "ITV2";
  8. var i = 5;
  9. while(i <= 8)
  10. {
  11.    this["BANDEAU_" + gimme2digits(i)].pZone = i;
  12.    this["BANDEAU_" + gimme2digits(i)].pDone = 0;
  13.    this["BANDEAU_" + gimme2digits(i)].onRollOver = function()
  14.    {
  15.       gereCursor(2);
  16.       this.gotoAndStop("E2");
  17.       joueBruitage({nomSon:"B_QUESTION"});
  18.    };
  19.    this["BANDEAU_" + gimme2digits(i)].onRollOut = function()
  20.    {
  21.       gereCursor(1);
  22.       this.gotoAndStop("E1");
  23.       stopBruitage({nomSon:"B_QUESTION"});
  24.    };
  25.    this["BANDEAU_" + gimme2digits(i)].onPress = function()
  26.    {
  27.       _root.listDone[this.pZone - 5] = 1;
  28.       gereCursor(1);
  29.       this.gotoAndStop("E1");
  30.       stopBruitage({nomSon:"B_QUESTION"});
  31.       _root.reponseITV = this.pZone;
  32.       trace(_root.listDone);
  33.       if(getPos(_root.listDone,0) == -1)
  34.       {
  35.          listDone = [0,0,0,0];
  36.          _root.itvRetour = "02_09";
  37.       }
  38.       _root.gotoAndPlay("ITV_R");
  39.    };
  40.    i++;
  41. }
  42.