hello ...
i am trying to let work a cgiform in flash mx (allready I have a htmlversion that works perfectly fine) but in flash mx i get an error page instead.
problem is I think: the hidden fields ...
the hiden fields that I have to include are "to" and "next"
==============>
first: input field to ="
someemail@mailserver.com" AND
second: input field next="myserver.com.ok_messagesend.htm"
<================
here you can see the function I would like to call when hitting the send button-this function however includes the form elements that are not hidden; how do I include the hidden formelements:
_global.sendForm = function(formObj){
lv = new LoadVars();
lv.name = formObj.name.text;
lv.email = formObj.email.text;
lv.hobbies = formObj.hobbies.getValue();
lv.age = formObj.ageRange.getValue();
lv.gender = formObj.gender.getValue();
lv.mailingList = formObj.mailingList.getValue();
lv.send("
http://users.skynet.be/cgi-bin/form.cgi","","POST");
so how does the function will work properly