zzamboni.org
Ideally Blue

zzamboni.org
Ideally Blue

These are the things I have written about

autohotkey

See all posts on posterous with this tag ยป
Dec 23 / 12:14pm

Setting up a global hotkey to add tasks to Outlook

One thing I missed since I moved from a Mac (using The Hit List for GTD) to Outlook (using Jello Dashboard for GTD) was the availability of a global hot key that I could use to bring up a text entry box which I could use to quickly add things into my electronic Inbox, for later processing.

I have found a way to achieve this, and here is the setup I am using now:

The first component is this PowerShell script written by Lee Holmes, which takes as arguments the title of the task to add, and adds it to Outlook. I saved it as Documents/Add-OutlookTask.ps1 in my home directory.

The second component is the ever-useful and amazing AutoHotkey. I added the following lines to my Documents/AutoHotKey.ahk file:

This snippet assigns Win-space to open an input box, and uses whatever is typed in it as the task title to the Add-OutlookTask script. The task will be placed without any categories in the task list, so it appears automatically the next time I open my Jello Dashboard inbox. Here it is in action:

Addtask

I find this extremely useful, since I can press Win-space to add new tasks from any application, without having to switch to Outlook first. At some point I would like to explore the idea of making it smarter, like the quick-add keys in Things or THL for the Mac. This would include, for example, using some information from the currently-active application to prefill the task information. Examples would include using the subject line if an Outlook email is selected or the title of the current web page if a browser is open. Also nice would be to include any selected text automatically in the notes for the task, and maybe a link to the original item.

 

 

Filed under  //  autohotkey   gtd   outlook   productivity   tips   windows  
Sep 5 / 5:15pm

GTD Tip: one-key opening of INBOX notebook in OneNote

One of the most useful applications I have discovered since I had to switch to Windows as my main OS is OneNote, a really great note-taking application which I use for pretty much every data-storing and note-taking need. I use a OneNote notebook as part of my GTD inbox. Today's very simple tip is how to assign a keystroke for opening my Inbox notebook from anywhere in the system. Here are the steps:
  1. Download and install AutoHotKey, if you don't have it already (it's a really useful free application, well worth exploring).
  2. Add the following line to your default AutoHotKey.ahk file (normally in ~/Documents/AutoHotKey.ahk):

  3. Re-run AutoHotKey so it re-reads the config file.
Make sure you change the path of the file you want to open, and also the key to which you bind it, if don't like Win-i.

Of course, this is useful for one-key opening of any file you want.

Filed under  //  autohotkey   gtd   onenote   windows