A Flash Developer Resource Site

Results 1 to 2 of 2

Thread: email link

  1. #1
    Junior Member
    Join Date
    Jun 2005
    Posts
    22

    email link

    Hokay, this seems like it should be simple, yet I cannot figure out what I messed up on. I have a simple email link on a page. I created it as a button and added the following action:

    on (release) {
    getURL("mailto:blah@blah.com", "_blank");
    }

    However, when I test it, i get a RUNDLL error.

    Any help would be greatly appreciated!

  2. #2
    Flash Designer
    Join Date
    Dec 2008
    Posts
    7
    You dont need to define a target when calling a mailto: function, your code should be:

    on (release) {
    getURL("mailto:blah@blah.com");
    };

    Even with your original it should work.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center