After a considerable search, I found the original of the Script which
suddenly began giving me trouble.
It was at <http://scriptbuilders.net/search.php> and it is called <Saved
Digests to Text>.
In it's virgin form, here is how it reads:
**********
property digestFolder : ""
set digestFolder to ((path to startup disk) as string) &
"Documents:Digests:"
tell application "Microsoft Entourage" --
set currentMessages to the current messages --
repeat with theMsg in the currentMessages --
my ProcessMsg(theMsg) --
end repeat --
end tell --
on ProcessMsg(theMsg) --
tell application "Microsoft Entourage" --
set s to subject of theMsg
if (s contains "digest") and (s does not start with "re") then
save theMsg in digestFolder as "TEXT"
set read status of theMsg to read
move theMsg to folder "Deleted Items"
end if
end tell --
end ProcessMsg --
*********
What it was doing for me was this - when I highlighted an incoming
Digest from any of the three Lists to which I subscribe, this script would
transform the incoming Digest into a TextEdit document, move that document
to a folder on my desktop called Digest Viewer, and move the incoming Digest
email to the Deleted Items folder of Entourage.
Does that help?
Now, using the above script, when I run it on an incoming Digest I
receive this alert message: <Microsoft Entourage got an error: item 1 of
{incoming message id 9020} doesn't understand the save message.
Does this help anyone figure out why this won't do what it once did?
Many thanks for all the help I have received,
Bob
--
To unsubscribe:
<mailto:[EMAIL PROTECTED]>
archives:
<http://www.mail-archive.com/entourage-talk%40lists.letterrip.com/>
old-archive:
<http://www.mail-archive.com/entourage-talk%40lists.boingo.com/>