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:
10.5
11.0
11.1
11.2
11.3
11.4
11.5
12.0
12.1
12.2
Statistic
FMM
Blog
JavaScript.CallFunction
Calls a global function given the name with FileMaker values.
Component | Version | macOS | Windows | Linux | Server | iOS SDK | License |
JavaScriptMac | 12.2 | ✅ Yes | ❌ No | ❌ No | ✅ Yes, on macOS | ✅ Yes | Paid |
MBS( "JavaScript.CallFunction"; JavaScriptContext; Name; Parameters... ) More
Parameters
Parameter | Description | Example |
---|---|---|
JavaScriptContext | The reference number of the javascript context. | $Context |
Name | The name of the function. | "test" |
Parameters... | Value to pass as parameter. |
Result
Returns value or error.
Description
Calls a global function given the name with FileMaker values.Parameters are passed to the function. Please pass as many parameters in FileMaker as needed.
Numbers are passed as number and other values are passed as text.
If the function needs more parameter, undefined values are used to fill up.
If the function needs less parameters, additional ones are dropped.
Returns the result of the function converted to FileMaker, e.g. as text or number value.
If you like to use JSON instead, please put in properties or pass JSON as string and let JavaScript decode it as part of the function.
This function takes variable number of parameters. Pass as much parameters as needed separated by the semicolon in FileMaker.
Please repeat Parameters parameter as often as you need.
Examples
Call a Test function and pass two numbers:
Show Custom Dialog [ MBS( "JavaScript.CallFunction"; $$Context; "Test"; 5.3; 3 ) ]
See also
Release notes
- Version 12.2
- Added JavaScript.CallFunction, JavaScript.GetPropertyJSON and JavaScript.SetPropertyJSON functions.
Example Databases
Blog Entries
Created 3th May 2022, last changed 5th May 2022
JavaScript.CF - JavaScript.CheckScriptSyntax
Feedback: Report problem or ask question.
