All functions Mac OS X Windows Crossplatform Components New in version: 1.0 1.1 1.2 1.3 1.4 1.5 1.6 1.7 1.8 2.0
Component: FM
Mac OS X: Works
Windows: Works
MBS( "FM.VariableSet" ; Name; Value )
Parameter | Description | Example value |
---|---|---|
Name | the name of the variable | |
Value | the value to assign to the variable |
Stores a named text variable that can be retrieved later using FM.VariableGet. Unlike the variables that were introduced in FileMaker 8 these variables are not limited to the File or Script. In other words they can be retrieved from any file in the system regardless of where they were declared. All valuables are stored as text. You will need to convert them to the desired type when you want use them with comparison or math operators.
Set a variable
MBS( "FM.VariableSet" ; "myVar"; "Hello" )
Feedback: Report problem or ask question.