Message Center

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
jrachr
Posts: 543
Joined: 01 Mar 2021, 17:33

Message Center

Post by jrachr » 22 Jan 2022, 06:59

Good day. Might be no help yet because Windows 11 is so new but I have a code that worked fine ine Windows 10 but now that I have upgraded to Windows 11 every time I use it it just mutes the volume when I use. it. Any ideas out there?

Code: Select all

Send #a
Sleep 10000
if WinActive("ahk_exe Shellexperiencehost.exe")
{
Send +{Tab}+{Tab} {Space} {Esc}
}
Return

User avatar
mikeyww
Posts: 26937
Joined: 09 Sep 2014, 18:38

Re: Message Center

Post by mikeyww » 22 Jan 2022, 07:03

Although I do not have Win11, I imagine that the action center might look a bit different. An easy fix might be to execute your script's commands manually yourself, one by one, to see what the script is doing, and then adjust it according to the new key sequence that you need.

jrachr
Posts: 543
Joined: 01 Mar 2021, 17:33

Re: Message Center

Post by jrachr » 22 Jan 2022, 16:28

Once again Mikey has done it. It took me a while. More because of my own stupidity. So my script works . But for anyone with Windows 11 #a opens what is called quick settings. What you need to do is change it to #n to open notifications. It wouldn't work for me until I finally realized that I was already using a #n hotkey somewhere else. After bypassing that all good. Of course you can adjust the sleep time to your need's. Tk's again Mikey. Cheer's

Post Reply

Return to “Ask for Help (v1)”