#Requires AutoHotkey v2.0+ ; AutoHotkey v2 script to toggle meeting microphone audio ; https://www.autohotkey.com/docs/v1/Hotkeys.htm ; https://support.zoom.com/hc/en/article?id=zm_kb&sysparm_article=KB0067050 ; Zoom.exe ConfMultiTabContentWndClass if WinExist("ahk_class ConfMultiTabContentWndClass") { WinActivate("ahk_class ConfMultiTabContentWndClass") Send("!a") ; send zoom microphone (audio) mute toggle, Alt+A Return } ; https://support.google.com/a/users/answer/9896256?hl=en ; Chrome.exe Chrome_WidgetWin_1 else WinExist("ahk_class Chrome_WidgetWin_1") { WinActivate("Meet") Send("^d") ; send google meet microphone mute toggle, Ctrl+D Return }