Re: Short, maybe even handy, Address Book script
Re: Short, maybe even handy, Address Book script
- Subject: Re: Short, maybe even handy, Address Book script
- From: Shane Stanley <email@hidden>
- Date: Thu, 26 Jun 2003 09:38:37 +1000
On 25/6/03 11:27 AM +1000, Paul Berkowitz, email@hidden, wrote:
>
On 6/24/03 10:37 AM, "Michelle Steiner" <email@hidden> wrote:
>
>
> tell application "Address Book"
>
> set M_List_Group to people of group "Mailing Lists"
>
> repeat with This_Person in M_List_Group
>
> set label of email 1 of This_Person to "List"
>
> end repeat
>
> end tell
>
>
>
> It would have been nice if, instead of the repeat loop, it would be
>
> possible to do this:
>
>
>
> set label of email 1 of every item of M_List_Group to "List"
>
>
'email 1' is an element, not a property. This sort of 'propertyA of
>
properytB of every elementC' only works for property chains.
What about:
tell application "TextEdit"
set size of word 1 of every paragraph of document 1 to 18
end tell
Seems pretty common stuff to me.
--
Shane Stanley, email@hidden
_______________________________________________
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.