Default due date on tasks

T

Timothy Grant

Is it possible to get tasks to default to due today instead of due tomorrow?
I get lots of email I turn to tasks for followup and I have to change the
date on 90% of them.



--
Stand Fast,
tjg.

Timothy Grant
(e-mail address removed)
 
B

Barry Wainwright

Is it possible to get tasks to default to due today instead of due tomorrow?
I get lots of email I turn to tasks for followup and I have to change the
date on 90% of them.

Sorry, that's not possible.
 
P

Paul Berkowitz

Sorry, that's not possible.

You could open a new task by script instead of via New/Task, and then you
could do it. You can give the script a keyboard shortcut which make it
easier to call. See "About the script menu" in the Help. Here's the script:


set today to (current date)
set time of today to 0 -- midnight
tell application "Microsoft Entourage"
set newTask to make new task with properties {due date:today}
open newTask
end tell


I'm afraid that the Reminder (which is OFF) will start out as tomorrow if
you want one, and you'll have to turn it back to today. That can't be
changed without actually setting a reminder, which you'd do by changing the
'make new task' line.


set today to (current date)
set time of today to 0 -- midnight
set _8AM to (today + (8 * hours))
tell application "Microsoft Entourage"
set newTask to make new task with properties {due date:today, remind
date and time:_8AM}
open newTask
end tell

You can always just uncheck the reminder box if you don't want one.


--
Paul Berkowitz
MVP MacOffice
Entourage FAQ Page: <http://www.entourage.mvps.org/faq/index.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 Microsoft Office you are using -
**2004**, X or 2001. It's often impossible to answer your questions
otherwise.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top