crazybeans128
Programmer
Alright, I need to be able to fill out a form in Flash and have it export to a spreadsheet for later reference. Does anyone know how to do this?
Thanks in advance
Thanks in advance
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
form_data = new LoadVars();
form_data.firstname = firstname;
form_data.lastname = lastname;
form_data.comments = comments;
form_data_reply = new LoadVars();
form_data_reply.onSend = function(success) {
trace(success?"OK":"Failed");
}
form_data.sendAndLoad("feedback_submit.php",form_data_reply,"GET");