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

A place to post your ideas and solutions for how best to make use of the software

Moderators: abstr, Niko

Post Reply
Niko
Posts: 239
Joined: Wed Sep 18, 2019 6:48 am

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

Post by Niko » Thu Nov 21, 2019 6:12 pm

book.gif
book.gif (49.15 KiB) Viewed 5202 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.

Post Reply