Skip to content

Instantly share code, notes, and snippets.

@kylef
Created May 31, 2009 13:11
Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kylef/120887 to your computer and use it in GitHub Desktop.
Save kylef/120887 to your computer and use it in GitHub Desktop.
Applescript to toggle mute on Skype
tell application "Skype"
if (send command "GET MUTE" script name "MuteToggler") is equal to "MUTE ON" then
send command "SET MUTE OFF" script name "MuteToggler"
else
send command "SET MUTE ON" script name "MuteToggler"
end if
end tell
@joek13
Copy link

joek13 commented May 6, 2014

This is really useful. With Skype's awkward push-to-talk controls, this will help immensely. Thanks for sharing!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment