Ask a Question related to Macromedia Director Lingo, Design and Development.
-
Nishi #1
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
-
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... -
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... -
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... -
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... -
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... -
rick@mcorp webforumsuser@macromedia.com #2
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
-
Nishi #3
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



Reply With Quote

