[AHK] Hotkeys for switching between Day/Week in Week Planner
Posted: Sat Nov 02, 2019 8:28 pm
This simple script allows you to assign a hotkey to day/week view options in the Week Planner tab
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)
ctrl-shift-q -> Day Viewctrl-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
}