On 9/17/17 7:16 PM, J. Landman Gay via use-livecode wrote:
You're right of course, I had a thinko.

It should have been this, btw:

on parseFile
  put "/path/to/file" into tFile
  put cr & "mstart" into tDelim
  open file tFile for read
  repeat
    read from file tFile until tDelim
    if it = "" then exit repeat
    -- process the text here
  end repeat
  close file tFile
end parseFile

--
Jacqueline Landman Gay         |     jac...@hyperactivesw.com
HyperActive Software           |     http://www.hyperactivesw.com

_______________________________________________
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