Hello all,

I am running into a problem with a flash form that worked fine for Flash 6 but when run with Flash 8 the resulting form data comes across in email with additional text formatting information. Is there a way to strip out this formatting info? I'd appreciate any help. I'm a novice at this and haven't been able to come up with a solution. I am using Flash CS3.

Below is an example of what shows up in email when it should just say "test":
<P ALIGN=\"LEFT\"><FONT FACE=\"Verdana\" SIZE=\"12\" COLOR=\"#000000\"
LETTERSPACING=\"0\" KERNING=\"0\">test</FONT></P>

Here is the actionscript I'm using:
on (release) {
holder = new LoadVars();
holder.firstName = _parent.form.firstName;
holder.lastName = _parent.form.lastName;
holder.phone = _parent.form.phone;
holder.email = _parent.form.email;
holder.mymessage = _parent.form.mymessage;
holder.howHear = _parent.form.howHear;

_parent.form.firstName = "";//set all input fields to ""
_parent.form.lastName = "";//set all input fields to ""
_parent.form.phone = "";//set all input fields to ""
_parent.form.email = "";//set all input fields to ""
_parent.form.howHear = "";//set all input fields to ""

_parent.form.mymessage = "Your message has been sent. Thank you.";
holder.sendAndLoad("contact_form_submit.php",holde r,"POST");
holder.onLoad = function() {
};
}