Hi,
I'm struggling with what is probably a simple script. I have moved my database from FM6 to FM7, and the script that I use to use to launch it al login looked like this:
tell application "FileMaker Pro" open file "Instrument Signout" of machine "10.2.1.56" with passwords "oboe" end tell
Now, with FM7, I needed to add an account name, so I set that up in the database. The username is set to be authenticated via FileMaler, and not an external server. I tried to modify the script like so, but without any success.
tell application "FileMaker Pro" open file "Instrument Signout" of machine "10.2.1.56" with username/passwords "signout:oboe" end tell
The error that I get when I try to compile it is
I looked in the dictionary for FM7 and I found this:
"[<][URL:]FMP7://[[username[:password]@]host]/filename[>]"
which I tried to modify unsuccessfully like so:
"[<][URL:]FMP7://[[signout[:oboe]@]10.2.1.56]/Instrument Signout[>]"
If someone has a minute, could I get some guidance as to where I'm going astray.
Thank you,
Paul |