Home  |  Free Templates (NEW)  |  Premium Website Templates  |  Tutorials  |  Privacy Policy  |  Link Exchange  |  Contact Us
Tutorials
Photoshop Tutorials
Flash Tutorials
3D Graphics Tutorials
Partners
Free Website Templates
Flash Templates Today
Web Sites
Free Shape
Photoshop Tutorials
Flash Tutorials
Illustrator Tutorials
HTML Tutorials
Flash Templates
Free Web Templates
Free Flash Templates
Web Templates Forum
Recommended Hosting:
Host Unlimited Domains on 1 Account
1500GB storage and 15000GB bandwidth for $6.95/mo!
Recommended Hosting:
Host Unlimited Domains on 1 Account
1500GB storage and 15000GB bandwidth for $6.95/mo!
Free Website Templates: 123456789101112131415
Preview & Download Preview & Download Preview & Download

Welcome To NewFreeTemplates.com Flash Tutorials Area - Mailto: Launch email from Flash animation

Create 2 edit fields for email address and for subject. Name email field "Address" and subject field "Subject". Create "Send" button. Use the following ActionScript code for button's OnUp (or OnClick) event:

mailto = "mailto:" + Address + "?subject=" + Subject;
getURL(mailto,"_self");

  1. Launch Flash Designer. Choose "Frame" > "Frame Size" to set movie size (200 x 200).
  2. Choose "Edit Field" tool and draw 2 edit fields.
  3. Choose "Select" tool. Double click each edit field and change "Variable name" to "Address" and "Subject". Make sure HTML is not checked.
  4. Choose "Button" tool and draw a button below edit fields.
  5. Choose "Select" tool. Choose "Item" > "Actions" > "OnClick". Select "Action Script" and enter the code. Click OK.

    mailto = "mailto:" + Address + "?subject=" + Subject;
    getURL(mailto,"_self");
    

  6. Change frame duration to "stop" (choose "Frame" > "Frame Delay" and check "Stop", click OK)
  7. Press F9 to preview the animation.

Download Flash Designer SFD file:

T1011.SFD

See also: T1043 Create and validate a form in Flash

See also: T1057 Send a form with PHP

To set fixed email address and subject use Get URL field:

Mailto Syntax

Address message to multiple recipients,   (comma separating e-mail addresses)
Add entry in the "Subject" fieldsubject=Subject Text
Add entry in the "Copy To" or "CC" fieldcc=sales@selteco.com
Add entry in the "Blind Copy To" or "BCC" fieldbcc=sales@selteco.com
Add entry in the "Body" fieldbody=Your message here

Separate parameters with &.

Example

mailto:support@selteco.com?subject=tutorial&cc=sales@selteco.com

Breaking the body into lines

Use %0A as line break, for example:

mailto:support@selteco.com?subject=tutorial&body=this body has%0Atwo lines

Sending email directly from Flash

Flash Player will launch your default mail application to complete and send out the email. To send the email directly you have to execute a web based email script, usually provided by your internet provider. We can't give any exact instructions because the script is provider specific. You have to build a query string and use getURL function to execute the script, for example:

body = "This is message body";
email = "someone@server.com";
querystring = "http://www.server.com/emailscript.php?" + "body=" + body + "&email=" + email;
getURL(querystring,"_self");

Advertisements
 
Home  |  Free Templates  |  Premium Website Templates  |  Tutorials  |  Privacy Policy  |  Contact Us
All Rights Reserved 2007-2008 by NewFreeTemplates.com