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

  1. function playVideo()
  2. {
  3.    var _loc2_ = getRessourceByID("V_" + gModuleName + myVideo,"flv");
  4.    if(_loc2_ !== undefined)
  5.    {
  6.       videoBox.src = _loc2_.attributes.src;
  7.       videoBox.gotoAndStop(2);
  8.       gTypeRessource = "flv";
  9.       testControls();
  10.       _root.videoPlaying = 1;
  11.       videoBox._width = 452.5;
  12.       videoBox._height = 337.1;
  13.       videoBox._visible = 1;
  14.    }
  15. }
  16. function suiteVideo()
  17. {
  18.    videoBox._visible = 0;
  19.    _root.videoPlaying = 0;
  20.    if(gMusicOn)
  21.    {
  22.       soundObjects[gMusic].setVolume(gVolume);
  23.    }
  24.    if(getPos(listDone,0) == -1)
  25.    {
  26.       gotoAndStop("03_04");
  27.    }
  28.    else
  29.    {
  30.       gotoAndStop("QUESTIONS");
  31.    }
  32. }
  33. stop();
  34. if(gMusicOn)
  35. {
  36.    soundObjects[gMusic].setVolume(0);
  37. }
  38. gereTextes.afficheLM({codeLM:"LM_VIDEO"});
  39. gereTextes.masqueLM({codeLM:"LM_03_ITV_Q01"});
  40. gereTextes.masqueLM({codeLM:"LM_03_ITV_Q02"});
  41. gereTextes.masqueLM({codeLM:"LM_03_ITV_Q03"});
  42. gereTextes.masqueLM({codeLM:"LM_03_ITV_Q04"});
  43. gereTextes.masqueLM({codeLM:"LM_03_ITV_Q05"});
  44. COUPEVIDEO.useHandCursor = 0;
  45. COUPEVIDEO.onPress = function()
  46. {
  47.    suiteVideo();
  48. };
  49. trace("myVideo " + myVideo);
  50. playVideo();
  51.