How to get Skype friends online status contact via Applescript

Is there a way to get the online status of each Skype contact via Applescript?

So far I've managed to get a group of online users. However, I also need a corresponding online status.

Thnaks for your help!

Cheers Julian

set groupType to send command "GET GROUP " & group & " TYPE" script name "getType"
    if groupType contains "ONLINE" then
        set onlineFriends to send command "GET GROUP " & group & " USERS" script name "getType"

      

+2


source to share


1 answer


Okay, that's pretty easy ... sometimes it helps to take a break; -)

tell application "Skype"
   set result to send command "GET USER <userName> ONLINESTATUS" script name "getType"
end tell

      



Cheers Julian

0


source







All Articles