Re: Newbie Script Error - Help?
Re: Newbie Script Error - Help?
- Subject: Re: Newbie Script Error - Help?
- From: Paul Berkowitz <email@hidden>
- Date: Fri, 18 Apr 2003 07:31:10 -0700
On 4/18/03 7:05 AM, "Robert Damm" <email@hidden> wrote:
>
I am starting to write a synchronisation applescript for address book to
>
entourage. This is the beginning of it...and it fails with
>
>
"Address book got error: Can't continue find_contact"
>
>
Help?
You usually get that error when you call a handler from within a tell block
or from within another handler and forget to include 'my'. You need to call:
my find_contact(first_name, last_name)
Similarly within that handler I see you call another one
create_contact(first_name, last_name)
You need to call
my create_contact(first_name, last_name)
or you'll get the same error there.
(BTW, I have already written a synchronisation applescript for address book
to entourage. It took me several months and I've been fixing bugs and
improving it still, It's called - would you guess - "Sync Entourage-Address
Book" and you can get it at
AppleScript Central <
http://www.applescriptcentral.com/>
Because it's shareware it's Run Only, I'm afraid. But just to let you know
what you have in store if you want to do it right, the set of interlinked
scripts there total about 250K worth of source code.)
--
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.