As long as there is no plugin for Quicksilver to directly access & create iCal items: check out Michael’s Apple Script that creates new ToDos:
using terms from application "Quicksilver"
on process text theString
tell application "iCal"
set theCal to (first calendar whose title is "Time") -- or whatever
make todo at end of todos of theCal with \
properties {priority:0, summary:theString}
end tell
end process text
end using terms from
0 Responses to “Quicksilver and iCal”