Banner connected to email address.

Ask a Question related to Macromedia Flash Ad Development, Design and Development.

  1. #1

    Default Banner connected to email address.

    Hi,
    I have designed my first flash banner that when clicked on, goes to a website.
    I would like this changed so that when the banner is clicked on, an email can
    be sent. eg. the banner would be showing advertising space and an email could
    be sent to my email address from interested parties. Is this possible?
    Thanks in advance.

    wrighty85 Guest

  2. Similar Questions and Discussions

    1. email address??
      I have the following code for email <strong><font color="#000000"><a href="mailto:mail@leaktechinc.com"></a></font></strong> How do add...
    2. Embeding a flash banner in an email
      Hi there, Hope you are well. I was just wondering if anyone knew if it was possible to embed a flash banner inside an email. Whenever I try...
    3. Running NTDSUTIL in Directory Services Restore mode - should be connected or NOT connected to the network?
      Gurus, I have been studying Windows Server 2003. Say you have an operations master which is off-line due to a lengthy hardware failure, such as...
    4. email - reply address
      After configuring internet access and email accounts using pop3 connector, everything worked fine except for the reply address on the emails. My...
    5. Getting email address.
      When my Users enter their information into my trouble call database, is there a way to get their email address automatically rather than them...
  3. #2

    Default Re: Banner connected to email address.

    Which version of actionscript are you using?

    For AS2.0:
    getURL("mailto:anyone@anywhere.com");

    For AS3.0:


    var email:URLRequest = new URLRequest("mailto:anyone@anywhere.com");

    //listens for mouse click and runs clickHandler when it hears it
    email_btn.addEventListener(MouseEvent.CLICK, clickHandler);

    //what to do when button is clicked
    function clickHandler(event:MouseEvent):void
    {
    navigateToURL(email);
    }

    aniebel Guest

  4. #3

    Default Re: Banner connected to email address.

    Many thanks for your reply.
    Im using AS3.0. I have attached the code in the 'Actions' script but still no joy.

    Any ideas?
    Thanks.
    wrighty85 Guest

  5. #4

    Default Re: Banner connected to email address.

    Where did you place the code and do you have a button with the instance name that matches the one in the code? Please post your code, thanks.
    aniebel Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139