So we have created our text fields and given them names, what about our buttonsFirst of all lets look at our clear button.
All I have done is create a simple button, and given it the following actions.
on (release) { name = ""; subject=""; message=""; email=""; }
Let's go through the code on (release)Perform these actions when this button is clicked then releasedname = "";subject="";message="";email="";The fields with the variable name above will have this value (empty) Ok lets have a look at the send button