I want to display a progress bar when I do some work...

Do I have to use the SetIntervel in order to see the user the progress?

Is there any other way?

In the following example the user does not see anything (ither than the
alerts)

  DynAPI.include('dynacore.api.*')
  DynAPI.include('dynaetc.ri.status')
  var Load;
  DynAPI.onLoad=function() {
    Load = new riStatus(200,100,250,19,'gray','darkblue',60,'of test
completed')
    DynAPI.document.addChild(Load);
  }
  
  function RunIT() {
    alert('start');
    for (i = 0; i < 65; i++) Load.increaseTo(i);
    alert('end');
  }
  </script>
<


_______________________________________________
Dynapi-Help mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/dynapi-help

Reply via email to