[AHK][UDT] Add/Subtract Start/Due Time
Posted: Thu Nov 21, 2019 6:12 pm
viewtopic.php?f=7&p=1143#p1143
UDT arguments:
0.020833 = 30 minutes
0.041666 = 1 h etc.
AutoHotKey code:
ToDoList has a really wonderful feature to change the date of a task via udt/console. This feature is useful when you failed to accomplish tasks in time and you want to move the tasks to another day (shift + num+).
Let's say the similar problem happens when you are accomplishing another task and track it in the Week Planner, but there are a bunch of tasks scheduled after this task.
Inspired from this topic UDT arguments:
Code: Select all
-dt +0.020833 -st +0.020833
0.041666 = 1 h etc.
AutoHotKey code:
Code: Select all
if WinActive("ahk_exe ToDoList.exe")
{
Numpad2::
Run C:\PathToYOurTODOLIST\ToDoList.exe /$(seltid) -dt +0.020833 -st +0.020833
Return
}
Let's say the similar problem happens when you are accomplishing another task and track it in the Week Planner, but there are a bunch of tasks scheduled after this task.