Jump to content
Server Maintenance This Week. ×

Specifying a fm file.


This topic is 8380 days old. Please don't post here. Open a new topic instead.

Recommended Posts

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

Link to comment
Share on other sites

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


Link to comment
Share on other sites

This topic is 8380 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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.