Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Safely check potential spam in Entourage' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Safely check potential spam in Entourage
Authored by: mclbruce on Nov 28, '03 11:55:30AM

Turning off the preview pane is a good idea. Instead of hitting the print button, I go to the view menu and View: Source.



[ Reply to This | # ]
Exactly, and here's a script to do it.
Authored by: brandonlgolm on Nov 29, '03 03:53:03PM

Requires 10.3, or UIScriptingBeta (http://www.apple.com/applescript/uiscripting/01.html) and requires "Universal Access" "Enable access for assistive devices" to be enabled.

Save compiled as: ViewSource\omv
in "Entourage Script Menu Items" Then you just type <Command><Option>-V


tell application "Microsoft Entourage" to activate
tell application "System Events"
tell process "Microsoft Entourage"
click menu item "Source" of menu "View" of menu bar 1
end tell
end tell



[ Reply to This | # ]