Re: batch import to FMP (Malcolm Fitzgerald)
Re: batch import to FMP (Malcolm Fitzgerald)
- Subject: Re: batch import to FMP (Malcolm Fitzgerald)
- From: David Crowe <email@hidden>
- Date: Tue, 2 Apr 2002 10:06:05 -0700
To synchronize an AppleScript with FileMaker Pro I use the following routine:
on WaitUntilReady()
with timeout of 5 seconds
repeat
try
tell application "FileMaker Pro" to get version
return
on error number errnum
end try
end repeat
end timeout
end WaitUntilReady
I presume that FileMaker won't return its version number until the
script is complete.
It can be called from the main part of your applescript as:
WaitUntilReady()
- David Crowe
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.