I am trying to make a simple contact form in flash 8 with a yes/no check box.
I can get everything else to work but the check box.
I don’t know if i am passing the data correctly in flash to then pass it on to the PHP form.
Here’s my AS:
on (release) {
Name = _root.form2.Name;
Email = _root.form2.Email;
myCheck = j;
var j;{
for(j in myCheck)
if (_root.yes == “true”) {
myCheck[j] = “yes”;
}
}
_root.loadVariables(“http://hathormusicradio.com/email2.php”, “POST”);
}
so, yeah. i am not sure if i am passing the correct variable to the myCheck, or if i even have it set up right.