dbirnbaum;69782 said:I've been using the Rex wireless TodoMatrix program on my BlackBerry. Like Omnifocus, it includes the ability to set up tasks, due dates, alarms, time required and context, but it does not force you to use them. It its pretty easy to navigate the program and enter tasks right on the device. There is also a web service that you can try for a while when you try the program. I used various Palm programs before, but I like this one much better.
harringg;78581 said:Which desktop client to you use to sync OmniFocus and TodoMatrix?
When I sync via iCal and my Storm 2 (I use PocketInformant 2.0) my checked tasks on the BB get unchecked on the sync and then my next sync has a bunch of unchecked tasks on the BB again. MissingSync for Blackberry on 10.5.8. I still haven't figured out if it's PIBB (maybe that's the issue and not the sync client or iCal), MissingSync or iCal that's "breaking" things, but am very interested in a workflow that will let me use OF on the desktop and keep my tasks 'intact' on the BB.
TIA
Example would be
Name - Find GTD Solution
Category - @Net, Fl:SolutionFind GTD
Notes :
begin TMXfields:en
Folder =SolutionFindGTD
D4[Context]=@Net
endTMXFields
Find GTD Solution @net , @solutionfindgtd
-- John Maisey -- www.nhoj.co.uk -- 29 Mar 2010
-- This script gets all todos in the specified calendar and moves their notes that contain the requires text into the title.
set calendarName to "Home"
set theText to "@work"
tell application "iCal"
set myTodos to (todos of calendar calendarName)
repeat with myTodo in myTodos
if (description of myTodo) contains theText then
set (myTodo's summary) to (myTodo's summary) & " " & theText
end if
end repeat
end tell