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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Flash Email Form Not on Web...

Status
Not open for further replies.

barrywomb

Programmer
Sep 25, 2003
3
US
Hi-
I'm creating a CD ROM with Flash.
The CD ROM has an email form on it.
Since the cd is running on the users computer, the geturl action script will launch the email program and fill in the "To address" and the "Subject". However, I cannot get
anything from the Form into the body of the email. I can get a phrase in there that's typed into the action script:

on (release) {
getURL ("mailto:joebob@here.com?subject=I want a catalog?body+hey dude, you need a catalog");

but I can't get anything from the form.


}
 
on (release){
getURL ("mailto:" +recipient+ "?cc=" + cc + "&subject=" + subject + "&body=" +body)
}


this assumes you have a form with variable names recipient, cc, subject, and body
 
Hi bill,
yeah, I got that. The part I was having problems with was specifying many other fields for the body besides just one string of text for it.

I figured it out. Thanks.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top