ForumsTips & TricksSeemless integration with OS X via Quicksilver


Seemless integration with OS X via Quicksilver
Author Message
lhalter

Posted: Aug 28, 2009
Score: 1 Reference
http://tr.im/xjRT
has an applescript Quicksilver action for twitter-ing. You can activate quicksilver, hit period to enter text , and tab over to twitter and done. You've posted

Since Toodledo has great twitter integration, you can just type "d toodledo" and your todo or note or appointment or whatever. Very quick.

Even easier is to use this applescript instead. It has "d toodledo" built in. Just type your note and be done with it. Installation instructions are same as at the link at the top.:
using terms from application "Quicksilver"
on process text tweet
tell application "Keychain Scripting"
set twitter_key to first Internet key of current keychain whose server is "twitter.com"
set twitter_login to quoted form of (account of twitter_key & ":" & password of twitter_key)
end tell
set twodo to "d toodledo " & tweet
set twitter_status to quoted form of ("source=qucs&status=" & twodo)
set results to do shell script "curl --user " & twitter_login & " --data-binary " & twitter_status & " http://twitter.com/statuses/update.json"
-- display dialog results
return nothing
end process text
end using terms from
You cannot reply yet

U Back to topic home

R Post a reply

To participate in these forums, you must be signed in.