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 derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Opening email program scripting

Status
Not open for further replies.

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. :-)

 
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”
(3) Use CGI script
 
I meant:
(2) Use Flash
--
getURL("mailTo:someone@someurl.com?subject=Some%20subject")
--
 
Cool,
Very helpful, once again.

Thanks :)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top