I know there must be a simple solution, but I am very new at this… This script would allow me to begin a new email message in Claris Emailer (If I had Claris Emailer!) by pushing the email button next to someone’s address in my Palm Desktop app. I want it to do the same, but with Outlook Express. Ideas? Thank you! Steve
tell application "Palm? Desktop"
set strFullname to full name of address 0
set strEmail to text of address 0
end tell
tell application "Claris Emailer 1.0v2"
activate
«event MManCRML» given «class SUBJ»:"", «class RECP»:{{«class RCNM»:strFullname, «class RCAD»:strEmail, «class RCTP»:0}}
end tell
: I know there must be a simple solution, but I am very new at
: this… This script would allow me to begin a new email
: message in Claris Emailer (If I had Claris Emailer!) by
: pushing the email button next to someone’s address in my Palm
: Desktop app. I want it to do the same, but with Outlook
: Express. Ideas? Thank you! Steve
: tell application “Palm™ Desktop”
: set strFullname to full name of address 0
: set strEmail to text of address 0 end tell
: tell application “Claris Emailer 1.0v2”
: activate
: «event MManCRML» given «class SUBJ»:“”, «class
: RECP»:{{«class RCNM»:strFullname, «class RCAD»:strEmail,
: «class RCTP»:0}}
: end tell
You might want to take a look at these: Palm Desktop Scripts
The mail scripts use the default email application, as set in the
Internet control panel.
Later,
Rob J