Re: Pulling Data from AppleScript
Re: Pulling Data from AppleScript
- Subject: Re: Pulling Data from AppleScript
- From: "email@hidden" <email@hidden>
- Date: Tue, 15 Dec 2015 17:53:29 -0500
- Thread-topic: Pulling Data from AppleScript
Title: Re: Pulling Data from AppleScript
What version of FileMaker are you using?
Did your AppleScript work in a previous setup?
What changed?
Tony White
http://www.twdesigns.com
http://FileMaker-Fanatics.com
On 12/15/15 2:37 PM, "Jon Rosen" <email@hidden> wrote:
It has been a little while since I’ve done serious scripting with FileMaker from AppleScript, but things don’t seem to be working properly under El Capitan.
The following code is a simple example of trying to read data:
tell application "FileMaker Pro Advanced"
tell database “ABCDE"
tell table “REQ__Requests__Request_Items"
— This next step works fine
set myCellR to get data cell "Request_Item_No" of record 2562
— This step gives me an “Invalid Object Reference” error
set myCell to get (cell "Col3" of every record whose cell "Request_Item_No" = "51387”)
— Even this fails
set myCell to get data cell "Col3" of current record
end tell
end tell
end tell
My ultimate goal is to write some data back to specific records, but I can’t even specify the record to read the data. Has there been some change in the syntax of specifying a record?
Thanks,
Jon
_______________________________________________
Do not post admin requests to the list. They will be ignored.
AppleScript-Users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
Archives: http://lists.apple.com/archives/applescript-users
This email sent to email@hidden
_______________________________________________
Do not post admin requests to the list. They will be ignored.
AppleScript-Users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
Archives: http://lists.apple.com/archives/applescript-users
This email sent to email@hidden