Page 1 of 1

[AHK] Hotkeys for switching between Day/Week in Week Planner

Posted: Sat Nov 02, 2019 8:28 pm
by Niko
This simple script allows you to assign a hotkey to day/week view options in the Week Planner tab
ahk1.gif
ahk1.gif (10.28 KiB) Viewed 4471 times
ctrl-shift-q -> Day View
ctrl-shift-w -> Week View
If it doesn't work for you, change the coordinates for mentioned day and week view icons using window Spy (Right click on AutoHotKey icon)

Code: Select all

^+q::
{
ControlClick, x267 y166, untitle1d - ToDoList (c) AbstractSpoon
}

^+w::
{
ControlClick, x295 y166, untitle1d - ToDoList (c) AbstractSpoon
}