I have a flash 5 form with the submit button like so:
i was wondering how i might beable to send the form values to a predetermined email address from the swf instead of using the server asp components. How might this be done
Code:
on (release) {
if (!company.length) {
tellTarget ("co") {
gotoAndPlay("show3");
}
} else if (!name.length) {
tellTarget ("n") {
gotoAndPlay("show4");
}
} else if (!phone.length) {
tellTarget ("p") {
gotoAndPlay(1);
}
} else if (!comments.length) {
tellTarget ("m") {
gotoAndPlay("show5");
}
} else {
loadVariablesNum("page.asp", 0, "GET");
gotoAndPlay("thank");
}
}
i was wondering how i might beable to send the form values to a predetermined email address from the swf instead of using the server asp components. How might this be done