Script Steps Reference

Table Of Contents
FILEMAKER SCRIPT STEPS REFERENCE 124
Examples
The following, used as a startup script with a password-protected database, presents the user with
the Change Password dialog box every other time the database is opened (to encourage the user to
change his or her password frequently). The gOpenCount field is a global number field that records
how many times the database has been opened.
Allow User Abort[Off]
Set Field [Table1::gOpenCount; Table1::gOpenCount + 1]
If [Int(Table1::gOpenCount/2)*2 < > Table1::gOpenCount]
Change Password []
End If
Related topics
Script steps reference (alphabetical list)
Contents
Enable Account
Purpose
Enables or disables a specific account.
Format
Enable Account [Account Name: <account name>; Activate/Deactivate]
Options
Click Specify to display the “Enable Account” Options dialog box, where you can set the following
options.
Account Name is the name of the account to be activated or deactivated. You can enter
literal text or click Specify to generate the account name from a calculation.
Activate account enables the specified account.
Deactivate account disables the specified account.
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
You must specify an existing account.
You must be assigned the Full Access privilege set to perform this script step. Select Run
script with full access privileges to enable users with less than full access privileges to
perform this script step.
You cannot use this script step to deactivate an account with full access privileges.