On 6/12/02 11:22 AM, "Julian Vrieslander" <[EMAIL PROTECTED]> wrote:
> How do you print an incoming email message with all headers?
>
> Print command from the message window (with or without headers pane
> expanded) gives only partial headers on the printed page. Print command
> from the View Source window does not work at all.
>
> I can copy/paste to another program and print from there. But is there no
> way to do it within Entourage?
By an AppleScript workaround (in Entourage X, where you can't print the
Source window):
tell application "Microsoft Entourage"
set theMsg to item 1 of (get current messages) -- *
set theSource to source of theMsg -- only works for saved messages
set theContent to content of theMsg
set content of theMsg to theSource
print theMsg
set content of theMsg to theContent
end tell
* -- there seems to be a bug with 'displayed message of window 1' when the
main window is in front
--
Paul Berkowitz
--
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/>