Hog Bay Software
QuickSilver to TaskPaper
I hope this script is useful for QuickSilver users. To install it:
- Open Script Editor and paste in the script
- Save the script as ~/Library/Application Support/QuickSilver/Actions/TaskPaper.scpt
- Restart QuickSilver
To use it:
- Invoke QuickSilver (Control-Space) by default
- Press period ‘.’ and type your entry
- Press tab and then type until the “TaskPaper” action is selected.
Your new entry will be added to your Inbox project.
Here’s the script:
using terms from application "Quicksilver"
on process text tasks_text
tell application "TaskPaper"
tell front document
if not (exists project named "Inbox") then
make new project with properties {name:"Inbox"} at front of projects
end if
tell project named "Inbox"
repeat with each in paragraphs of tasks_text
make new entry with properties {text line:each}
end repeat
end tell
end tell
end tell
end process text
end using terms from
TaskPaper Address Book Integration
Check out this post by firemyst:
i love TaskPaper it’s so far the best project/todo manager of its class that i’ve found. as most of my work is around people i needed a way to link an address book contact to a task in TaskPaper. so here you go, i’ve been able to code this in AppleScript which i’ve never used before.
32!
Thanksgiving. To much food takes it’s toll.
It’s going to take me a while to catch up on email and user forums support. The TaskPaper 2.0 release has filled my inbox, and we are headed away for Thanksgiving this evening. I hope to get things under control early next week.