Script Steps Reference

Table Of Contents
Navigation script steps
F
ILEMAKER PRO SCRIPT STEPS REFERENCE 41
Define an unstored calculation field with the function Get(LayoutNumber) function and place
it on your layouts to verify the layout numbers of your layouts.
When a file has two or more tables, FileMaker Pro appends the name of the source table to
the layout name for clarity. For example,
Go to Layout [“Layout #2” (TableB)].
Example 1
Opens a new window and goes to the Summary field on the Invoice Details layout.
New Window [Style: Document]
Go to Layout ["Invoice Details"]
Go to Field [Invoices::Summary]
Example 2
Checks which device is running the database and goes to the appropriate layout.
If [PatternCount ( Get ( ApplicationVersion ); "iPad" )]
Go to Layout ["Customers iPad"]
Else If [PatternCount ( Get ( ApplicationVersion ); "Pro" )]
Go to Layout ["Customers"]
Else
Go to Layout ["Customers iPhone"]
End If
Sort Records [Restore; No dialog]