Quicksilver to Mori

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.

Quicksilver's Plug-ins panel

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

Quicksilver to Mori

set clipboardText to the clipboard as text
make new entry at end of entries of inFolder with properties {name:theText, note:clipboardText}