August 21, 200322 yr I have an AppleScript that runs on a specified time using Script Timer. One part of the AppleScript is to run a FileMaker Script. The problem is when it reaches the point of running the FileMaker Script, it says the object (meaning the FileMaker Script) not found. I realized that it was because the FileMaker file wasn't the front most file. How do I tell applescript to bring a specific filemaker db to the front in order for my tell document "MasterList.fp5" of application "FileMaker Pro" do script "Compile and Send" end tell to work. Thanks... I realized that
August 21, 200322 yr Hi Macaroni, tell application "FileMaker" tell window "MasterList.fp5" to do script FileMaker script "Compile and Send" end tell Should work. regards, Ernst.
August 21, 200322 yr Or even shorter tell window "MasterList.fp5" of application "FileMaker" to do script FileMaker script "Compile and Send"
Create an account or sign in to comment