Script Steps Reference

Table Of Contents
154 FileMaker Script Steps Reference
Example
The following example, used as a startup script, prevents the user from opening the
database on a weekend.
Allow User Abort[Off]
If [DayName(Get (CurrentDate)) = "Saturday" or DayName(Get(
CurrentDate)) = "Sunday"]
Exit Application
End If