COMatePLUS - how to read messages in skype?

For everything that's not in any way related to PureBasic. General chat etc...
AtomUpgrader
User
User
Posts: 17
Joined: Fri Jun 21, 2013 11:59 am

COMatePLUS - how to read messages in skype?

Post by AtomUpgrader »

I send messages with this code:

Code: Select all

XIncludeFile "Com\COMatePLUS.pbi"
Define.COMateObject oSkype, oCall
oSkype = COMate_CreateObject("Skype4COM.Skype")
 If oSkype
  For n = 1 To 10
   MessageMy.s = StrF( n)
   oCall = oSkype\GetObjectProperty("SendMessage('test_skyper', '" + MessageMy + "')")
   If oCall
    ;Sleep_(100)
    oCall\Invoke("Finish()")
    oCall\Release()
   EndIf
  Next
  oSkype\Release()
 EndIf
Please give an example to read the messages.
ricardo
Addict
Addict
Posts: 2438
Joined: Fri Apr 25, 2003 7:06 pm
Location: Argentina

Re: COMatePLUS - how to read messages in skype?

Post by ricardo »

I am interested to on reading skype messages.
ARGENTINA WORLD CHAMPION
ricardo
Addict
Addict
Posts: 2438
Joined: Fri Apr 25, 2003 7:06 pm
Location: Argentina

Re: COMatePLUS - how to read messages in skype?

Post by ricardo »

Hi,

I found this http://users.skynet.be/fa258239/bestand ... pe4com.pdf , im not sure if it still working. I dont have skype installed :P

Can anybody test it please? :)
ARGENTINA WORLD CHAMPION
Post Reply