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

  1. stop();
  2. gereTextes.masqueLM({mc:this,codeLM:"LM_VIDEO"});
  3. BT_X._visible = 1;
  4. gereTextes.afficheLM({mc:Q01,codeLM:"LM_02_ITV_Q01"});
  5. gereTextes.afficheLM({mc:Q02,codeLM:"LM_02_ITV_Q02"});
  6. gereTextes.afficheLM({mc:Q03,codeLM:"LM_02_ITV_Q03"});
  7. gereTextes.afficheLM({mc:Q04,codeLM:"LM_02_ITV_Q04"});
  8. if(listDone == undefined)
  9. {
  10.    listDone = [0,0,0,0];
  11. }
  12. itvRetour = "ITV";
  13. var i = 1;
  14. while(i <= 4)
  15. {
  16.    this["BANDEAU_" + gimme2digits(i)].pZone = i;
  17.    this["BANDEAU_" + gimme2digits(i)].pDone = 0;
  18.    this["BANDEAU_" + gimme2digits(i)].onRollOver = function()
  19.    {
  20.       gereCursor(2);
  21.       this.gotoAndStop("E2");
  22.       joueBruitage({nomSon:"B_QUESTION"});
  23.    };
  24.    this["BANDEAU_" + gimme2digits(i)].onRollOut = function()
  25.    {
  26.       gereCursor(1);
  27.       this.gotoAndStop("E1");
  28.       stopBruitage({nomSon:"B_QUESTION"});
  29.    };
  30.    this["BANDEAU_" + gimme2digits(i)].onPress = function()
  31.    {
  32.       _root.listDone[this.pZone - 1] = 1;
  33.       gereCursor(1);
  34.       this.gotoAndStop("E1");
  35.       stopBruitage({nomSon:"B_QUESTION"});
  36.       _root.reponseITV = this.pZone;
  37.       trace(_root.listDone);
  38.       if(getPos(_root.listDone,0) == -1)
  39.       {
  40.          listDone = [0,0,0,0];
  41.          _root.itvRetour = "ITV2";
  42.       }
  43.       _root.gotoAndPlay("ITV_R");
  44.    };
  45.    i++;
  46. }
  47.