Re: FM Pro "Status(CurrentFieldName)"
Re: FM Pro "Status(CurrentFieldName)"
- Subject: Re: FM Pro "Status(CurrentFieldName)"
- From: ehsan saffari <email@hidden>
- Date: Wed, 07 Nov 2001 03:23:58 -0600
On Wed, 07 Nov 2001 01:20:46 -0500, Joe Postscript
<email@hidden>
wrote:
>
I have been hitting around on how to correctly use Status(CurrentFieldName)
>
in FileMaker to query the DB from a script. All I am trying to do is get
>
the name of the current field with an active cursor. Can someone help me
>
out, nothing I have tried is working. I just need a brief example because
>
I'm running out of coffee....
The calc field defined as SCFN must be an UNstored calc (look in storage
options) otherwise it won't return the current field's name.
tell application "FileMaker Pro"
create new coffee at pot with data Java with properties ,
{brew: strong, sugar: a pinch, cream: a drop}
set x to cell "SCFN"
end tell
return {Coffee, x}
cheers
ehsan