Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

email hyperlink in director

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
how does one create an email hyperlink in director so when a user clicks a button, the email box pops up??
 
Here is some Code that runs very well in Director 8


on mouseUp
set the exitLock to true
goToNetPage ("mailto:e-mail_adress")
end

on mouseleave me
set the exitLock to false
end

put this behavior to a button of your choice.
You can put some text to the subject field of the mail then you put a ?subjecttext directly after the email-adress.

Some remarks to exitLock:
I must used this because there were somw dificulties then I closed the E-Mail-Client with a keyboard shortcut. The shortcut closed not only the Client but also the Director-Show, but with exitLock ths didn´t happen.

Some remarks to Microsoft-Products:
This behavior opens Internet-Explorer, showing sort of Error-Message, and then opens Outlook. I have found no way to open Outlook directly, and must always tell my Chef "It´s not a bug it´s Microsoft"

Have fun with it [sig][/sig]
 
i tried this and it works but did you ever figure out a way to open email without opening ie?
thanks
 
Hello directorguy

No, I still haven't found a way to open Outlook without IE.
Sorry.

Have fun
dambo
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top