Re: Error: Stack overflow
Re: Error: Stack overflow
- Subject: Re: Error: Stack overflow
- From: Paul Berkowitz <email@hidden>
- Date: Tue, 29 Apr 2003 07:30:47 -0700
On 4/29/03 6:53 AM, "Paul Berkowitz" <email@hidden> wrote:
>
set fileRef to open for access alias "file:path"
>
try
>
set r to read fileRefon error
>
on error
>
set r to my ReadPartials(fileRef)
>
end try
Silly typo. That part of the script should read, of course:
set fileRef to open for access alias "file:path"
try
set r to read fileRef
on error
set r to my ReadPartials(fileRef)
end try
close access fileRef
The handler ReadPartials(fileRef) was OK.
--
Paul Berkowitz
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.