Last active
October 10, 2015 05:47
-
-
Save hez/3643090 to your computer and use it in GitHub Desktop.
Answer Skype call
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tell application "Skype" | |
activate | |
set calls to send command "SEARCH ACTIVECALLS" script name "Call Control" | |
set callID to last word of calls | |
set status to send command "GET CALL " & callID & " STATUS" script name "Call Control" | |
if last word of status is "RINGING" then | |
send command "ALTER CALL " & callID & " ANSWER" script name "Call Control" | |
end if | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment