all groups > macromedia flash sitedesign > july 2003 >
You're in the

macromedia flash sitedesign

group:

mailto problems


mailto problems andii
7/7/2003 2:08:33 AM
macromedia flash sitedesign:
I cant configure the mailto in a flash MX file button
I use:
getURL("mailto:me@mysite.com", _self);

and it opens an error page first and then the outlook.

Is there any way to prevent this?


thanx a lot

andii

Re: mailto problems steph
7/7/2003 10:07:41 AM
don't send the _self argument in your getURL call. It should do the
trick...

"andii" <webforumsuser@macromedia.com> a écrit dans le message de news:
beakn1$13c$1@forums.macromedia.com...
[quoted text, click to view]

Re: mailto problems Paul Neave
7/8/2003 1:37:36 PM
You could always try this too:

email_lv = new LoadVars();
email_lv.subject = "My Subject";
email_lv.body = "Hello test blah.";
email_lv.cc = "cc@address.com";
email_lv.bcc = "bcc@address.com";
email_lv.send("mailto:email@address.com", "_self", "GET");

Re: mailto problems NCD_
7/9/2003 3:37:43 AM
I'd just dump the self argument and allow it to call the default email program. You could always make a whole mail form up but that's probably mroe work than it's worth.

NCD_

AddThis Social Bookmark Button