Re: FileMaker (Pro Advanced 8) bug?
Re: FileMaker (Pro Advanced 8) bug?
- Subject: Re: FileMaker (Pro Advanced 8) bug?
- From: David Crowe <email@hidden>
- Date: Mon, 23 Oct 2006 01:05:35 -0600
Bruce;
This works! Thank you so much.
Regards,
David Crowe
At 11:17 PM -0700 10/22/06, Bruce Robertson wrote:
> Matt;
The following code...
tell application "FileMaker Pro Advanced" to tell document "Test" to tell
table "Table1"
create new record
end tell
with a test database set up with two databases, two tables and two layouts,
each pair named "Table1" and "Table2" .. creates a record in
Table2, not Table
1.
It doesn't seem to matter what I do, unlike many other operations
"create new
record" only seems to work in the currently visible layout.
- David Crowe
The table reference needs to be in the create statement
tell application "FileMaker Pro Advanced" to tell document "Test"
create new record in table "Table1"
end tell
Or:
tell application "FileMaker Pro Advanced"
create new record in table "Table1" of database "Test"
end tell
_______________________________________________
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/mailman//archives/applescript-users
This email sent to email@hidden