Script Steps Reference

Table Of Contents
Miscellaneous script steps
F
ILEMAKER PRO 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 [With dialog: Off; 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 [With dialog: Off; Filter ( Customers::Work Phone ;
"1234567890+" )]
End If