Page 1 of 1

[AHK][UDT] Add/Subtract Start/Due Time

Posted: Thu Nov 21, 2019 6:12 pm
by Niko
book.gif
book.gif (49.15 KiB) Viewed 5205 times
Inspired from this topic viewtopic.php?f=7&p=1143#p1143
UDT arguments:

Code: Select all

 -dt +0.020833 -st +0.020833
0.020833 = 30 minutes
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
}
	
	
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.