Jump to content

Recommended Posts

Posted

This event fires when an instant message is received from the remote application. The event is labeled "restricted" because it is only available if the application has either the ReplaceIM or ReceiveIM permission flag. For more information, see Standard vs. Advanced Applications.

Read that and post your attempts.

Cheers,

Brett

Posted

Where do you create the object?

It should be something like this:

$oWin = ObjCreate("OBJ.NAME.HERE")
If Not IsObj($oWin) Then
    MsgBox(0, "", "Object Not Created!")
    Exit
EndIf
MsgBox (0, "", _MsnGetChatText ($oWin))

Func _MsnGetChatText ($Win)
    If Not IsObj($Win) Then Return 0
    Return $Win.History
EndFunc  ;==>_msngetchattext
Posted

well thats what i have

$oMessenger = ObjCreate("Messenger.UIAutomation.1")
Func _MsnGetChatText ($oMessenger)
    If Not IsObj($oMessenger) Then Return 0
    Return $oMessenger.History
EndFunc

but this but this event or property named History isnt working i tested it with the channel.im too but field again

thanks for ur help again

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...