home *** CD-ROM | disk | FTP | other *** search
/ Mobiclic 174 / MOBICLIC174.ISO / pc / DATA / _COMMUN / chargement_barre / barre.swf / scripts / frame_1 / DoAction.as
Text File  |  2015-04-27  |  1KB  |  68 lines

  1. this.onLoading = function(percent)
  2. {
  3.    this.percent = percent;
  4.    if(percent >= 100)
  5.    {
  6.       if(_global.MODULE_INFO.preload_bar_button_quit == false)
  7.       {
  8.          _global.HOTE.quit();
  9.       }
  10.       else
  11.       {
  12.          quit._visible = true;
  13.          quit.gotoAndStop("E7");
  14.       }
  15.    }
  16.    else
  17.    {
  18.       this.play();
  19.    }
  20.    loadbar.gotoAndStop(Math.round(loadbar._totalframes * percent / 100));
  21. };
  22. if(_global.MODULE_INFO.preload_bar_button_quit == false)
  23. {
  24.    quit._visible = false;
  25. }
  26. else
  27. {
  28.    quit._visible = true;
  29. }
  30. loadbar.stop();
  31. quit.onPress = function()
  32. {
  33.    CURSEUR.Action("fleche");
  34.    if(percent >= 100)
  35.    {
  36.       _global.HOTE.quit();
  37.    }
  38. };
  39. quit.onRollOver = quit.onDragOver = function()
  40. {
  41.    CURSEUR.Action("doigt");
  42.    if(percent >= 100)
  43.    {
  44.       quit.gotoAndPlay("E3");
  45.    }
  46. };
  47. quit.onRollOut = quit.onDragOut = function()
  48. {
  49.    CURSEUR.Action("fleche");
  50.    if(percent >= 100)
  51.    {
  52.       quit.gotoAndPlay("E7");
  53.    }
  54. };
  55. this.Init = function()
  56. {
  57.    xtrace("Init" + this);
  58.    _global.HOTE.InitFin(this);
  59. };
  60. this.Reset = function()
  61. {
  62.    percent = 0;
  63.    this.onLoading(0);
  64.    quit.gotoAndPlay("E1");
  65.    loadbar.stop();
  66. };
  67. stop();
  68.