Topics
All
MacOS
(Only)
Windows
(Only)
Linux
(Only, Not)
iOS
(Only, Not)
Components
Crossplatform Mac & Win
Server
Client
Old
Deprecated
Guides
Examples
Videos
New in version:
9.3
9.4
9.5
10.0
10.1
10.2
10.3
10.4
10.5
10.6
Statistic
FMM
Blog
JS.AddFileMakerRunScriptFunction
Adds a function to start scripts from JavaScript.
| Component | Version | macOS | Windows | Linux | Server | FileMaker iOS SDK |
| JavaScript | 10.0 | Yes | Yes | Yes | Yes | Yes |
Parameters
| Parameter | Description | Example |
|---|---|---|
| JSRef | The JavaScript reference number. | $js |
| Name | The name of the function. | "test" |
Result
Returns OK or error.
Description
Adds a function to start scripts from JavaScript.Scripts are queued and run later when JavaScript finished.
The function in JavaScript returns the error code from FileMaker, which is zero for success.
For increased security we prefer all FileMaker developers define their own function name, so if you get some foreign JavaScript, it can't know the function name and mess with FileMaker. Be aware that this function may launch any script in the solution, even those not shown in the menu.
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.
Examples
Run a script from JavaScript:
Set Variable [ $js ; Value: MBS( "JS.New" ) ]
Set Variable [ $r ; Value: MBS( "JS.AddFileMakerRunScriptFunction"; $js; "FMRun") ]
Show Custom Dialog [ "Result" ; MBS( "JS.Evaluate"; $JS; " \"start script: \" + FMRun(\"JavaScript.fmp12\", \"testRun\", \"Hello World\")" ) ]
Set Variable [ $r ; Value: MBS( "JS.Release"; $JS ) ]
See also
Example Databases
Blog Entries
Created 7th December 2019, last changed 29th October 2020
JS.AddFileMakerEvaluateFunction - JS.AddFileMakerSQLFunction
Feedback: Report problem or ask question.
Links
MBS Xojo Chart Plugins