| View previous topic :: View next topic |
| Author |
Message |
Lequi
Joined: 31 Aug 2007 Posts: 29
|
Posted: Sun Mar 09, 2008 7:58 pm Post subject: microphone mute with hotkey |
|
|
hey there,
i bought a new headset which has no mic mute anymore, so i thought i write a little script which can toggle the mic input
| Code: | !1::
soundget mic_vol, MICROPHONE
if mic_vol = 0
{
soundset 100, MICROPHONE
}
else
{
soundset 0, MICROPHONE
}
return
|
the problem is, this is the mic output, meaning of "what you hear" instead of the volume when using skype or something
anybody knows how to realise this?
thanks in advance |
|
| Back to top |
|
 |
Kellianjaxon
Joined: 04 Jan 2008 Posts: 39
|
Posted: Mon Mar 10, 2008 1:14 am Post subject: |
|
|
| Sounds to me like you're adjusting mic volume in the playback section of the volume control. Have you already checked the recording side out for mic settings? Options -> Properties -> Recording (tick all checkboxes) -> OK button. |
|
| Back to top |
|
 |
Lequi
Joined: 31 Aug 2007 Posts: 29
|
Posted: Sun Mar 16, 2008 9:30 pm Post subject: |
|
|
of course i know how to mute the mic via equalizer from windows but i wanted ahk to do this.
the command
soundset x, MICROPHONE
due to my new headset having no more mic mute i want to set the mic output to zero so the others in teamspeak canot her me anymore (for example)
i could go into teamspeak and mute the mic but this takes too long, i only want to press a hotkey having my mic muted..
isnt this possible?
regards |
|
| Back to top |
|
 |
Lequi
Joined: 31 Aug 2007 Posts: 29
|
Posted: Sat Mar 22, 2008 3:17 pm Post subject: |
|
|
| does really nobody knows how to simulate a simple mic mute? |
|
| Back to top |
|
 |
BoBoĻ Guest
|
Posted: Sat Mar 22, 2008 3:57 pm Post subject: |
|
|
[Skrommel's MicMute]
btw. beside the executable the source (an AHK script) is provided for download.  |
|
| Back to top |
|
 |
|