Script Steps Reference

Table Of Contents
Navigation script steps
F
ILEMAKER SCRIPT STEPS REFERENCE 44
Example 1
Performs a find, sorts the records, and goes to the first record.
Perform Find [Restore]
Sort Records [Restore; No dialog]
Go to Record/Request/Page [First]
Example 2
Goes to the record number the user enters in the custom dialog.
Show Custom Dialog ["Enter the record number you want to view.";
Invoices::Record Number]
Go to Record/Request/Page [Invoices::Record Number]
Show All Records
Example 3
Loops through records to export files that are in the Container field. Exits the loop if a record has an
empty container field.
Set Variable [$PATH; Value: Get ( DocumentsPath ) & Products::Container]
Go to Record/Request/Page [First]
Loop
Exit Loop If [IsEmpty ( Products::Container )]
Export Field Contents [Products::Container; "$PATH"]
Go to Record/Request/Page [Next; Exit after last]
End Loop