<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  </head>
  <body text="#000000" bgcolor="#FFFFFF">
    >Added progress bar support for ForEachInteger
    <br>
    Thanks for working on this!<br>
    It now works on upwards loops, but not on downwards loops:<br>
    <br>
    function DoCallback(i)<br>
    i=i*100*100*100/100/100<br>
    end<br>
    local it=finale.FCLuaIterator()<br>
    it.UseProgressBar=true<br>
    it.AbortableProgressBar=false<br>
    it.ProgressUpdateFrequency=1<br>
    it:ForEachInteger(10000,1,DoCallback) --downwards loop doesn't show
    the progress bar<br>
    --it:ForEachInteger(1,10000,DoCallback) --upwards loop shows the
    progress bar<br>
    <br>
    Jan<br>
    <br>
    <br>
  </body>
</html>