Script Steps Reference

Table Of Contents
Miscellaneous script steps
F
ILEMAKER SCRIPT STEPS REFERENCE 249
Example 2
Dials the phone number contained in the Work Phone field in the current record.
Go to Layout ["Customer Details"]
If [not IsEmpty ( Customers::Work Phone )]
Dial Phone [No dialog; Customers::Work Phone]
End If
Example 3
Filters the contents of the Work Phone field for appropriate characters and dials the filtered number.
Go to Layout ["Customer Details"]
If [not IsEmpty ( Customers::Work Phone )]
Dial Phone [No Dialog; Filter ( Customers::Work Phone ; "1234567890+"
)]
End If