Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Mailto: Link doesn't work in Safari

New Here ,
May 27, 2014 May 27, 2014

In my project, we have a link to open a outlook mail. when i open the link in IE/Chrome/Firefox browser, it opens the outlook with the given mail id. But, same link was not working properly in safari browser.

I am using safari version 5.1.7(7534.57.2). When i click the link, it opens the outlook mail, but my current(Parent) window gets crashed.

Below is the sample code i used.

mc.addEventListener(MouseEvent.CLICK, sendEmail);

function sendEmail(e:MouseEvent):void{

     navigateToURL(new URLRequest("mailto:name@domainname.com"));

}

Thank in advance

TOPICS
ActionScript
2.6K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
May 27, 2014 May 27, 2014

You could try specifying a new window and see if that helps.

     navigateToURL(new URLRequest("mailto:name@domainname.com"), "_blank");

But if not, the code is fine so the problem likely lies with the brower.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
May 27, 2014 May 27, 2014

Thanks for your reply..

We already tried that too. But doesn't work.


My problem is after clicking the link, my current window became black screen and it opens the outlook with the given mail id

we are not sure, whether the issue is related to flash player or safari browser.

Any idea?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
May 27, 2014 May 27, 2014
LATEST

I already indicated it will most likely be an issue with the Safari browser. 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines