I realise this is a childishly small and simple script, so simple I'm shy to post it. But I find it so useful I thought I'd share it and the idea. It's so simple some of you are probably doing it already.
I have a small list of once-a-month tasks that I like to be reminded about.
I keep them in a CSV file (easy to edit, easy to work with).
The script below reads the CSV file and displays a message box for each item. As I do the tasks, I click the OK button and the next task displays.
I use the Win XP task Scheduler to run the script on the last friday of each month.
Code:
; AutoHotKey Script version 1.x
; Automated reminder list of once-a-month items
; gb, April 2005
; Read the REMINDERS.CSV file and display message box
Loop, read, C:\AHK Work\Working Dir\once-a-month.csv
; edit the above path and insert the path to your CSV file
{
Loop, parse, A_LoopReadLine, CSV
{
Var%A_Index% = %A_LoopField%
}
MsgBox, 64, %Var1%, %Var2%
Sleep, 500
}
;QUIT
Exit
Any comments, suggestions and enhancements will be welcome.
I guess one could use this idea to "call" a list of other AHK scripts as well - but I dunno, as I haven't tried it... yet.