Re: Solved: Script's Stack Overflowed???
Re: Solved: Script's Stack Overflowed???
- Subject: Re: Solved: Script's Stack Overflowed???
- From: Paul Berkowitz <email@hidden>
- Date: Tue, 13 Mar 2001 09:18:34 -0800
On 3/13/01 7:14 AM, "Bourque, Jason" <email@hidden> wrote:
>
I found that long concatenated strings are subject to the error.
Yes. If you need to get everything into a string at the end, just set
AppleScript's text item delimiters to {" "} or {return} or {", "} and set
the list to itself as string. If you're adding the items one by one,
set end if theList to newItem
in a repeat loop and then at the end, use the 'as string' method to convert
the list to a string. Don't concatenate the list either, in other words,
just set the end of it to the new item, or you'll get the same problem there
too.
--
Paul Berkowitz