How can I programmatically set the status message for Live Messenger? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T18:30:02Z http://stackoverflow.com/feeds/question/274668 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/274668/how-can-i-programmatically-set-the-status-message-for-live-messenger 2 How can I programmatically set the status message for Live Messenger? Chris Charabaruk 2008-11-08T12:28:24Z 2009-05-14T09:40:42Z <p>I want to be able to change the status message for Live Messenger, but everything I've found only works for the music message (see <a href="http://coldacid.net/images/screenshots/live-messenger-status-and-music-messages" rel="nofollow">this screenshot</a> to see the difference between the two).</p> <p>It is possible to do this, as there are programs that have the ability to change it, and some alternate clients for Live Messenger can also set the status message themselves. I just need to know how to do this myself.</p> <p><strong>Clarification:</strong> The solution needs to work with the latest versions of Live Messenger (i.e. the wave 3 beta). Working with older versions is good too, but it's the 14.x versions that I'm working with.</p> http://stackoverflow.com/questions/274668/how-can-i-programmatically-set-the-status-message-for-live-messenger/274676#274676 1 Answer by VonC for How can I programmatically set the status message for Live Messenger? VonC 2008-11-08T12:43:21Z 2008-11-08T12:50:39Z <p>Of course, from any conversation windows, a simple "<code>/psm new message</code>" would update the message status field.</p> <p>But <em>programmatically</em>:</p> <p>You will find here a <a href="http://www.planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=71057&amp;lngWId=1" rel="nofollow">VB source file</a> which sent a new message to the PSM (Personal Satus Message) of your Live Messenger windows. May be that would help.</p> <p>extract:</p> <pre><code>Attribute VB_Name = "Form1" Attribute VB_GlobalNameSpace = False Attribute VB_Creatable = False Attribute VB_PredeclaredId = True Attribute VB_Exposed = False Private Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long Private Declare Function FindWindowEx Lib "user32" Alias "FindWindowExA" (ByVal hWnd1 As Long, ByVal hWnd2 As Long, ByVal lpsz1 As String, ByVal lpsz2 As String) As Long Private Declare Function PostMessage Lib "user32" Alias "PostMessageA" (ByVal hwnd As Long, ByVal wMsg As Long, ByVal wParam As Long, ByVal lParam As Long) As Long Private Const WM_COMMAND = &amp;H111 Private Const WM_CHAR = &amp;H102 Private Const VK_RETURN = &amp;HD Private Function SetPSM(ByVal text As String) As Boolean Dim hParentWnd, hChildWnd As Long SetPSM = False hParentWnd = FindWindow("MSBLWindowClass", vbNullString) If hParentWnd &lt;&gt; 0 Then hChildWnd = FindWindowEx(hParentWnd, 0, "DirectUIHWND", vbNullString) If hChildWnd &lt;&gt; 0 Then PostMessage hParentWnd, WM_COMMAND, 56606, 0 Dim i As Integer For i = 1 To Len(text) Call PostMessage(hChildWnd, WM_CHAR, Asc(Mid$(text, i, 1)), 0) Next i PostMessage hChildWnd, WM_CHAR, VK_RETURN, 0 SetPSM = True End If End If End Function Private Sub cmdSetPSM_Click() SetPSM txtPSM.text End Sub </code></pre> http://stackoverflow.com/questions/274668/how-can-i-programmatically-set-the-status-message-for-live-messenger/274765#274765 1 Answer by Daok for How can I programmatically set the status message for Live Messenger? Daok 2008-11-08T14:19:34Z 2008-11-08T15:17:40Z <p>You can install over your MSN <a href="http://www.msgplus.net/" rel="nofollow">MsgPlus</a> that will give you an API to program over MSN. You can then create a script that calls your program or a program that calls MSN.</p> http://stackoverflow.com/questions/274668/how-can-i-programmatically-set-the-status-message-for-live-messenger/543941#543941 0 Answer by Chris Charabaruk for How can I programmatically set the status message for Live Messenger? Chris Charabaruk 2009-02-12T23:08:43Z 2009-02-12T23:08:43Z <p>There is no programmatic way of setting the Live Messenger status message that works with versions inclusive of Live Wave 3.</p> http://stackoverflow.com/questions/274668/how-can-i-programmatically-set-the-status-message-for-live-messenger/862447#862447 0 Answer by for How can I programmatically set the status message for Live Messenger? 2009-05-14T09:40:42Z 2009-05-14T09:40:42Z <p>You could possibly go for the messy work-around, using windows API functions to simulate user input.</p>