I have run into an interesting situation. I had noticed that the Merge
Contacts v2 script does not check the furigana fields in contacts for
merger, meaning data could be lost for Japanese contacts.
I therefore made a copy of the script, opened it, and duplicated the code
used to check first names to check the field first name furigana. When I try
to check the syntax, my system hard crashes. I have Entourage with
AppleScript 1.6. Anybody else seen this or can duplicate it? Entourage is
registered as a Japanese application, in case that makes any difference.
More specifically, I changed:
set field_name to "first name"
set a to first name of contact1
set b to first name of contact2
set c to my mergefields(a, b, field_name)
if c � a then set first name of contact1 to c
To:
set field_name to "first name"
set a to first name of contact1
set b to first name of contact2
set c to my mergefields(a, b, field_name)
if c � a then set first name of contact1 to c
set field_name to "first name furigana"
set a to first name furignana of contact1
set b to first name furigana of contact2
set c to my mergefields(a, b, field_name)
if c � a then set first name furigana of contact1 to c
--
Eric Hildum
--
To unsubscribe: <mailto:[EMAIL PROTECTED]>
To search the archives:
<http://www.mail-archive.com/entourage-talk%40lists.boingo.com/>