Learning Flash Lite 1.x ActionScript |
|
|
|
| Common Scripting Tasks > Initiating an e-mail message | |||
You can use Flash Lite to initiate an e-mail message. To initiate an e-mail message, you use the getURL() command and pass it the mailto: protocol, followed by the recipient's e-mail address. You can optionally specify the message subject and body in the URL's query string, as follows:
getURL("mailto:mobile-developer@adobe.com?subject=Flash Lite");
To specify just the message body in the query string, use the following code:
getURL("mailto:mobile-developer@adobe.com?body=More+info+please");
|
|
|
|