How to write AS 2.0 on a field for Mailto?

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

  1. #1

    Default How to write AS 2.0 on a field for Mailto?

    Hi, I made a web site and at the bottom of the screen I put a field named
    "Contact me". I made this field a movie clip to put some animation on it. Now,
    what specific action script should I put for this movie clip field if I want it
    to open a mail to window? I mean, when the user clicks on it "contact me" a
    screen will open with my e-mail address already in the to:field and he types
    the rest. (I now in Dreamweaver is a mailto instruction). How is in Flash AS
    2.0? Could you give me an example please?..Thank you

    Rocio08 Guest

  2. Similar Questions and Discussions

    1. Is it possible Write Script for text field in Illustrator?
      Is it possible Write Script (condition) for text field in Illustrator 10? Is it possible to make any script that would check the date, or require...
    2. write to database without giving write permission to IIS
      Hi there, I have some ASP code that writes to access database. For security reason I do not want IUSER to give write permission to database...
    3. Mailto ?
      I have always used HTML for my web pages, I am now trying flash but I cant get a button to open my Email editer the way I could with <a href...
    4. mailto into exe
      How I can to do "mailto" for exe in flash?
    5. mailto
      I'm trying to create an email link from a button. I am entering 'mailto:xxxxxx@xxxxx.co.uk' in the behavior text box. It works fine, but it...
  3. #2

    Default Re: How to write AS 2.0 on a field for Mailto?

    yeah it's pretty much the same - except you place it in a getURL() method - and within a button/mc on handler:

    my_btn.onPress = function() {
    getURL('mailto:you@yourdomain.com');
    }
    clbeech 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