Re: Error -609 and Filemaker
Re: Error -609 and Filemaker
- Subject: Re: Error -609 and Filemaker
- From: Bruce Robertson <email@hidden>
- Date: Mon, 10 Mar 2008 15:25:00 -0800
> Hello,
>
> following the recent discussion I now have a second user complaining about
> this error on Leopard when moving data to Filemaker 9. They say that after a
> couple of 100 records the script simply stops with the error -609. I haven't
> seen this myself, only in a quite unrelated script which pulls data out of
> Powermail.
>
> What could cause this error?
>
> The simplified script is:
>
> property OriginatorFrom: "OriginatorFrom"
> property OriginatorSender: "OriginatorSender"
>
> with timeout of 10000 seconds
> tell application "FileMaker Pro"
> go to layout "all Fields Mail"
> set myNewRecord to (create new record with data {OriginatorFrom,
> OriginatorSender})
> end tell
> end timeout
>
> The script has been used in this form for over 2 years. It's constructed
> dynamically with Realbasic and uses data from another database. The database
> is opened and checked before this script is used.
>
>
>
>
>
>
> Mit freundlichen Grüßen/Regards
>
>
>
>
>
> Trixi Willius
I'd suggest adding the save command as noted below. In looping scripts I
have definitely found it helpful.
property OriginatorFrom: "OriginatorFrom"
property OriginatorSender: "OriginatorSender"
with timeout of 10000 seconds
tell application "FileMaker Pro"
go to layout "all Fields Mail"
set myNewRecord to (create new record with data {OriginatorFrom,
OriginatorSender})
save
end tell
end timeout
_______________________________________________
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