Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×

This topic is 5302 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted

HI,

can we count the number of records using apple script of any other application like Address book,number of mail in apple mailer etc.

plz help me out.

Regards,

John

Posted

The answer to your existing question is yes. Please help us out by asking a clear and specific question with meaningful detail.

Posted

Here's a script to copy everybody's name into a FileMaker field.

Use field names and table names from your file of course.

try

set target_Cell to "zASResult"

set error_Cell to "zASError"

set target_table to "Array"

set applescript's text item delimiters to return

tell application "Address Book" to get name of every person

copy result as unicode text to cell target_cell of table target_table

on error errmsg number errnum

copy errnum to cell error_cell of table target_table

end try

This topic is 5302 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.