AppleScript to have Netscape use any email client
Want the new Netscape Communicator 4.5 to use another email client? Run this AppleScript, changing the creator code to match your favorite email program.
tell application "Netscape Communicator"
register protocol "CSOm" for protocol "mailto"
-- CSOm is the creator code for Eudora
-- Enter your email client 's code in its place
end tell
The script may as you to find your copy of Communicator, then it launch it, and finally register the new email client. The next time you click on a mailto: link, your favorite email program will handle it! |