Tombstone0 Posted May 16, 2001 Posted May 16, 2001 Is it possible to specify a specific File Maker file or will applescript simply affect the current file. Instead of: tell application "FileMaker Pro" to do script "Send All Mail" could I do something like: tell application "FileMaker Pro" to do script "MemoLog.fp5:Send All Mail" Or something to that effect. Thanks
BobWeaver Posted May 16, 2001 Posted May 16, 2001 If the database is already open you can use the following: code: tell document "MemoLog.fp5" of app "FileMaker Pro" do script FileMaker script "Send All Mail" end tell If it's not already open, then: code: tell app "FileMaker Pro" open document "MemoLog.fp5" tell document "MemoLog.fp5" do script FileMaker script "Send All Mail" end tell end tell
Recommended Posts
This topic is 8590 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