I currently use Office for Mac (Home and Student Edition). When I get an
e-mail (and Entourage is open but I am not working in the program), an
envelope shows on the Entourage "e" in the Dock letting me know that I have
mail. This is better for me than a pop-up notification because the pop-up
notification goes away quickly and I won't see it if I am not looking at the
screen at that moment.
I'm always bumfuzzled by this. With all the spam that's downloaded I always
have mail. The little envelope is meaningless to me. OK, I know.... personal
opinion.
I have played around with Office for Mac 2008 on my son's computer. It appears
that the envelope of the Dock notification is no longer available.
You might like to try this. You will need to download and setup Growl. Set
to leave notification on screen until you dismiss it or set as Sticky. This
is really new and not sure how successful this is. Please let me know if
this works for you.
Make a rule: (see web page for screenshots and download for script)
<
http://www.entourage.mvps.org/rules/example/rule013.html>
All Messages
Run AppleScript (select growl script see below)
Uncheck ³do not apply to other messages that meet this criteria² Place this
at the top of your Rules list.
Save this as a complied script to the Script Menu Items folder, or you can
download here:
<
http://www.entourage.mvps.org/downloads/scripts/Growl.zip>
tell application "GrowlHelperApp"
set the allNotificationsList to {"New Mail"}
set the enabledNotificationsList to {"New Mail"}
register as application ¬
"Entourage" all notifications allNotificationsList ¬
default notifications enabledNotificationsList ¬
icon of application "Microsoft Entourage"
end tell
tell application "Microsoft Entourage"
set theMessages to the current messages
end tell
repeat with theMsg in theMessages
tell application "Microsoft Entourage"
set mysubject to get the subject of theMsg
set mysender to the display name of sender of theMsg as string
if mysender is "" then
set mysender to the address of sender of theMsg as string
end if
end tell
tell application "GrowlHelperApp"
notify with name "New Mail" title "You have new email" description
("From " & mysender & " about " & mysubject) application name "Entourage"
end tell
end repeat