ludocus Posted August 31, 2010 Posted August 31, 2010 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
PsaltyDS Posted August 31, 2010 Posted August 31, 2010 (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 August 31, 2010 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
wakillon Posted August 31, 2010 Posted August 31, 2010 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.7 - WIN 11 24H2 X64 - Other Examples Scripts
PsaltyDS Posted August 31, 2010 Posted August 31, 2010 Tested on Vista 32-bit, and they came from an MSDN article about XP. Not tested on Win7. 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
wakillon Posted September 1, 2010 Posted September 1, 2010 Cool, my script is silent Thanks AutoIt 3.3.18.0 X86 - SciTE 5.5.7 - WIN 11 24H2 X64 - Other Examples Scripts
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now