OK, it's pretty simple. The "default reminder" for tasks is No Reminder so
you've got no reminder. It would be only a little trickier to script a
reminder if you want one: it could be a default time on the day or earlier.
Save in the Entourage Script Menu Items folder. Before running it select a
list of events (which need not be contiguous) in a Calendar custom view or
Search Results.
-------------------------------------------
tell application "Microsoft Entourage"
try
set theEvents to selection
if class of item 1 of theEvents ‚ event then error number -128
on error
beep 2
display dialog "You must select a list of calendar events in a
Custom View or Search Results panel." buttons {"Cancel"} default button 1
with icon 0
end try
repeat with i from 1 to (count theEvents)
repeat 1 times
set theEvent to item i of theEvents
if class of theEvent ‚ event then exit repeat --(skip if
non-event in mixed view)
set {theName, startTime, theCategories} to theEvent's {subject,
start time, category}
set startDate to startTime - (time of startTime)
make new task with properties {name:theName, due date:startDate,
category:theCategories}
end repeat
end repeat
-- set displayed area of main window to tasks area
beep 2
display dialog "Done!"
end tell
-----------------------------------
--
Paul Berkowitz
MVP Entourage
Entourage FAQ Page: <
http://www.entourage.mvps.org/toc.html>
AppleScripts for Entourage: <
http://macscripter.net/scriptbuilders/>
Please "Reply To Newsgroup" to reply to this message. Emails will be
ignored.
PLEASE always state which version of Entourage you are using - 2001 or X.
It's often impossible to answer your questions otherwise.