quote:
Originally posted by Electro_Q
just a thought for ages you could send a message on yahoo messenger to someone who was not online and they would get it when they came online
That is a feature available now in Windows Live Messenger and Messenger Plus! already had a comeback message feature before this was available.
As far as having a message sent to a contact as soon as they signin this hasn't been created but with some knowledge of Visual Basic it can be completed.
code:
Public WithEvents MessengerAPI As MessengerAPI.Messenger
Dim iMessengerContact As iMessengerContact
Public Function Initialize(ByVal nVersion As Long, ByVal sUserEmail As String, ByVal oMessenger As Object) As Boolean
Set MessengerAPI = oMessenger
End Function
Private Sub MessengerAPI_OnGroupAdded(ByVal hr As Long, ByVal pMGroup As Object)
Set iMessengerContact = pMGroup
MsgBox iMessengerContact.Status
End Sub
Although I haven't foold around with the Plugin API since the creation of scripts in Plus! Live it
should be done something like that.