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

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] Hotkeys for switching between Day/Week in Week Planner

Post by Niko » 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
ahk1.gif
ahk1.gif (10.28 KiB) Viewed 3739 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
}

Post Reply