Newbies brandall Posted August 28, 2002 Newbies Posted August 28, 2002 Thanks in advance everyone...just scanned the board and couldn't find an answer explicitly relevant to this. Is it possible to create an Applescript that opens a database hosted on another computer (ie., file->open remote) over TCP/IP? I am not running FMServer, nor is the database password-protected. If I've left necessary info out, let me know and I can elaborate the setup further. Thanks again!
Fitch Posted August 28, 2002 Posted August 28, 2002 If you want to open a db hosted on another computer, just create a FileMaker file on your computer that contains an Open File(specify file) script, and set that script as the startup script. Use AppleScript to launch your "opener" file.
falkaholic Posted September 9, 2002 Posted September 9, 2002 I've read that you can use the OpenURL [ fmp5://host/file] to open a file over a network -- but I tried it in OS X 10.1 to no success.
mun Posted October 1, 2002 Posted October 1, 2002 Try using "getURL" instead of OpenURL. I've had success with this in my scripts.
ibiubu Posted November 25, 2002 Posted November 25, 2002 Here is a applescript that I use to open my database files. tell application "FileMaker Pro" activate open file "Macintosh HD:Applications:FileMaker Pro 5.5 Folder:Database Files:@hand.fp5" with password "1234" open file "Macintosh HD:Applications:FileMaker Pro 5.5 Folder:Database Files:Contacts.fp5" with password "1234" end tell I also have my host machine set up that whenever it starts, this script runs. This is nice incase the computer crashes and restarts, then my database files are automatically launched. LR
Recommended Posts
This topic is 8032 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now