Hi Coram,
I gave up trying to find an actual Entourage 2008 plugin so I started
looking into AppleScripts. I'm still hoping that someday there will
be a 2008 plugin, but in the meantime I've been able get most of what
I want using scripts. I've pasted in a couple of example below--hope
they help. I added them to my library>scripts folder (all users) so I
could assign QS hotkeys and launch from any application.
New message:
tell application "Microsoft Entourage"
make new draft window
end tell
activate application "Microsoft Entourage"
tell application "System Events"
end tell
New task (this can be adapted for new events, notes, and contacts):
tell application "Microsoft Entourage"
set newone to make new task
open newone
activate
end tell
--DMC
On Apr 22, 6:31 pm, coram <[email protected]> wrote:
> Looking for the same answers. Just installed Quicksilver and love it,
> but have hit the wall with Entourage 2008.
>
> --coram