A Flash Developer Resource Site

Results 1 to 3 of 3

Thread: Mailto on a button ?

  1. #1
    Member
    Join Date
    Feb 2009
    Posts
    43

    Mailto on a button ?

    anyone know the proper code to place on abutton to get it to open the defualt email programme and create a new email to an address



    and i already searched and:


    on(release){
    getURL('mailto:richard@xxx.co.uk', post);
    }

    on(release){
    getURL('mailto:richard@xxx.co.uk', _self);
    }

    on(release){
    getURL('mailto:richard@xxx.co.uk', );
    }


    do not work

  2. #2
    AS3 Mod
    Join Date
    Sep 2007
    Location
    O-H-I-O
    Posts
    2,385
    PHP Code:
    on(release){
    getURL('mailto:richard@xxx.co.uk''_self');// Strings need to be passed in quotes, not open


  3. #3
    Member
    Join Date
    Feb 2009
    Posts
    43
    thank you very much that works a treat
    also worth noting that you have to test it for real

    ctrl+enter and it still fails to 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