Nov 15, 2003 #1 naggistar Programmer Joined Nov 14, 2003 Messages 4 Location NZ Hi, me again. Is it possible to open an email program with scipting Lingo in Director MX? Thanks.
Nov 17, 2003 #2 kennethkawamoto Technical User Joined Nov 19, 2002 Messages 2,710 Location GB The easiest way is to use Code: gotoNetPage : Code: -- gotoNetPage "mailto:someone@someurl.com?subject=Some%20subject" -- However this may not work always. Even if it works, a web browser may launch at the same time. There are several other better ways. (1) Use Buddy API Code: -- baOpenFile("mailTo:someone@someurl.com?subject=Some%20subject", "Normal") -- (2) Use Flash Code: -- getURL("mailTo:someone@someurl.com?subject=Some%20subject", "Normal") -- (3) Use Xtra such as “DirectEmail Xtra” http://www.directxtras.com/demail_home.asp (3) Use CGI script Upvote 0 Downvote
The easiest way is to use Code: gotoNetPage : Code: -- gotoNetPage "mailto:someone@someurl.com?subject=Some%20subject" -- However this may not work always. Even if it works, a web browser may launch at the same time. There are several other better ways. (1) Use Buddy API Code: -- baOpenFile("mailTo:someone@someurl.com?subject=Some%20subject", "Normal") -- (2) Use Flash Code: -- getURL("mailTo:someone@someurl.com?subject=Some%20subject", "Normal") -- (3) Use Xtra such as “DirectEmail Xtra” http://www.directxtras.com/demail_home.asp (3) Use CGI script
Nov 17, 2003 #3 kennethkawamoto Technical User Joined Nov 19, 2002 Messages 2,710 Location GB I meant: (2) Use Flash -- getURL("mailTo:someone@someurl.com?subject=Some%20subject" -- Upvote 0 Downvote
Nov 17, 2003 Thread starter #4 naggistar Programmer Joined Nov 14, 2003 Messages 4 Location NZ Cool, Very helpful, once again. Thanks Upvote 0 Downvote