2

有没有办法通过 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"
4

1 回答 1

0

好的,这很容易……有时休息一下会有所帮助;-)

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

干杯朱利安

于 2009-10-10T23:54:14.590 回答