I am using Flash 8 for my Flash site. I am building a simple feedback form. I set up my CGI using Lunarpages' recommended script from this site:
http://nms-cgi.sourceforge.net, but I don't know where to find the specific variables AC2 script calls for from the CGI perl code in order to link the content of the form with my email.
The follow is my form-related AC2 script. The fields in red are the variables I don't know about. What I have here is just a example.
var gatherForm: LoadVars = new LoadVars();
function sendForm() {
gatherForm.
email_to = "
connie@innerchimpcreatives.com""
gatherForm.param.Name = contactForm.Name.text;
gatherForm.param.Comment = contactForm.ProDes.text;
gatherForm.send(
cgiUrl, "_blank", "
method");
}
sendForm();
Also, I have custom-made success and error page embedded on my Flash timeline that I want to use. But I notice the CGI scripts also coded the general html success and error pages for the form. How do I bypass those?
Thanks.