Hi,
Is there a way to not have an action have a due time?
Thanks.
Is there a way to not have an action have a due time?
Thanks.
These forums are now read-only. Please visit our new forums to participate in discussion. A new account will be required to post in the new forums. For more info on the switch, see this post. Thank you!
|
Member
2012-07-04, 12:52 PM
Hi,
Is there a way to not have an action have a due time? Thanks.
Post 1
|
Member
2012-07-04, 01:51 PM
No.
If a task has no due time, but is due today, when is it marked overdue, if not completed? Are you looking for different behavior, or easier data entry?
Post 2
|
Member
2012-07-04, 02:02 PM
In the due column, you can type tomorrow 5 pm.
If the time reaches tomorrow, 5 pm, then the task will show up as overdue. If no time is specified, the task defaults to 12 am.
Post 3
|
Member
2012-07-04, 02:25 PM
I believe it will default to the due time set in Preferences>Data>Default Time for Due Dates.
To the OP-you can set the due time to 11:59 PM, which means that tasks are not considered overdue until the next day (12:00 AM).
Post 4
|
Member
2012-07-05, 07:41 AM
Thanks for this. I guess I just did want any type of alarm going off at a certain time. I don't know the program well enough to know if I have a way to control that vs. just having the action show as overdue.
Chris
Post 5
|
Member
2012-08-16, 10:27 PM
Hi,
So I understand the need to have a time in order for an action to become "overdue." But is there a way to set up a time an action is due so I can act on it vs. setting up a date (but no time) an action is due (and if the date passes, the action is overdue)?
Post 6
|
Guest
2012-08-16, 10:46 PM
When exactly does the date 'pass' ?
At the stroke of midnight ? (That is certainly the conventional view … ) If so, a time component of zero (midnight) is probably what you are really thinking about – either midnight at the start of a given day or midnight at the end of that day, in which case you can just bump up the date by one day … (or use a time component of 23h and 59m) (The underlying data in the OF database is a unix datetime field, in which the time component can be set to zero, but can not in any way be persuaded into non-existence – it's simply a number of seconds elapsed since the stroke of midnight which marked the start of January 1 2001 i.e. around 366883200 at the time of writing …) This may give a sense of what lurks under the hood, and why there are no 'timeless' dates in this system. Code:
#!/bin/sh #OFOC=$(osascript -e 'tell application "Finder" to get id of application file id "OFOC"') OFOC="com.omnigroup.OmniFocus" # For Appstore-purchased variant use (slower) line above instead OFQUERY="sqlite3 $HOME/Library/Caches/$OFOC/OmniFocusDatabase2" NOW=$($OFQUERY "SELECT (strftime('%s','now','localtime'))") YEARZERO=$($OFQUERY "SELECT strftime('%s','2001-01-01')") echo $(($NOW-$YEARZERO)) -- Last edited by RobTrew; 2012-08-16 at 11:09 PM..
Post 7
|
Member
2012-08-17, 09:09 AM
Thanks for the information.
But I am looking for the option to set/not set a due time (and thus an alarm) for a an action, especially in iOS.
Post 8
|
Member
2012-08-17, 09:33 AM
Post 9
|
Thread Tools | Search this Thread |
Display Modes | |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
due time for repeat action? | kevinx | OmniFocus 1 for Mac | 5 | 2013-11-23 05:06 AM |
Setting date and time of new action via an email | drewbono | OmniFocus 1 for Mac | 1 | 2011-01-10 06:57 AM |
Action to move an email to OF and file original in Mail archive at same time? | Casper TFG | Applying OmniFocus | 4 | 2010-02-17 10:56 PM |
Feat. req.: Default start time for an action [Req. Exists: Email support to vote] | Rockyroad | OmniFocus for iPhone | 1 | 2009-04-24 03:31 PM |
Can you Quick Add more than one action at a time? | jenniferp | OmniFocus 1 for Mac | 1 | 2008-01-09 07:17 AM |