Joshua61679
Technical User
I'm getting the strangest thing, and I haven't been able to find anything on it.
I've created a form in Flash MX. When I hit Its got some fields, and at the bottom a submit button. Here's the action script I'm using for the button.
The problem is that the e-mail that is sent only contains the properties of the button, and not anything from the form that I want. It's quite possible I'm doing something stupidly simple wrong. Any help would be much appreciated.
I've created a form in Flash MX. When I hit Its got some fields, and at the bottom a submit button. Here's the action script I'm using for the button.
Code:
on (press) {
set ("recipient", "jcoffee@superiorwells.com");
set ("redirect", "");
loadVariables ("[URL unfurl="true"]http://www.superiorwells.com/cgi-bin/formmail.pl",[/URL] "", "POST")
}
on (release) {
_root.content.loadMovie ("/Thankyou.swf")
}
The problem is that the e-mail that is sent only contains the properties of the button, and not anything from the form that I want. It's quite possible I'm doing something stupidly simple wrong. Any help would be much appreciated.