help with Direct Email Xtra

Ask a Question related to Macromedia Director Lingo, Design and Development.

  1. #1

    Default help with Direct Email Xtra

    Hi

    Has anyone used Direct Email Xtra in a project? How have you called the
    email interface - as a MIAW, go to movie "sendEmail" which comes with the
    Xtra, or there is a better way of doing it? I have been to their website but
    didn't find the explanation on how to use it very helpful.

    Many thanks.

    Nishi


    Nishi Guest

  2. Similar Questions and Discussions

    1. Get Direct xtra transition working in Shockwave
      I do not get the Direct xtra transition working in the shockwave version. What is the mistake I do? I have put the shockwave versions of the...
    2. Supporting the Direct X 9 3D Xtra initiative ?
      Hi Cheyennecloud Christophe Leske has compiled a resourceful page on http://www.director3d.de/stories/2003/07/18/quickstartForXtraProgram...
    3. direct Media Xtra
      hi .. ... i am using Direct media Xtra for mpegs ... but it seems that it dos not not work for nested hirerchy .. i mean it gives me errors if the...
    4. Direct Media Xtra troubleshooting
      hi .. .. i got a projector which is Full Screen by birth .. i placed two buttons for minimize & exit .. they work fine .... but when a Mpeg Video...
    5. Cue Points in Direct Media Xtra - HELP PLEASE
      I want similar functionality, but I see that xtra is only available for Windows and I need cross platform. Does anyone know of another xtra that...
  3. #2

    Default Re:help with Direct Email Xtra


    it's been ages since I used it but here's a handler from an old project which might be useful (emailobject is your xtra instance):



    global emailobject


    ---------------------------------
    -- send email button script
    ---------------------------------
    on mouseUp me
    email "from@hotmail.com", "to@hotmail.com", "subject text", "body text", "attachment.jpg"
    end


    ---------------------
    -- e-mail handler
    ---------------------
    on email from, to, subject, body, attachment
    verify from, to
    sendmail = SendEmail (emailobject, From, to, empty, empty, empty, Subject, Body, Attachment)
    if sendmail <> 0 then showerror sendmail
    checkstatus
    end


    ------------------
    -- status check
    ------------------
    on checkstatus
    repeat while emaildone(emailobject) = false
    nothing
    end repeat
    checkerror
    end


    -----------------
    -- error check
    -----------------
    on checkerror
    msg = emailerrorcode(emailobject)
    if msg <> 0 then showerror msg
    end



    good luck!


    rick@mcorp webforumsuser@macromedia.com Guest

  4. #3

    Default Re: Re:help with Direct Email Xtra

    Hi Rick

    Thanks for the codes. At the moment I can send email through Director by
    using mailto. But it opens the explorer browser as well as the Outlook
    Express which my client is finding annoying. hence the need to using
    DirectEmail Xtra.

    My question is more basic, what should happen with DirectEmail Xtra when the
    user clicks on my link e.g. [email]info@mycompany.com[/email] . The user then need to enter
    the body of text beforte sending it. Does it open up the sendEmail movie
    which they provide or the Outlook Express? Sadly the documentation of
    DirectEmail Xtra is not very clear.

    Nishi


    Nishi 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