View Single Post
Quote:
Originally Posted by Lutin View Post
You can write a simple applescript that emulates the press of the key.
Like:
Code:
tell application "OmniFocus" to activate
tell application "System Events"
	tell process "OmniFocus"
		keystroke (ASCII character 28) -- left arrow key	
	end tell
end tell

Then, map it to the sortcut of your choice (ctrl j, ctrl k...) with the launcher of your choice: Launchbar, QuickSilver...
QuickSilver lets you restrict a trigger to the applications you want.

Unless I misunderstood your request, this has nothing to do in OmniFocus.
Excellent! Thanks for the script. Although it would be slow... if I launch it using launchbar, at least the keyboard shortcut is dynamic. Might not be that bad... I could probably get it to arrow down two times for when I am doing my review or especially when completing items... complete and move down one.

As for whether it belongs in OF... well... that's debatable. They already have keyboard shortcuts in the app... whether or not mapping the arrow keys to shortcuts belongs in OF is in the grey zone.

Thanks for the response.