Netscape Messenger help for newby.
Netscape Messenger help for newby.
- Subject: Netscape Messenger help for newby.
- From: Andrew Hurst <email@hidden>
- Date: Fri, 14 Sep 2001 12:40:09 -0700
Hi,
I have a test script for IE and Entourage that seems to do almost everything
that I want, but I would like to covert it into a Netscape script so that
my associates who use Netscape can access active links to long URLs which do
not work when I send using Entourage. I can9t figure out from the Netscape
dictionary how to script a new mail message.
Here is what I have for IE and Entourage :
set longURL to "<
http://www." & "long_url>"
set recipList to "my list"
set mail_message to "Blah blah blah, look at this URL.
" & longURL
tell application "Internet Explorer 4.5"
Activate
ListWindows
set winNum to the result
OpenURL longURL toWindow winNum
-- what IE script command sends this page via the IE menu command 3Mail
New Message2?
end tell
tell application "Microsoft Entourage"
set newMSG to make new draft window with properties {subject:longURL, to
recipients:recipList, content:mail_message}
-- what Entourage script command inserts a hyperlink?
-- send newMSG
end tell
I have this so far for Netscape:
tell application "Netscape Communicator"
list windows
set winNum to the result
OpenURL "www.long_url" toWindow winNum
Open Component InBox
-- how do I get a new message window open and filled in with subject,
recipients and content?
end tell
Any suggestions?
Thanks, Andy.
--