Hello,
I have a mail contact form and after the user sends his or her feedback, a mail confirmation window will appear stating “thank you for your input, we will respond to you as soon as posible”.
after that… I would like the mail contact form to dissapear so that it could take the user to the previous window.
please help.
I have this on submit
on (release) {
if (!UserID.length) {
EmailStatus = "Please enter a valid Progress Energy Corporate ID";
}
else if (!ToComments.length) {
EmailStatus = "Please enter your message";
}
else {
loadVariablesNum ("MailPHP.php", "0", "Post");
gotoAndPlay(10);
}
}
and this on frame 10 with confirmation window.
stop();
my mail contact form is an mc so maybe trying to make mc dissapear after 10 seconds or something?.. please guide me.
thank you.