Script Steps Reference

Table Of Contents
Editing script steps
F
ILEMAKER PRO SCRIPT STEPS REFERENCE 64
Example 2
Prompts the user to either cut or copy the contents of the Email field.
Show Custom Dialog ["Do you want to cut or copy the customer's email
address?"]
If [Get ( LastMessageChoice ) = 1]
Cut [Customers::Email]
Else If [Get ( LastMessageChoice ) = 2]
Copy [Customers::Email]
End If