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

  1. stop();
  2. gereTextes.masqueLM({codeLM:"LM_VIDEO"});
  3. gereTextes.afficheLM({codeLM:"LM_03_ITV_Q01"});
  4. gereTextes.afficheLM({codeLM:"LM_03_ITV_Q02"});
  5. gereTextes.afficheLM({codeLM:"LM_03_ITV_Q03"});
  6. gereTextes.afficheLM({codeLM:"LM_03_ITV_Q04"});
  7. gereTextes.afficheLM({codeLM:"LM_03_ITV_Q05"});
  8. var i = 1;
  9. while(i <= 5)
  10. {
  11.    this["BANDEAU_ITV_" + gimme2digits(i)].pZone = i;
  12.    this["BANDEAU_ITV_" + gimme2digits(i)].pDone = 0;
  13.    this["BANDEAU_ITV_" + gimme2digits(i)].onRollOver = function()
  14.    {
  15.       gereCursor(2);
  16.       this.gotoAndStop("E2");
  17.       joueBruitage({nomSon:"B_QUESTION"});
  18.    };
  19.    this["BANDEAU_ITV_" + gimme2digits(i)].onRollOut = function()
  20.    {
  21.       gereCursor(1);
  22.       this.gotoAndStop("E1");
  23.       stopBruitage({nomSon:"B_QUESTION"});
  24.    };
  25.    this["BANDEAU_ITV_" + gimme2digits(i)].onPress = function()
  26.    {
  27.       _root.listDone[this.pZone - 1] = 1;
  28.       gereCursor(1);
  29.       this.gotoAndStop("E1");
  30.       stopBruitage({nomSon:"B_QUESTION"});
  31.       _root.myVideo = "_VIDEO_03_" + gimme2digits(this.pZone);
  32.       _root.gotoAndPlay("REPONSE");
  33.    };
  34.    i++;
  35. }
  36.