Re: AS 1.5 (OS X PB) bug fixed in 1.5.5?
Re: AS 1.5 (OS X PB) bug fixed in 1.5.5?
- Subject: Re: AS 1.5 (OS X PB) bug fixed in 1.5.5?
- From: Richard 23 <email@hidden>
- Date: Mon, 29 Jan 2001 12:06:40 -0800
>
The version of AS that comes with the OS X PB does not seem to handle file
>
position markers correctly. If you write to a file "starting at eof", the
>
last character previously in the file is overwritten.
Hasn't this always been the case? EOF is the end of the file, ie, the
last
character in the file. If you write at the EOF then you're overwriting
the
last character. I haven't been using:
write theText to fileRef starting at ((get eof fileRef) + 1)
for nothing!
R23