I have a contact form that people should be able to fill out and send my client an email. However, after editing some of the site, the buttons that used to work no longer do. I’m not sure the problem. I can send the file if you would like.
the clear button script:
on (rollOver) {this.gotoAndPlay(2)}
on (rollOut) {this.gotoAndPlay(9)}
on (release) {
_parent.a1.text=’’
_parent.a2.text=’’
_parent.a3.text=’’
_parent.a4.text=’’
_parent.a5.text=’’
}
the submit button script:
on (rollOver) {this.gotoAndPlay(2);}
on (rollOut) {this.gotoAndPlay(9);}
on (release) {
if (a1 eq “” or a3 eq “” or a5 eq “”) {
stop();
} else {
loadVariablesNum(“form.php”, 0, “POST”);
gotoAndStop(2);
}
}
Many thanks!