No, I don't think you can do this in Entourage. However, you can use the
"Create Event from Message" script. Select an e-mail in Entourage, and then
click the script menu (to the right of the Help menu on the menu bar). In
the list of scripts that appears, click "Create Event from Message" to run
the script.
If you don't have the script, here's a copy. Here's how to use it
<
http://www.entourage.mvps.org/script/copy_script.html>
(*
Create Event from Message
Copyright (c) Microsoft Corporation. All rights reserved.
*)
tell application "Microsoft Entourage"
-- get the currently selected message or messages
set selectedMessages to current messages
-- if there are no messages selected, warn the user and then quit
if selectedMessages is {} then
display dialog "Please select a message first and then run this script." with icon 1
return
end if
repeat with theMessage in selectedMessages
-- get the information from the message, and store it in variables
set theName to subject of theMessage
set theCategory to category of theMessage
set theContent to content of theMessage
-- create a new note with the information from the message
set newEvent to make new event with properties {subject:theName, category:theCategory, content:theContent}
-- create a link between the message and the new note
link theMessage to newEvent
-- if there was only one message selected, then open that new note
if (count of selectedMessages) = 1 then open newEvent
end repeat
end tell
On 4/8/08 5:56 PM, in article
[email protected]9absDaxw, "
[email protected]" <
[email protected]> wrote:
> Version: 2008
> Operating System: Mac OS X 10.5 (Leopard)
> Processor: intel
> Email Client: Exchange
>
> how can i drag an email message to the calendar to create an event?? I could
> do this in Outlook but just moved to a Mac. I could drag the email to the
> calendar icon in the folder list or I could save to a folder labeled calendar.
> This is not working.