All functions
Mac OS X
Windows
Crossplatform
Components
Guides
New in version:
1.0
1.1
1.2
1.3
1.4
1.5
1.6
1.7
1.8
2.0
2.1
2.2
2.3
2.4
2.5
2.6
FM.RunScriptLater
Component: FM
Version: 1.2
Mac OS X: Works
Windows: Works
MBS( "FM.RunScriptLater" ; DelaySeconds; FileName; ScriptName; ScriptParameter )
Parameters
| Parameter | Description | Example value |
|---|---|---|
| DelaySeconds | The Number of Seconds to wait before running the script | |
| FileName | The name of the file that contains the script to be run | |
| ScriptName | The exact name of the script to run | |
| ScriptParameter | The Script Parameter to pass to the script |
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.
Examples
Trigger a script later
Let(
[
/*-----------------PARAMETERS--------------------*/
DelaySeconds = 5;
FileName = Get ( FileName );
ScriptName = "Triggered Script Demo 2";
ScriptParameter = "Some Data"
];
/*-------------------FUNCTION----------------------*/
MBS(
"FM.RunScriptLater";
DelaySeconds;
FileName;
ScriptName;
ScriptParameter
)
)
Feedback: Report problem or ask question.
Links
MBS REAL studio tutorial videos - Christians Software aus Nickenich