Jump to content
Server Maintenance This Week. ×

Counting of Records


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

Recommended Posts

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

Link to comment
Share on other sites

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

Link to comment
Share on other sites

This topic is 5094 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.