3

I am using skype4com dll. Is there a way I can change my status (i mean i would like to add a link,or write a status) using skype4com? How can I do that? I know TUserStatus can help you to change from online to offine or invisible mode. But what about adding a message to the status? Thx folks

4

1 回答 1

5

它称为 MoodText,位于 Profile 界面上。

using SKYPE4COMLib;

namespace SO5673842
{
    class Program
    {
        static void Main()
        {
            var skype = new Skype();
            skype.CurrentUserProfile.MoodText = "Hello!";
        }
    }
}
于 2011-04-15T08:10:34.563 回答