May 14, 201015 yr 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
May 14, 201015 yr The answer to your existing question is yes. Please help us out by asking a clear and specific question with meaningful detail.
May 18, 201015 yr 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
Create an account or sign in to comment