2

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 this screenshot to see the difference between the two).

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.

Clarification: 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.

Chris Charabaruk
  • 4,367
  • 2
  • 30
  • 57

5 Answers5

1

Chris, how to set the music message programmatically?

Bill Li
  • 678
  • 1
  • 8
  • 17
1

Of course, from any conversation windows, a simple "/psm new message" would update the message status field.

But programmatically:

You will find here a VB source file which sent a new message to the PSM (Personal Satus Message) of your Live Messenger windows. May be that would help.

extract:

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 = &H111
Private Const WM_CHAR = &H102
Private Const VK_RETURN = &HD

Private Function SetPSM(ByVal text As String) As Boolean
   Dim hParentWnd, hChildWnd As Long
   SetPSM = False
   hParentWnd = FindWindow("MSBLWindowClass", vbNullString)
   If hParentWnd <> 0 Then
      hChildWnd = FindWindowEx(hParentWnd, 0, "DirectUIHWND", vbNullString)
      If hChildWnd <> 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
VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250
1

You can install over your MSN MsgPlus 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.

Blair Conrad
  • 233,004
  • 25
  • 132
  • 111
Patrick Desjardins
  • 136,852
  • 88
  • 292
  • 341
  • I'm not going to pad out my programs with 3rd party cruft to do something I can accomplish without said cruft. Doing such is wholly irresponsible. – Chris Charabaruk Nov 10 '08 at 12:09
1

There is no programmatic way of setting the Live Messenger status message that works with versions inclusive of Live Wave 3.

Chris Charabaruk
  • 4,367
  • 2
  • 30
  • 57
0

You could possibly go for the messy work-around, using windows API functions to simulate user input.