Dan,

As you indicate, this isn't something one does frequently. However, I find
that custom views with messages from multiple folders pose a similar
problem. They list the folder, but often what I want to do is find other
(related) messages in that same folder. Then, I use this script:

tell application "Microsoft Entourage" --
    set currentMessages to the selection --
    repeat with theMsg in the currentMessages --
        my ProcessMsg(theMsg) --
    end repeat --
end tell --

on ProcessMsg(theMsg) --
    tell application "Microsoft Entourage"
        try
            set aFolder to storage of theMsg
            (open aFolder) in window 1
        on error theErr
            display dialog theErr
        end try
    end tell
end ProcessMsg

It opens the parent folder in a separate window. You could easily adapt this
script to display dialog and show the folder name instead. I'm not sure how
it would behave with a list of mixed items, but I think it would work fine
if you pre-select just messages. As it stands you would get an error such as
"Can't get storage of..." for anything other than a message.

On or near 4/17/02 1:22 PM, Dan Frakes at [EMAIL PROTECTED] observed:

> (Using latest version of Entourage 2001)
> 
> Today, for the first time ever, I did a Find selecting "All Items" in all
> folders.
> 
> When I do a search of only email messages, the results window shows the
> folder in which each "found" message is located. However, when doing a
> search of "All Items," there is no indication of enclosing folder, nor can I
> find a way to get that info. Am I missing something?
> 
> If I'm not missing something, perhaps a suggestion would be to have a
> "Location" column that lists either the folder (if an item is a message) or
> the type (if an item is a note, task, or calendar item).
> 
> (This relates a bit to my long-standing suggestion that each message, when
> opened, should have a folder menu showing its current folder ;) )
> 
> 

-- 
My web page: <http://home.earthlink.net/~allenwatson/>
My scripts page: <http:homepage.mac.com/allenwatson>
Microsoft MVP for Mac Entourage/Word--<[EMAIL PROTECTED]>


-- 
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/>

Reply via email to