G33kDude / Neutron.ahk

AutoHotkey Web GUIs on Steroids
https://www.autohotkey.com/boards/viewtopic.php?f=6&t=76865
MIT License
199 stars 27 forks source link

Disable ding sound #29

Open gittyup2018 opened 2 years ago

gittyup2018 commented 2 years ago

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?

SaifAqqad commented 2 years ago

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 commented 2 years ago

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
}