Script Steps Reference

Table Of Contents
Accounts script steps
F
ILEMAKER PRO SCRIPT STEPS REFERENCE 208
Notes
Users must have password change privileges to use this script step to change their
passwords. To enable users who do not have password change privileges to run this script
step, select Run script with full access privileges.
Unless the Set Error Capture script step has enabled error capture, users get five attempts
to change their password.
If Set Error Capture is on, users get a single attempt to enter their old and new password.
Example 1
Opens the Change Password dialog box every ten times the database is opened to encourage the
user to change his or her password frequently. Started by the OnFirstWindowOpen script trigger.
Set Field [Accounts::Open Count; Accounts::Open Count + 1]
If [Accounts::Open Count = 10]
Set Field [Accounts::Open Count; 0]
Change Password [ ]
End If