Re: FMP record number
Re: FMP record number
- Subject: Re: FMP record number
- From: Cornwall <email@hidden>
- Date: Sun, 15 Jul 2001 12:30:20 -0700
At 7:14 PM +0100 7/15/01, Nicholas E. Baker wrote:
>
hello everyone,
>
in filemaker how do you get the Status(CurrentRecordNumber) with appleScript ?
I would ask for the record ID, and use it instead:
tell app "FileMaker Pro" to ID of current record
Or if you must get "Status(CurrentRecordNumber)," have a FileMaker
script obtain "Status(CurrentRecordNumber)" and then set a global
field to it. Later, your AppleScript can obtain and use it.
tell app "FileMaker Pro" to set curRecNum to cell "gStoreStuffHere" of current record
(That should be all one line in case it wraps in the mail)
HTH
Corny