Jump to content

Recommended Posts

Posted

I'm making a program with a lot of _IE functions.

When it submits a form or something else it makes a sound although it's invisible.

Is there a way to turn off does sounds?

Thnx in advance!

Ludocus ;)

Posted (edited)

Set HKEY_CURRENT_USER\AppEvents\Schemes\Apps\Explorer\Navigating\.Current, Default = "" in the registry:

; Disable clicking noise on navigation
$sKey = "HKEY_CURRENT_USER\AppEvents\Schemes\Apps\Explorer\Navigating\.Current"
$sOld = RegRead($sKey, "") ; Save $sOld somewhere if you will restore
RegWrite($sKey, "", "REG_EXPAND_SZ", "")

Don't forget to save the old value somewhere if you will ever want to restore it.

;)

Edited by PsaltyDS
Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
Posted

Set HKEY_CURRENT_USER\AppEvents\Schemes\Apps\Explorer\Navigating\.Current, Default = "" in the registry:

; Disable clicking noise on navigation
$sKey = "HKEY_CURRENT_USER\AppEvents\Schemes\Apps\Explorer\Navigating\.Current"
$sOld = RegRead($sKey, "") ; Save $sOld somewhere if you will restore
RegWrite($sKey, "", "REG_EXPAND_SZ", "")

Don't forget to save the old value somewhere if you will ever want to restore it.

;)

Is these keys are valid for xp, vista or 7 ?

AutoIt 3.3.18.0 X86 - SciTE 5.5.7WIN 11 24H2 X64 - Other Examples Scripts

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...