Script for mute microphone ?
Hi
I need an apple script to mute microphone
Can u explain that how do i use an apple script and how do i run this for my mac
Hi
I need an apple script to mute microphone
Can u explain that how do i use an apple script and how do i run this for my mac
AppleScript:
tell application "System Events"
set volume input volume 0
end tell
You may also control input and output volume by using Terminal app.
Press Command–Space bar to show the Spotlight in a search field type Terminal and press enter/return key.
sudo osascript -e "set volume input volume 0"
and press enter/return key.
Enter your Mac's user password, if screen prompts it.
Password will be hidden during typing.
Type it and press enter/return key.
AppleScript:
tell application "System Events"
set volume input volume 0
end tell
You may also control input and output volume by using Terminal app.
Press Command–Space bar to show the Spotlight in a search field type Terminal and press enter/return key.
sudo osascript -e "set volume input volume 0"
and press enter/return key.
Enter your Mac's user password, if screen prompts it.
Password will be hidden during typing.
Type it and press enter/return key.
Hello 3chucky5,
Thank you for using Apple Support Communities! I understand from the information you provided that you would like to know how to create a script for muting your microphone; I'd like to help.
While we don't have an example of the exact script you're looking for, I can refer you to a link that will explain how to make a script. Here's a resource that could help:
Hope this helps.
Best Regards.
Script for mute microphone ?