VolumeUp/Down, Mute with AutoHotkey does not work in Brave

Hi all,

I have an AutoHotKey script handling my Sound Volume. Basically it maps the WIN+CTRL+NumpadAdd and Win+CTRL+NumpadSub to raise or lower the volume. Additionally WIN+BREAK to mute the sound. The script is working fine in every aplication except in Brave. Sound Up/down has no effect, Mute is popping up with Windows Settings About screen.

Description of the issue:
The script is working fine in every aplication except in Brave. Sound Up/down has no effect, Mute is popping up with Windows Settings About screen.

How can this issue be reproduced?
Run this script with AutoHotKey and try:

;Change volume
; #^NumpadAdd::SoundSet,-1 ; press WIN+CTRL+NUMPAD + to raise volume
; #^NumpadSub::SoundSet,+1 ;press WIN+CTRL+NUMPAD - to lover volume
#break::Send {Volume_Mute} ;press WIN+BREAK to mute
return

; Google Search selected text - Ctrl + WIN+ C
^#c::
{
Send, ^c
Sleep 50
Run, http://www.google.ch/search?q=%clipboard%
Return
}
return

Expected result:
Script working like in Chrome, Firefox or Edge

**Brave Version( check About Brave): [
Version 1.35.103 Chromium: 98.0.4758.102 (Official Build) (64-bit)

Additional Information:

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.