Hi

> Some benchtesting...
>
> Task:
>     Strip lines where a given condition is met.


Have you tried the following method (condition is "line empty")  :
on mouseUp
   set the cursor to watch
   put the long seconds into tStart
   put fld "Data" into tVar
   repeat while tVar contains (return & return)
        replace (return & return) with return in tVar
   end repeat
   put tVar into fld "output"
   put the long seconds - tStart into fld "timer1"
end mouseUp

jbv


_______________________________________________
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Reply via email to