Re: Opening Filemaker Pro files
Re: Opening Filemaker Pro files
- Subject: Re: Opening Filemaker Pro files
- From: Yosemite <email@hidden>
- Date: Tue, 02 Jan 2001 07:21:13 -0900
tell application "FileMaker Pro"
activate
open file "name.fp5" with password "password"
end tell
-- hcir
mailto:email@hidden
>
It seems like such a simple thing to do: a script that opens a FMPro
>
database residing on a remote server via TCP/IP.
>
I have tried things like
>
>
tell application "FileMaker Pro"
>
open ["Database.fp3 (10.10.10.10)"] with password ""
>
end tell
>
>
and
>
>
tell application "FileMaker Pro"
>
open file "10.10.10.10:Database.fp3" with password ""
>
end tell
>
>
and loads of variations to this theme, but nothing works. What am I
>
doing wrong?