Re: File Maker issue
Re: File Maker issue
- Subject: Re: File Maker issue
- From: Joe <email@hidden>
- Date: Fri, 26 Sep 2008 10:15:33 -0700
At 4:42 PM +0530 9/26/08, Ashwin Row wrote:
>The following script works some times and other times it says it cant find the cell.At all times the database Automator is open.So not having access to the database is not an issue.
>
>
>tell application "FileMaker Pro Advanced"
> activate
> tell database "Automator"
> tell record 1
> cell "Page Name"
> --set abc to "hi"
> set abc to cell "Page Name"
> display dialog abc
> end tell
> end tell
>end tell
Is it possible that 'cell "Page Name"' is sometimes not on your current layout?
I believe the above will fail if the field is not present on your current layout. Try instead using the table object.
tell application "FileMaker Pro Advanced"
tell table "Automator" of database "Automator"
set abc to cell "Page Name"
end tell
end tell
HTH
Joe
_______________________________________________
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