Re: FMP 5.5 index too large error
Re: FMP 5.5 index too large error
- Subject: Re: FMP 5.5 index too large error
- From: Guy Algot <email@hidden>
- Date: Wed, 27 Jun 2001 14:10:42 -0600
The following worked for me. What do you have on the clipboard? In my test,
I used a single word.
set x to the clipboard
tell application "FileMaker Pro"
activate
open "Stuff:Documents:My FilemakerPro:snipets v1"
create record at end of database "snipets v1"
set cell "snipet" of last record of database "snipets v1" to x
end tell
On 06/26/2001 05:37 PM, email@hidden at email@hidden wrote:
>
When I run the script below I get an "index too large error" from
>
FileMaker Pro 5.5 OS X.
>
Any suggestions?
>
>
tell application "Finder"
>
set x to the clipboard
>
end tell
>
tell application "FileMaker Pro"
>
activate
>
open "Stuff:Documents:My FilemakerPro:snipets v1"
>
create record at end of database "snipets v1"
>
set cell "snipet" of last record of database "snipets v1" to my x
>
end tell