Hi All,

I am having trouble with the feedback's page of my web site. When I click the Submit Button, the form info is suppose to be sent to my email address. Below is the Action Script 2.0 coding I have written. Could someone please let me know if I wrote something incorrect?

stop();

//sets a default component to react to the enter key on the keyboard
focusManager.defaultPushButton=bSend;

//sends the Information out of Flash
bSend.onRelease = function() {
var targetLoadVars:LoadVars = new LoadVars();
var myLoadVars:LoadVars = new LoadVars();
myLoadVars.EasyNavYes = rbYes.selectedItem;
myLoadVars.EasyNavNo = rbNo.selectedItem;
myLoadVars.RateSite = nsRate.value;
myLoadVars.Improvements = taImprove.text;
myLoadVars.emailTo =tiEmailTo.text;
myLoadVars.sendAndLoad ("http://www.flash-mx.com/ws/submit_feedback.cfm", targetLoadVars, "POST");
targetLoadVars.onLoad = function() {
trace(this.success);
};
gotoAndStop("Thank You");
};

I'll appreciate any help,
Alan