Re: birth date from Address Book
Re: birth date from Address Book
- Subject: Re: birth date from Address Book
- From: Paul Berkowitz <email@hidden>
- Date: Wed, 12 Mar 2003 13:07:09 -0800
On 3/12/03 10:41 AM, I wrote:
>
If the repeat loop is in a handler, then 'my' and 'a
>
reference to' won't work unless 'thePeople' is a global', but this will -
>
thanks to Serge Belleudy-Espinoise (or correction):
>
>
script peopleScript
>
property myPeople: thePeople
>
end script
>
>
repeat with i from 1 to (count thePeople)
>
set thePerson to item i of peopleScript's
>
thePeople
>
>
etc.
An error there. It should refer to the script object's variable. That should
read:
script peopleScript
property myPeople: thePeople
end script
repeat with i from 1 to (count thePeople)
set thePerson to item i of peopleScript's
myPeople
--
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.