Created
October 21, 2020 01:08
-
-
Save t1m0thyj/c3c6b197e0c30401fdec7dbae919a5b8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; code adapted from https://www.autohotkey.com/boards/viewtopic.php?f=76&t=61040 | |
~^+z:: | |
if WinExist("ahk_class wcl_manager1",, "Cisco Webex Meetings") | |
{ | |
current_ID = | |
if !WinActive("ahk_class wcl_manager1",, "Cisco Webex Meetings") | |
{ | |
WinGet, current_ID, ID, A | |
WinActivate | |
} | |
Send ^{m} | |
if current_ID | |
WinActivate ahk_id %current_ID% | |
} | |
return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment