I keep getting an error while running this script:
Sub sendtext()
Dim msgr as instantmessengerconversationWndAdvanced
Dim Text as string
Text= range("a1").value
Instantmessage (person@mail.com)
msgr.sendtext(Text)
End Sub
It opens the chat window with the correct person listed, but I get an error when it gets to the text part:
Run-Time error '494': Object Required
I checked the references and browsed the object library. I do see the sendtext()
function listed and this has me confused. Am I missing something?Any help is appreciated.