On 1/7/08 8:57 AM, Bob Virzi <[EMAIL PROTECTED]> wrote: > Still having trouble adjusting to the way Entourage handles messages. In > Eudora, if I wanted to copy an entire message, including the From and To > headers, I just opened the message and copied it all. Entourage treats the > headers as something different, and there isn't a simple way to copy the > whole message that I can see. If I open it, select all, and copy, it does > not grab the header info. The only way I've been able to do it is to > Forward the message, then copy the entire thing, and then discard the > forward. Ugly. > > Am I missing something?
Bob: No, I see this as a deficiency in Entourage. If you choose menu item View -> Source, you do get *all* the internet headers but not just the main ones. Attached below is the text of an AppleScript that will put a copy of a selected message with the main headers on the clipboard. If you paste the following AppleScript syntax into a new window in the Script Editor and then save it as a script in the folder "Entourage Script Menu Items" (which is in your "Microsoft User Data" folder), you will have ready access whenever you want a copy of the message and main headers. -Jeffrey Berman ----- Attachment follows ----- set TempFile to (path to "utmp" as string) & "Message.temp" tell application "Microsoft Entourage" set Selected to current messages if (count of Selected) = 1 then set SelectedMessage to item 1 of Selected tell SelectedMessage if class is application or content is "" then return end tell -- stop if not a saved message save SelectedMessage in TempFile as "TEXT" else display dialog "Select a single message to copy." buttons ¬ "OK" default button "OK" with icon stop return end if end tell set TempRef to open for access file TempFile set the clipboard to (read TempRef) close access TempRef do shell script "rm -f " & quoted form of POSIX path of TempFile ----- End of attachment ----- -- 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/>
