Instant Chat via Quicksilver (Works perfectly) ______________________________________
1)Download Adium Module http://www.blacktree.com/quicksilver/plugins.php 2)Download AdiumBook http://aurelio.net/soft/adiumbook/ 3) Sync your contacts to your adressbook 4)Rename your contacts in addressbook so thats its easy to type . Reason: Some of your friends have long titles like " The kick ass fighter in bahama" or any other title thats hard to type so just type an easy name for them. 5) copy this script: ............................ using terms from application "Quicksilver" on process text im_text repeat with im_delimiter_position from 1 to (length of im_text) if character im_delimiter_position of im_text = ":" then exit repeat end repeat set im_contact_name to characters 1 thru (im_delimiter_position - 1) of im_text as string set im_message to characters (im_delimiter_position + 2) thru (length of im_text) of im_text as string tell application "Adium" set user to first contact whose (status type is available and display name starts with im_contact_name) if not (exists (chats whose contacts contains user)) then tell account of user to (make new chat with contacts {user} with new chat window) end if send (first chat whose contacts contains user) message im_message end tell return nothing end process text end using terms from ............................ 6) Open script editor & save it in "~/Library/Application Support/ Quicksilver/Actions" as <Send As IM.scpt>. 7)open quicksilver & press " & type "Contact name:message" without quotations example dragonkent:hi. Quicksilver will search for a contact thats online with that name then it will open a window from adium that says your message ignore the window & chat using quicksilver. 8)you can only see what he types in the adium chat window but you can at least chat but of course growl tells you what he typed. Reason to use this script: you are browsing & your friend is talking to you what is better than chatting using a small half transparent cube! instead of a window that blocks your way & you need to activate the window by clicking on it using the mouse. so just browse & when he chits you just type his name & message & Enter thats it your back to your browser! Script Credit: It seems unfair that I present this script without associating the script writer http://dcortesi.com/2008/01/12/adium-quicksilver-script/
