Here’s one way to use Quicksilver to enter information into Mori. This is all taken from Leo’s post, I’ve just added some screenshots to help people out.
- Get and install Quicksilver
- Install Text Manipulation Actions plugin by going into Quicksilver’s Plug-ins preferences panel and checking the Text Manipulation Actions plugin.

- Add the following Applescript program to
~/Library/Application Support/Quicksilver/Actions/with the name “in.scpt” (you will probably need to create the Actions folder)
using terms from application "Quicksilver"
on process text theText
tell application "Mori"
tell front document
set inFolder to entry named "Inbox"
make new entry at end of entries of inFolder with properties {name:theText}
end tell
end tell
end process text
end using terms from
- Next restart Quicksilver so it can discover your changes.
- Now invoke Quicksilver by typing Control-Space. Type ‘in’ to find your script, hit Tab twice, enter your text, and hit the Return key when you are done. The text that you entered has now been added to Mori’s inbox.

- You can modify the above script to include the contents of the clipboard by adding these lines.
set clipboardText to the clipboard as text
make new entry at end of entries of inFolder with properties {name:theText, note:clipboardText}
Acting on text in Quicksilver
Another way to add text in Quicksilver is to invoke Quicksilver then hit "." (period) to put it into text mode. You can then enter any text you want, or paste the clipboard. Once you're done, tab to the Actions pane, type the first letter or two of your Applescript and hit enter. (This is the method Merlin Mann documents on 43folders.com).
it's the same number of keystrokes as Jesse's example, but I find it faster since Quicksilver only has to search the Actions folder instead of the entire drive for your Applescript.
I haven't figured out how to enumerate Mori folders in Quicksilver, but you can easily create several scripts, each of which stick the text into a different Mor folder.
--
Leo Laporte
Chief TWiT