Re: Applescript LetterRip Server
Re: Applescript LetterRip Server
- Subject: Re: Applescript LetterRip Server
- From: Michelle Steiner <email@hidden>
- Date: Mon, 19 May 2003 13:23:26 -0700
On Monday, May 19, 2003, at 12:34 PM, Jeff Grossman wrote:
Thanks for the help Paul. It is getting much better. Now, the script
runs
for a while, creates a file, puts some data in it, but eventually
comes back
with a "Stack Overflow". Any ideas?
Change this:
repeat with theSub in subs
set theName to name of theSub
set theAddress to email address of theSub
my WriteFile(FishadsAddressFile, theName, theAddress)
end repeat
to this:
repeat with loop from 1 to count (subs)
set theName to name of (item loop of subs)
set theAddress to (email address of item loop of subs)
my WriteFile (FishadsAddressFile, theName, theAddress)
end repeat
--
If you don't hit any bumps in the road, you're not moving.
_______________________________________________
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.