hi,
i have this contact form in flash with various sections in it to fill.
after filling all the sections i have a Send button with this action script on it:
***on (release) {
if (nom eq "" or prenom eq "" or adresse eq "" or codepostal eq "" or ville eq "" or telephone eq "" or email eq "" or message eq "") {
stop();
} else {
loadVariablesNum("form.php", 0, "POST");
gotoAndStop(2);
}
}
the problem is that the condition if is not working and its directly going to the gotoAndStop(2) !
is there anything wrong in my code ?