A Flash Developer Resource Site

Results 1 to 5 of 5

Thread: Email subject part

  1. #1
    Member
    Join Date
    May 2001
    Posts
    36
    I remember seeing a tutorial for making email buttons where you could include the subject of it.... does anyone know how to do that.

    Thanks.

  2. #2
    Moderator
    The Minister of No Crap

    Join Date
    Nov 2000
    Location
    Philadelphia
    Posts
    2,685
    Code:
    <a href="mailto:youremail@yourdomain.com?Subject=Your Subject">E-mail 
    me</a>
    -scott
    http://www.scottmanning.com

  3. #3
    Senior Member
    Join Date
    May 2001
    Posts
    145
    Scott,

    Can that action be put in a flash button with out the HTML tags and work?

    i.e.
    on(release) {
    mailto:youremail@yourdomain.com?Subject=Your Subject">E-mail
    me
    }

  4. #4
    Moderator
    The Minister of No Crap

    Join Date
    Nov 2000
    Location
    Philadelphia
    Posts
    2,685
    Originally posted by FlasherX01
    Scott,

    Can that action be put in a flash button with out the HTML tags and work?

    i.e.
    on(release) {
    mailto:youremail@yourdomain.com?Subject=Your Subject">E-mail
    me
    }
    Just tested it out and it works like a charm.

    Code:
    on (release) {
        getURL ("mailto:galvan@scottmanning.com?Subject=Does this work");
    }
    -scott
    http://www.scottmanning.com

  5. #5
    Senior Member
    Join Date
    May 2001
    Posts
    145
    you da man!

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