Neutron.ahk icon indicating copy to clipboard operation
Neutron.ahk copied to clipboard

Disable ding sound

Open gittyup2018 opened this issue 3 years ago • 2 comments

Hi,

There is an annoying ding sound when you press alt+any other key in a Neutron window. It does not happen in plain IE or any other application and played that sound in every example (Template,Simple,Images,Bootstrap)

Please tell me how can I disable this?

gittyup2018 avatar Jun 15 '22 05:06 gittyup2018

I'm not sure if there's a way to disable the sound, but you can disable the alt shortcuts that you're using with the disabled_shortcuts object in neutron

SaifAqqad avatar Jun 16 '22 17:06 SaifAqqad

Add the following to the disabled_shortcuts object

this.MODIFIER_BITMAP[this.VK_MENU]: {
    GetKeyVK("F"): true ; add more entries for each key you want to disable
} 

SaifAqqad avatar Jun 16 '22 18:06 SaifAqqad