View Single Post
  #2 (permalink)  
Old 05-29-2008, 09:05 AM
rstoyguy's Avatar
rstoyguy
SuperNoob
Offline
Location: Wichita, KS
 
Join Date: Jan 2008
Posts: 6,309
Reputation: 23264
rstoyguy can't get a higher reputation levelrstoyguy can't get a higher reputation levelrstoyguy can't get a higher reputation levelrstoyguy can't get a higher reputation levelrstoyguy can't get a higher reputation levelrstoyguy can't get a higher reputation levelrstoyguy can't get a higher reputation levelrstoyguy can't get a higher reputation levelrstoyguy can't get a higher reputation levelrstoyguy can't get a higher reputation levelrstoyguy can't get a higher reputation level
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: H to set InCall Volume default after softreset?

Quote:
Originally Posted by mswlogo View Post
On older htc phones there was a registry edit to set the volume setting at boot up. Does anyone know what it is for the current version.

I'm running Alltel WM 6.0 ROM

I know all about audiopara.csv but that's not what I want. It boots up on 2nd from the top tic on InCall Volume. I want it to default to the top tic mark on softreset.
Play with your volumes and keep an eye on these 5 registry keys to get the settings you want to keep. audiopara.csv sets the system volumes, but you can still control your desired volume depending on the ranges set within the audiopara.csv file.

The following controls the 5-Step volume slider volumes:

; Phone icon, this is the one on the left when you click the speaker icon
HKEY_CURRENT_USER\ControlPanel\Volume
Volume=dword:858,993,459
; 1st bar of 5 = 0 or silence (if you go down one more to vibrate, it also sets the key "screen":dword=0)
; 5th bar of five: loudest = 4,294,967,295
; 2nd bar of 5: = 858,993,459

;Handset icon, this is the one on the right when you click the speaker icon
HKEY_CURRENT_USER\ControlPanel\Volume
Ringer=dword:858,993,459
;0 = silence

;microphone
HKEY_CURRENT_USER\ControlPanel\Volume
Mute= dword:7
This one 7, is loudest, 0=mute

;vibrate?
HKEY_CURRENT_USER\ControlPanel\Volume
Screen= dword:=65,336
;0=vibrate

;Mystery...
HKEY_CURRENT_USER\ControlPanel\Volume
Key=dword:0
;don't know what this one is...

Hope you can understand my chicken scratch!
Code:
REGEDIT4
[HKEY_CURRENT_USER\ControlPanel\Volume]
"Volume"=dword:FFFFFFFF
"Ringer"=dword:33333333
"Screen"=dword:00010000
"Key"=dword:00000000
"Mute"=dword:00000007
__________________
If this post was helpfull, let me know by clicking Thanks!


Last edited by rstoyguy; 05-29-2008 at 09:23 AM.