Script Steps Reference

Table Of Contents
Open Menu Item script steps
F
ILEMAKER SCRIPT STEPS REFERENCE 123
Examples
The following script displays a message box that asks if the user wants to open the Find/Replace
dialog box, and opens it if the response is Yes.
Show Custom Dialog ["Open the Find/Replace dialog box?"]
If [Get (LastMessageChoice) = 1]
#1=Yes, 2=No
Open Find/Replace
End If
Open Help
Purpose
Opens FileMaker Pro Help to the Help contents screen.
Format
Open Help
Options
None.
Compatibility
This script step is:
not supported in web publishing
not supported in a FileMaker Server scheduled script
not supported in runtime solutions
Description
This script step is the same as choosing Help menu > FileMaker Pro Help.
Examples
The following script displays a message box that asks if the user wants to see the onscreen Help,
and opens it if the response is Yes.
Show Custom Dialog ["Do you want to open onscreen Help?"]
If [Get (LastMessageChoice) = 1]
#1=Yes, 2=No
Open Help
End If