Re: open file tFile for text ?

2014-08-19 Thread Mark Schonewille
Hi Thierry, I see no mistake here. Where do you see a problem exactly? -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering Homepage: http://economy-x-talk.com Twitter: http://twitter.com/xtalkprogrammer KvK: 50277553 Installer Maker for LiveCode:

Re: open file tFile for text ?

2014-08-19 Thread Thierry Douez
I see no mistake here. Where do you see a problem exactly? ( copy/paste few lines only) Here: mouseUp local tFile put specialFolderPath(desktop) /test.txt into tFile open file tFile for text write one 222 to file tFile -- Writes to the start of the file Thanks Mark, So

Re: open file tFile for text ?

2014-08-19 Thread Mark Schonewille
/paste few lines only) Here: mouseUp local tFile put specialFolderPath(desktop) /test.txt into tFile open file tFile for text write one 222 to file tFile -- Writes to the start of the file ___ use-livecode mailing list use-livecode

Re: open file tFile for text ?

2014-08-19 Thread Thierry Douez
(desktop) /test.txt into tFile open file tFile for text write one 222 to file tFile -- Writes to the start of the file ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage

Re: open file tFile for text ?

2014-08-19 Thread Mark Schonewille
that the example in the dictionary is wrong. It should be open file tFile for text write or open file tFile for binary write but it is sufficient to use open file tFile for write or open file tFile -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering Homepage: http

open file tFile for text ?

2014-08-18 Thread Thierry Douez
Hi, Dictionary - write to file There is a sample script which generates an error: So, what does mean: open file tFile for text ? Thierry ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe

Re: open file tFile for text ?

2014-08-18 Thread Mark Schonewille
20:49, Thierry Douez wrote: Hi, Dictionary - write to file There is a sample script which generates an error: So, what does mean: open file tFile for text ? Thierry ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit

Re: open file tFile for text ?

2014-08-18 Thread Thierry Douez
one of the parameters update, read, write or append, for example open file myFile for text write open file myFile for binary append Mark Schonewille Dictionary - write to file There is a sample script which generates an error: So, what does mean: open file tFile for text