t1hodges
MIS
- May 8, 2003
- 54
Im redesigning an html site with flash. As a visitor to the site want to be able to send an email to the website owner. How can I create this, if possible, with flash?
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.
//on submit button
on(release){
subject = "the subject"; // As a string
body = textBoxInstanceName.text // The instance name of the text box for the input.
getURL("mailto:me@me.com?subject="+subject+"body="+body);