ok… simple stuff here… just basic Flash mailer stuff… I am pretty much possitive all my code is correct, and I think the problem is that I have upgraded to MX and I am sending the vars using an old method… here is my submit button code:
on (release) {
if (senderName == "" or senderComments == "") {
gotoAndStop(2);
} else {
lineAdapt();
loadVariablesNum("comments.php", 0, "POST");
gotoAndStop(3);
}
}
Line adapt calls a function that changes flash’s carrier symbol ( \r ) to one used in PHP (
) …
I believe the problem is **loadVariablesNum(“comments.php”, 0, “POST”); ** … this worked in Flash 5, but do I have to change “loadVarsNum” for MX???
The email address is a string, mail("rwalsh@grafikdesigns.com", … also you might want to store the Message to a variable and then include the variable to the Message Parameter instead of write out a string everytime. Did’nt try it, am not using my computer right now. [SIZE=1]I don’t have PHP installed on this pc.[/SIZE]