Is there a hotkey I can use or configure to mute the mic on a 13" MacBook Pro (MPB)?

I would prefer an icon or notification to confirm that it is set (even if I need to toggle the option).

link|improve this question

75% accept rate
feedback

4 Answers

up vote 3 down vote accepted

You can simply Alt-Click on Sound/Speaker icon in the menubar, then select Line In as Input Device to mute the mic.

When you want it back, just select Internal microphone again.

lineine

link|improve this answer
feedback

This can also be accomplished with a simple AppleScript:

tell application "System Events" to set volume input volume 0

Reverse the process:

tell application "System Events" to set volume input volume 100

EDIT

By the way, Soundsource is a free application that gives you nice easy sliders to toggle Speaker/Microphone levels from the menu bar, without the need for pesky extra dialogs.

link|improve this answer
Soundsource seems awesome – wag2639 Aug 10 '10 at 16:34
feedback

This works best, especially if you want to assign this script to a Hotkey:

set inputVolume to input volume of (get volume settings)
if inputVolume = 0 then
    set inputVolume to 100
else
    set inputVolume to 0
end if
set volume input volume inputVolume

This method doesn't require you to activate the System Preference GUI, or to go through the volume settings of whichever app is active. Instead it is getting the system's volume settings, and then checking to see if the input volume is already 0--if it is it will set the input volume to 100, and if it isn't it will mute the input volume.

Works like a charm.

link|improve this answer
feedback

Umm.. Dunno what OS you're using, but on 10.6.5 simply changing the input the line-in does not disable the Mic as input.

link|improve this answer
This isn't a forum, if you want to comment, you would comment on Studer's answer. Also, 10.6.5 is a very recent release. – wag2639 Nov 23 '10 at 4:41
@wag2639 you need 50 reputation points in order to comment :) – Lipis Apr 5 '11 at 0:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.