Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

flash form

Status
Not open for further replies.

2cxc

Programmer
Aug 29, 2003
245
CA
I have a flash 5 form with the submit button like so:
Code:
on (release) {
if (!company.length) {
		tellTarget ("co") {
			gotoAndPlay("show3");
		}
	} else if (!name.length) {
		tellTarget ("n") {
			gotoAndPlay("show4");
		}
			} else if (!phone.length) {
		tellTarget ("p") {
			gotoAndPlay(1);
		}
	} else if (!comments.length) {
		tellTarget ("m") {
			gotoAndPlay("show5");
		}
	} else {
		loadVariablesNum("page.asp", 0, "GET");
		gotoAndPlay("thank");
	}
}

i was wondering how i might beable to send the form values to a predetermined email address from the swf instead of using the server asp components. How might this be done
 
Without server side scripting?

Mailto I guess...

You can use "mailto:" (which opens up the user's default mail application) which can even be filled by a Flash input form's submit, but you will have to rely on the user to actually send it.




Regards,

cubalibre2.gif
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top