Hi there, I need some help/assistance with an email link.
I have an invite I created in Flash and at the end of some animation some buttons appear, one of them being “RSVP”. When selected it pops up that standard small window asking you to choose an email preference(in this case Yahoo). Once selected it goes to that email account or asks to to log in to proceed and then the reply email window shows and your ready to RSVP.
Where I need help is:
1 - I would like the invite I created to remain open and have the reply email window open in a separate/new window.
2 - I am also having trouble getting the “Subject” to fill in correctly and sometimes the text “mailto:” appears in the email address window and causes an error when the email attempts to send.
Below is what I am using for now even though it does not open a new window or populate the Subject:
rsvp_btn.onPress=function () {
getURL("mailto:me@blahblah.com");
}
and I have tried this with no luck when opening Yahoo email, only the address shows:
[COLOR=#000000][COLOR=#0000BB]rsvp_btn[/COLOR][COLOR=#007700].[/COLOR][COLOR=#0000BB]onPress[/COLOR][COLOR=#007700]=function ()
{
var [/COLOR][COLOR=#0000BB]Address [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#DD0000]“me@blahblah.com”[/COLOR][COLOR=#007700];
var [/COLOR][COLOR=#0000BB]Subject [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#DD0000]“Party Reply”[/COLOR][COLOR=#007700];
var [/COLOR][COLOR=#0000BB]mailto [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#DD0000]“mailto:” [/COLOR][COLOR=#007700]+ [/COLOR][COLOR=#0000BB]Address [/COLOR][COLOR=#007700]+ [/COLOR][COLOR=#DD0000]"?subject" [/COLOR][COLOR=#007700]+ [/COLOR][COLOR=#0000BB]Subject[/COLOR][COLOR=#007700];
[/COLOR][COLOR=#0000BB]getURL[/COLOR][COLOR=#007700]([/COLOR][COLOR=#0000BB]mailto[/COLOR][COLOR=#007700], [/COLOR][COLOR=#DD0000]"_blank"[/COLOR][COLOR=#007700]);
}
[/COLOR][/COLOR]
Any help would be greatly appreciated!
Thanks.