May 7, 201015 yr I am able to push data from FMP to Address Book via AppleScript: tell application "FMPA 11" tell current record set theFirstName to cellValue of cell "name_first" set theLastName to cellValue of cell "name_last" set theOrg to cellValue of cell "company" end tell end tell tell application "Address Book" etc. But what happens if the Company is not in the current record, but is a Parent Record (e.g. one company has many people). Is it possible to set a variable to a Parent Record? tell application "FMPA 11" tell current record set theFirstName to cellValue of cell "name_first" set theLastName to cellValue of cell "name_last" set theOrg to cellValue of cell "Company::company" end tell end tell tell application "Address Book" etc. Note: set theOrg to cellValue of cell "Company::company" does not work; I'm using it for illustration purposes. Does anyone know what will work, that is, how I can grab the Parent record? Thanks.
May 10, 201015 yr Author Thanks, Bruce. There was another problem. It is working fine now. Thanks for your reply.
Create an account or sign in to comment