What AS is added to the send button?

I have managed to create a feed back form but do not know what Action Script is needed to apply to the SEND button so that the feedback form can be sent to an email address??

Can anyone help me please?

Thanks.

Depends on a few things but this should get you started.

 
on (release) {
 loadVariables("email.php", "POST");
}

Now this script is sending info to a php file named ‘email.php’, you should replace this with the name of your php file (or whatever you’re using).