Components All New MacOS Windows Linux iOS
Examples Mac & Win Server Client Guides Statistic FMM Blog Deprecated Old

FM.RunScript

Runs a script in any open FileMaker file.

Component Version macOS Windows Linux Server iOS SDK
FM 1.2 ✅ Yes ✅ Yes ✅ Yes ❌ No ✅ Yes
MBS( "FM.RunScript"; FileName; ScriptName { ; ScriptParameter; ScriptControl } )   More

Parameters

Parameter Description Example Flags
FileName The name of the FileMaker File that contains the script
ScriptName The name of the script to run.
Or the ID of the script in the current file.
ScriptParameter The Parameter to Pass to the script. Optional
ScriptControl Available in MBS FileMaker Plugin 9.3 or newer.
The script control mode.
Can be Pause, Halt, Exit or Resume.
Default is Pause.
"pause" Optional

Description

Runs a script in any open FileMaker file.
You can also pass a text string to the Script as a Parameter. The parameter can be retrieved by using Get(ScriptParameter) in the script that plug-in is calling. The basic concept behind triggering scripts with a plug-in is as follows. In order for the Plug-in to call a script it must be part of a calculation that is evaluated. For example to cause a script to run when a field is exited, you place the MBS function call in the auto-enter calculation of the field you want to serve as the trigger. When the field is exited the Auto-enter calculation is evaluated and the MBS function is fired off.. Placing the function call in the Field Validation calculation of the trigger field will cause the script to run on Record Exit. NOT on field Exit. This is because Validations by calculation happen at when the record is exited. Anywhere you have access to the calculation dialog you can place a Script trigger function. When the calculation is evaluated the script will run. This includes the new conditional formatting calculations that can be placed on many layout objects. While this opens up new opportunities, you might find that your script is being called continuously.

see also FM.RunScriptIdle, FM.RunScriptLater and Schedule functions.


With plugin version 6.0 or newer the script name can be a script ID number. In that case the plugin queries the script name for the given script ID. This allows to call scripts by ID and avoid problems if scripts are later renamed.

Notice: FileMaker 19.2 adds a fmplugin extended privileges. If you have such an extended privileges to allow the plugin to trigger scripts, you need to grant permissions for it. If such a privilege is not defined, the plugin is allowed to trigger scripts. See FileMaker product documentation for details.

Examples

Trigger a script

Let(
[
trigger = MBS("FM.RunScript"; Get(FileName); "Triggered Script"; "")
];
1
)

Trigger script by ID:

MBS( "FM.RunScript"; "test.fmp12"; "12" /* PrintRecords */; "Hello World")

See also

Release notes

Example Databases

Blog Entries

This function checks for a license.

Created 18th August 2014, last changed 17th April 2023


FM.RunSaveAsXML - FM.RunScriptIdle