[flash MX forms & Javascript] -



flash MX forms & Javascript

Discuss flash MX forms & Javascript



Posted by: confusedideal

I'm working on building a basic information request form in Flash MX. Here's the coding I've got so far.


btn_submit.onRelease = function () {
getURL("mailto:thelonewolf67@yahoo.com?subject=Feedback" + "&body=" + first + last + company + addr1 + addr2 + city + state + zip + email + phone1 + phone2 + phone3 + comment);
};


This works fine, but it brings up an e-mail box with the information in said text fields in the body. Is there a way to just send the form, and if so, is there a way to format this information (i.e. add line returns for when I get the information in my e-mail). If at all possible, I'd like to stay out of CGI forms and php forms.



Posted by: confusedideal

sorry, nix the Javascript part, I used that earlier in a different page and got confused