Script Steps Reference

Table Of Contents
28 FileMaker Script Steps Reference
By using the Get (LastError) function with the control script steps, you can make sure your
script performs correctly. When you decide to suppress alerts, it is important that you
anticipate as many problems as possible, and that you include clear directions for what to
do when an error condition is encountered.
Note Use Get (LastError) immediately after the script step you intend to test; a successful
intervening step may clear the error code you were intending to capture.
Example
Set Error Capture [On]
Perform Find [Restore]
Set Field [Table1::gErrorCaptureField; Get (LastError)]
#The field Table1::gErrorCaptureField is a global text field
If[Table1::gErrorCaptureField <> 0]
Show Custom Dialog ["Couldn't find the record..."]
End If
Set Variable
Format
Set Variable [<variable name> {[<repetition number>]};
Value:<value or formula>]
Options
Click Specify to set the variable options:
Name is the name of the variable you want to create. Prefix the name with $ for a
local variable or $$ for a global variable. If no prefix is added, $ is automatically added
to the beginning of the name.
Value is the value the variable is set to. You can enter text or specify a calculation.
Repetition is the repetition (index) number of the variable you want to create. If no
repetition is specified, the default is 1.
Web compatibility
This script step is web-compatible.
Description
Sets a local or global variable to a specified value. If a variable doesn’t exist, this script
step will create one. A variable name has the same naming restrictions as a field name.
For more information, see FileMaker Pro Help.
Local and global variables can be created and used in calculations.
A local variable can only be used in script steps in the currently executing script. The
value in a local variable is cleared when the script exits.