PPCGeeks Forums HTC Arrive HTC HD2 HTC Thunderbolt HTC Touch Pro 2 HTC Evo 4G HTC Evo 3D Samsung Galaxy S II Motorola Droid X Apple iPhone Blackberry
Go Back   PPCGeeks > Windows Mobile > WM HTC Devices > HTC Diamond > CDMA Diamond Development
Register Community Search

Notices


Reply
 
LinkBack Thread Tools Display Modes
  #521 (permalink)  
Old 12-01-2008, 10:23 PM
nttdemented's Avatar
Regular 'Geeker
Offline
Pocket PC: HTC Touch Diamond
Carrier: Sprint
Location: Dorado, Puerto Rico
 
Join Date: Oct 2008
Posts: 440
Reputation: 345
nttdemented is becoming a PPCGeeks regularnttdemented is becoming a PPCGeeks regularnttdemented is becoming a PPCGeeks regularnttdemented is becoming a PPCGeeks regular
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: How To: Kitchens

That setting is in the Buttons control panel.
Reply With Quote
This post has been thanked 1 times.
  #522 (permalink)  
Old 12-02-2008, 10:44 PM
vboyz103's Avatar
Halfway to VIP Status
Offline
Pocket PC: HTC Diamond
Carrier: Sprint
 
Join Date: Dec 2006
Posts: 527
Reputation: 293
vboyz103 is becoming a PPCGeeks regularvboyz103 is becoming a PPCGeeks regularvboyz103 is becoming a PPCGeeks regular
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: How To: Kitchens

Quote:
Originally Posted by kaiguy View Post
I haven't been following this thread as usual since I've been out of town, so I apologize if this has already been covered (I tried searching, and came up with nothing). I wouldn't consider this a bug, but for full disclosure:

Kitchen: 5.0
OEM: 3.0
SYS: 20931 v5a
Stock settings, Sprint Carrier

How do I disable the vibration when the hardware keys are pressed? I thought it might have had something to do with the vibration setting in TouchFlo, but that doesn't seem to make a difference one way or another. I hate asking what should be an easy question, but I just can't seem to figure it out.

Thanks!

EDIT: nttdemented, I'm down to test out your ROM!
Make a mxipupdate_file_name.provxml and put this content in and it'll disable after you flash.

<wap-provisioningdoc>
<characteristic type="Registry">
<characteristic type="HKLM\Software\OEM\KeyState" translation="filesystem">
<parm name="KeyVibratorState" datatype="integer" value="0"/>
<parm name="IgnoreUpDuration" datatype="integer" value="0"/>
</characteristic>
</characteristic>
</wap-provisioningdoc>
Reply With Quote
This post has been thanked 1 times.
  #523 (permalink)  
Old 12-03-2008, 11:16 AM
catchacold's Avatar
PPCGeeks Regular
Offline
Pocket PC: Driod Moto
Carrier: Verizon
 
Join Date: Oct 2008
Posts: 99
Reputation: 65
catchacold is becoming a great contributor
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: How To: Kitchens

Trying to map the send button to auto rotate screen in the OEMizer

Tried changing Record Hold to <Rotate Screen> - Gave me a error
Then tried changing Record to <Rotate Screen> - Gave me a random new button in button settings

How do I map this button in the OEMizer?

TIA
Reply With Quote
  #524 (permalink)  
Old 12-03-2008, 12:58 PM
nttdemented's Avatar
Regular 'Geeker
Offline
Pocket PC: HTC Touch Diamond
Carrier: Sprint
Location: Dorado, Puerto Rico
 
Join Date: Oct 2008
Posts: 440
Reputation: 345
nttdemented is becoming a PPCGeeks regularnttdemented is becoming a PPCGeeks regularnttdemented is becoming a PPCGeeks regularnttdemented is becoming a PPCGeeks regular
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: How To: Kitchens

Took me a while to figure that one out but Tobey pointed me to the right Reg Edit and I implemented it in a .provxml file

To keep it together with the Long Press END Key I edited the .provxml file that is inside the Utility - Long Press End Key OEM. Here is how my file looks:

<wap-provisioningdoc>
<characteristic type="Registry">
<characteristic type="HKLM\SOFTWARE\HTC\AutoShortcut">
<parm name="\Windows\Help\Long Press End Key.lnk" value="\Windows\longpressendkey.lnk" datatype="string" translation="install"/>
</characteristic>
</characteristic>
<characteristic type="Registry">
<characteristic type="HKLM\Software\Microsoft\Shell\Keys\40C6">
<parm name="Flags" datatype="integer" value="12" translation="install"/>
</characteristic>
</characteristic>

</wap-provisioningdoc>

The bold part is what sets Long Press Send to Rotate Screen.

I have noticed that using .provxml files is the best way to add registry entries as they are executed after flashing by the Customizations Auto Configuration process that runs on first boot. That way it doesn't conflict with registry settings that are created by default in the Registry hash files by the OS SYS or other OEMs through RGU's or default hash files in the SYS (still not sure where some of the default reg settings come from).

Right now I'm preparing a .provxml file that I'll include in an OEM with my registry entries to modify some things I tend to tweak after flashing like the delay of the call status when hanging up, data connection timeouts, etc etc...

Last edited by nttdemented; 12-03-2008 at 01:05 PM.
Reply With Quote
This post has been thanked 1 times.
  #525 (permalink)  
Old 12-03-2008, 03:17 PM
catchacold's Avatar
PPCGeeks Regular
Offline
Pocket PC: Driod Moto
Carrier: Verizon
 
Join Date: Oct 2008
Posts: 99
Reputation: 65
catchacold is becoming a great contributor
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: How To: Kitchens

Who would of ever thought.........Long Press END -

I searched through reg a million times looking for send - digging and digging
Reply With Quote
  #526 (permalink)  
Old 12-03-2008, 03:54 PM
nttdemented's Avatar
Regular 'Geeker
Offline
Pocket PC: HTC Touch Diamond
Carrier: Sprint
Location: Dorado, Puerto Rico
 
Join Date: Oct 2008
Posts: 440
Reputation: 345
nttdemented is becoming a PPCGeeks regularnttdemented is becoming a PPCGeeks regularnttdemented is becoming a PPCGeeks regularnttdemented is becoming a PPCGeeks regular
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: How To: Kitchens

Quote:
Originally Posted by catchacold View Post
Who would of ever thought.........Long Press END -

I searched through reg a million times looking for send - digging and digging
Heh, the setting isn't IN the Long Press END key, I just decided to add it in there since long press end and long press send are related buttons in my head so I just decided to add it there.

If you want you could add the bold text I hi-lighted to another .provxml file within your own custom OEM folder. Its all a matter of choice. And if you look closely you'll notice the registry key where the change is made, doesn't say SEND anywhere, hence the much appreciated guidance by Tobey who pointed me to that registry setting.
Reply With Quote
  #527 (permalink)  
Old 12-15-2008, 09:09 PM
dynopeg's Avatar
Lurker
Offline
Pocket PC: HTC Diamond
Carrier: MTS
 
Join Date: Oct 2008
Posts: 20
Reputation: 0
dynopeg is a n00b
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: How To: Kitchens

Tried to install diamond kitchen on my Vista pc. It goes to the command prompt screen, then says program has stopped responding and that it needs to close. I say ok, then it jumps to RUU screen.
I had a Titan before and kitchen program running. Do I need to unistall something? Any ideas?

Cheers............Dyno
Reply With Quote
  #528 (permalink)  
Old 12-15-2008, 11:36 PM
gguruusa's Avatar
Deep Thinker
Offline
Pocket PC: Tin Can
Carrier: Atomic Vibration
Location: Mountain top
 
Join Date: Jan 2007
Posts: 3,252
Reputation: 4726
gguruusa should be added to the payroll for their contributionsgguruusa should be added to the payroll for their contributionsgguruusa should be added to the payroll for their contributionsgguruusa should be added to the payroll for their contributionsgguruusa should be added to the payroll for their contributionsgguruusa should be added to the payroll for their contributionsgguruusa should be added to the payroll for their contributionsgguruusa should be added to the payroll for their contributionsgguruusa should be added to the payroll for their contributionsgguruusa should be added to the payroll for their contributionsgguruusa should be added to the payroll for their contributions
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: How To: Kitchens

Quote:
Originally Posted by nttdemented View Post
I have noticed that using .provxml files is the best way to add registry entries as they are executed after flashing by the Customizations Auto Configuration process that runs on first boot. That way it doesn't conflict with registry settings that are created by default in the Registry hash files by the OS SYS or other OEMs through RGU's or default hash files in the SYS (still not sure where some of the default reg settings come from).
On the down side, it consumes extra bytes, delays startup, and still has the opportunity to conflict.

You should learn how things work, or use a kitchen that knows how to address those kinds of issues for you.
__________________
Grammar: The difference between knowing your shit and knowing you're shit.
Reply With Quote
  #529 (permalink)  
Old 12-16-2008, 02:16 AM
ivan1.ruiz's Avatar
Almost a VIP
Offline
Pocket PC: HTC EVO 4G
Carrier: Sprint
Location: Tulsa, OK
 
Join Date: May 2007
Posts: 861
Reputation: 1885
ivan1.ruiz is halfway to VIP status based on repivan1.ruiz is halfway to VIP status based on repivan1.ruiz is halfway to VIP status based on repivan1.ruiz is halfway to VIP status based on repivan1.ruiz is halfway to VIP status based on repivan1.ruiz is halfway to VIP status based on repivan1.ruiz is halfway to VIP status based on repivan1.ruiz is halfway to VIP status based on repivan1.ruiz is halfway to VIP status based on repivan1.ruiz is halfway to VIP status based on repivan1.ruiz is halfway to VIP status based on rep
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: How To: Kitchens

anyone having issues with the sprint digital clock? It seems like the text color is black
__________________
~Ivan~

If I've helped you please remember to
click "THANKS" or click the button. Thanks!
Reply With Quote
  #530 (permalink)  
Old 12-16-2008, 02:52 AM
InvincibleLiving's Avatar
Post Master General
Offline
Pocket PC: White Evo: Myn's TPT RLS5, Stock Kernel
Carrier: The "NOW" Network
Location: Leesburg, VA
 
Join Date: Jun 2007
Posts: 6,464
Reputation: 4222
InvincibleLiving should be added to the payroll for their contributionsInvincibleLiving should be added to the payroll for their contributionsInvincibleLiving should be added to the payroll for their contributionsInvincibleLiving should be added to the payroll for their contributionsInvincibleLiving should be added to the payroll for their contributionsInvincibleLiving should be added to the payroll for their contributionsInvincibleLiving should be added to the payroll for their contributionsInvincibleLiving should be added to the payroll for their contributionsInvincibleLiving should be added to the payroll for their contributionsInvincibleLiving should be added to the payroll for their contributionsInvincibleLiving should be added to the payroll for their contributions
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: How To: Kitchens

Quote:
Originally Posted by ivan1.ruiz View Post
anyone having issues with the sprint digital clock? It seems like the text color is black
sorry, i'm all about the flip clocks now...
__________________
Creator of iLife ROM Series

Best... Member... Ever...
Reply With Quote
Reply

  PPCGeeks > Windows Mobile > WM HTC Devices > HTC Diamond > CDMA Diamond Development


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


All times are GMT -4. The time now is 09:25 AM.


Powered by vBulletin® ©2000 - 2024, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.6.0
©2012 - PPCGeeks.com