|
Set iChat status in Skype too |
|
|
|
|
Written by Ola Andersson
|
|
Wednesday, 14 November 2007 |
|

This script sets the same status message you have in iChat in Skype too. This script came about when I grew tired of being able to choose between different status messages in iChat but to get the same messsage in Skype I had to type it by hand. This script can be run in several ways: you could activate the Script-menu and have it available for choosing there, you could make an application from the script and put in the dock, next to you Skype icon. Do you have to many items there you could throw away the Skype icon and make an app from a script that also starts Skype first, then gets the Status from iChat, and sets it in Skype.
(* iChat Status to Skype Status ---------------------------------------------------------------- By Ola@intelligentmammals.se, 2007-11-14 http://www.intelligentmammals.se/ http://applescript.intelligentmammals.se/
This script gets the statusmessage from iChat and sets the same status message in Skype. BTW, only people in your contact list can see your status message (aka mood message).
More stuff you can play around with in Skype here: https://developer.skype.com/Docs/ApiDoc/PROFILE_object
*)
-- Remove this part if you don't want this script to start Skype tell application "Skype" activate end tell
-- Get status from iChat and put it an variable tell application "iChat" set iChatStatusMessage to status message end tell
-- Set the same status in Skype tell application "Skype" -- Please note that the name in "" after script name has to be the same as the name of this script. send command "SET PROFILE MOOD_TEXT " & iChatStatusMessage script name "iChat Status to Skype Status" end tell What it might look like 
This sets the same status in Adium too:
-- Sätt samma status i Adium tell application "Adium" set my status message to iChatStatusMessage end tell
|
|
Last Updated ( Wednesday, 14 November 2007 )
|