Title: Re: Create View: Replied to me
On or near 2/5/2003 11:09 AM, Mark and Theresa at [EMAIL PROTECTED] observed:
> I subscribe to several mailing lists and so get loads of emails per day (500
> or so!). I want to create a custom view that with show all the files in a
> thread that contains messages from me.
>
> But I can't see how to "tag" a thread other than making a rule for each one
> I respond to
>
> Any Help?
This isn't quite it, either, but here is a script that will open a folder and select the messages containing a particular subject. Just select any message in the thread and run the script. (Paste it into Script Editor, save it in Entourage Script Menu Items with name of your choice, I use “Show Thread”, then select it from the script menu to run.) It will do the rest. Obviously, if you are already viewing the folder in question and are in threaded view, you don't need the script. Where it helps is when you have a Custom View that displays just <some> messages from a thread (like unread ones) and you want to see the entire thread.
Combine this with Mickey's CV, and maybe you have something close to what you are looking for.
tell application "Microsoft Entourage"
activate
set theMsg to item 1 of (get current messages)
set theFolder to storage of theMsg
set theSubj to the subject of theMsg
if theSubj begins with "re: " then set theSubj to text 5 thru -1 of theSubj
set theThread to every message of theFolder whose subject contains theSubj
open theFolder
set the selection to theThread
end tell
--
Microsoft MVP for Entourage/OE/Word (MVPs are volunteers)
Allen Watson <[EMAIL PROTECTED]> Entourage FAQ site: <http://www.entourage.mvps.org/>
AppleScripts for Outlook Express and Entourage:
<http:[EMAIL PROTECTED]/Scripts/>
Entourage Help Pages: <http://www.entourage.mvps.org/>
- Create View: Replied to me Mark and Theresa
- Re: Create View: Replied to me Ben Miller
- Re: Create View: Replied to me Mickey Stevens
- Re: Create View: Replied to me Allen Watson
- Re: Create View: Replied to me SVEN AERTS
- Re: Create View: Replied to me Mickey Stevens
- Speeding up reading mailing lists: 1. Cr... SVEN AERTS
- Re: Speeding up reading mailing lis... Paul Berkowitz
- Re: Speeding up reading mailing... Mickey Stevens
- Re: Speeding up reading mailing... Remo Del Bello
- Re: Speeding up reading mai... Paul Berkowitz
- MSN Announcements folder Ian Horner
- 'rage X sometimes re-downlo... Bryan Harris
- Re: 'rage X sometimes re-do... Timothy Bates
