Re: Saving an attachment from Entourage
Re: Saving an attachment from Entourage
- Subject: Re: Saving an attachment from Entourage
- From: Dave G <email@hidden>
- Date: Fri, 9 Nov 2001 14:32:07 -0500
Hi any expert,
Is there a way to make this script work on all found records in Palm?
The end result has to be notifying via email several found records.
If that woks easily, is there a way to tell it what to copy and paste
instead of 'thetest' for the subject? For example let us say that I
have a folder where I keep what I want to send to all the persons on
a list in Palm. I might keep my writings in a Word Perfect document.
Of in a Palm note if that is easier. I will want more than the 256
characters available in the comments section of Palm.
I have hear the term dictionaries mentioned and I assumed that every
application that is scriptable has it's own terms to use in
scripting. Is that true? If so, where is it? Or is it possible to
just mix and match by trial and error as I have been , uh, attempting?
Thanks in advance.
Dave Groover
tell application "Palm Desktop"
set strFullname to full name of address 0
set strEmail to text of address 0
end tell
set pTheAddress to strFullname & " <" & strEmail & ">" as string
tell application "Eudora"
activate
make message at end of mailbox "Out"
tell message ""
set field "to" to pTheAddress
set field "subject" to thetest
end tell
end tell
--