Script Steps Reference

Table Of Contents
FILEMAKER SCRIPT STEPS REFERENCE 21
Compatibility
This script step is also supported in web publishing and in a FileMaker Server scheduled script.
Originated in
FileMaker Pro 6.0 or earlier
Description
Every If script step must have a corresponding End If script step somewhere after it at the same
indentation. Whenever you use an If script step, the Manage Scripts feature automatically enters an
End If step.
Examples
If [Table1::State = "CA"]
Perform Script ["Compute CA Tax and Total"]
Else
Perform Script ["Compute Total"]
End If
Related topics
Script steps reference (alphabetical list)
Contents
Loop
Purpose
Repeats a set of script steps.
Format
Loop
Options
None.
Compatibility
This script step is also supported in web publishing and in a FileMaker Server scheduled script.
Originated in
FileMaker Pro 6.0 or earlier
Description
This script step and the End Loop script step mark the beginning and end of a repeating structure of
script steps. The Manage Scripts feature performs the script steps that are enclosed within the loop
structure until it encounters one of the following:
an Exit Loop If script step