如何通过Applescript获取Skype好友的在线联系状态

时间:2009-10-10 19:34:11

标签: applescript skype

有没有办法通过Applescript获取每个Skype联系人的在线状态?

到目前为止,我只是成功获得了在线用户群。但是,我还需要相应的在线状态。

向你求助!

干杯 儒略

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"

1 个答案:

答案 0 :(得分:0)

好吧,它很容易......有时候休息会有所帮助; - )

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

干杯 儒略