johnwiliams Posted May 14, 2010 Posted May 14, 2010 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
bruceR Posted May 14, 2010 Posted May 14, 2010 The answer to your existing question is yes. Please help us out by asking a clear and specific question with meaningful detail.
johnwiliams Posted May 17, 2010 Author Posted May 17, 2010 i want to count the number of records in address book using apple script.
bruceR Posted May 18, 2010 Posted May 18, 2010 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
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now