okay so i have a form in actionscript i can change some stuff but i dont know it all that well. Here is what the code is on the submit button
on (rollOver) {
gotoAndPlay(“s1”);
}
on (releaseOutside, rollOut) {
gotoAndPlay(“s2”);
}
on (release) {
for (i=1; i<_parent.fields_descriptions.length; i++) {
if (_parent[_parent.fields_descriptions*[1]] != _parent.fields_descriptions*[2]) {
this[_parent.fields_descriptions*[1]] = _parent[_parent.fields_descriptions*[1]]+"&777&"+_parent.fields_descriptions*[2];
}
_parent.reset_txt(_parent[“t”+i], _parent.fields_descriptions*[1], _parent.fields_descriptions*[2]);
}
this.recipient = _parent.rec;
getURL(“contact.”+_parent.serv, “_blank”, “POST”);
}
what i need it to do. is call to a php form that inserts an image one of those secure things and i also need it ot be mailed to an email address can someone help me?