[Problem] Set icons in start menu - Windows Mobile

Hi,
I´ve got an issue that i can´t set an icon to task manager and messages in start menu/settings/System. See the pic below. I use a cab file to apply these icons.

i just make a pkg with my reg entries and pics i want to use at the end of my kitchen. open up your reg with reg editor and see if it looks like this...
Code:
[HKEY_LOCAL_MACHINE\Security\Shell\StartInfo\Start\Settings\cplmain.cpl,1]
"Rank"=dword:000002BC
"Icon"="[COLOR="Red"]\\[/COLOR]Windows[COLOR="Red"]\\[/COLOR]Start_Icon_Lock.png"
notice the \\, it must be that way in registry...a single "\" wont work. also you could try assigning rank, but i dont really think that is necessary for the pic to show.

twopumpchump said:
i just make a pkg with my reg entries and pics i want to use at the end of my kitchen. open up your reg with reg editor and see if it looks like this...
Code:
[HKEY_LOCAL_MACHINE\Security\Shell\StartInfo\Start\Settings\cplmain.cpl,1]
"Rank"=dword:000002BC
"Icon"="[COLOR="Red"]\\[/COLOR]Windows[COLOR="Red"]\\[/COLOR]Start_Icon_Lock.png"
notice the \\, it must be that way in registry...a single "\" wont work. also you could try assigning rank, but i dont really think that is necessary for the pic to show.
Click to expand...
Click to collapse
Thanks for the tip. I made an OEM of my cab to make it easer. This is what reg i have for the task manager, but it dosnt work.
Code:
[HKEY_LOCAL_MACHINE\Security\Shell\StartInfo\Start\Settings\System\cplmain.cpl,30]
"Icon"="\\Windows\\Start_Icon_TaskMgr.png"
EDIT: Btw, how is rank determined? Dont really understand what ""Rank"=dword:000002BC" means..

I'm a noobie so forgive me if I make any mistakes.
But... Try adding some "zzz"s before the package to make it run at the end of the build process. If it still doesn't work, search inside all files (most probably the .provxml files) in your kitchen folder for "Task Manager.lnk" and see if another file is assigning a different icon to it. I use EVK's built in search engine to do jobs like that.
I hope I helped
EDIT: About Rank, icons are ordered from highest to lowest rank values in the start menu. I think "000002BC" is a hex value for the normal integer value that the rank is set to.
EDIT2: WOW! Awesome icons! Did you make them?

seeM_ZA said:
I'm a noobie so forgive me if I make any mistakes.
But... Try adding some "zzz"s before the package to make it run at the end of the build process. If it still doesn't work, search inside all files (most probably the .provxml files) in your kitchen folder for "Task Manager.lnk" and see if another file is assigning a different icon to it. I use EVK's built in search engine to do jobs like that.
I hope I helped
EDIT: About Rank, icons are ordered from highest to lowest rank values in the start menu. I think "000002BC" is a hex value for the normal integer value that the rank is set to.
EDIT2: WOW! Awesome icons! Did you make them?
Click to expand...
Click to collapse
Thanks for the tip. I have the folder to run last in customization. I understand thats its some sort of hex value or whatever, but i dont understand it so i can place the icons where i want them.
The icons are made by dlink ithink.

2BC = 700. The rankings go from 0-999, and most are higher, which is why that one appears on the low side. The easiest thing is to just arrange everything on the phone (drag and drop), then export the entire start menu registry key and just put that into your start menu EXT. I'm not sure exactly how the values vary left to right and top to down.

I heard somewhere that the built in start menu 'drag n drop' messes with the ranks? I'm probably wrong though
I believe the ranks go in this order.. 1 being highest, 8 being lowest. Please correct me if I'm wrong. I hope NRG doesn't mind me butchering his start menu with my awesome paint skills

Hey... i dont think you are patching and i dont think you are trsut sign the cab... or making the image PNG...
but if you are "cooking" you dont need the cab... just make an EXT PKG with the icons ins the "file" folder... and the REGS in "app.reg" file making the path to the image, if you are patching you must to set the image as "read only" simple slash and be sure that CPL is teh correct one... and for the New TEXTMesage be sure you are using the path to.. tmail.exe i couldnt give you my EXT PKG with the paths cause im not in my home right now

+ Que PPC said:
Hey... i dont think you are patching and i dont think you are trsut sign the cab... or making the image PNG...
but if you are "cooking" you dont need the cab... just make an EXT PKG with the icons ins the "file" folder... and the REGS in "app.reg" file making the path to the image, if you are patching you must to set the image as "read only" simple slash and be sure that CPL is teh correct one... and for the New TEXTMesage be sure you are using the path to.. tmail.exe i couldnt give you my EXT PKG with the paths cause im not in my home right now
Click to expand...
Click to collapse
Thanks for the help + Que PPC. The PNG is ok as it works in start menu. Btw, i made a package, instead of an cab. Much simpler to edit. What is the correct CPL for task manager in start menu/setting/System?
I have no clue on CPL or how to determine posistion

Ok i have the stock image for Taskmanager in my startmenu in position #24
Hex = 35A4EBEC
DEC = 900000748
So it seems that in the strat menu you can rank the icons as you want... by this 100 to 900 valu but in settings and for CPL icons the thing is.. they are arranged authomatically by name
(look at the attached image)
and this is the reg for cpl 30
Just this string in: Start menu settings system screen[HKEY_LOCAL_MACHINE\Security\Shell\StartInfo\Start\Settings\System\cplmain.cpl,30]
String value named Icon
with this: \Windows\Start_Icon_TaskMgr.png
BEsure there is the image in windows folder
so... in your EXT pkg it must be like this:
Code:
REGEDIT4
[HKEY_LOCAL_MACHINE\Security\Shell\StartInfo\Start\Task Manager.lnk]
"Rank"=dword:35A4EBEC
"Icon"="\Windows\Start_Icon_TaskMgr.png"
[HKEY_LOCAL_MACHINE\Security\Shell\StartInfo\Start\Settings\System\cplmain.cpl,30]
"Icon"="\Windows\Start_Icon_TaskMgr.png"

+ Que PPC said:
Ok i have the stock image for Taskmanager in my startmenu in position #24
Hex = 35A4EBEC
DEC = 900000748
So it seems that in the strat menu you can rank the icons as you want... by this 100 to 900 valu but in settings and for CPL icons the thing is.. they are arranged authomatically by name
(look at the attached image)
and this is the reg for cpl 30
Just this string in: Start menu settings system screen[HKEY_LOCAL_MACHINE\Security\Shell\StartInfo\Start\Settings\System\cplmain.cpl,30]
String value named Icon
with this: \Windows\Start_Icon_TaskMgr.png
BEsure there is the image in windows folder
so... in your EXT pkg it must be like this:
Code:
REGEDIT4
[HKEY_LOCAL_MACHINE\Security\Shell\StartInfo\Start\Task Manager.lnk]
"Rank"=dword:35A4EBEC
"Icon"="\Windows\Start_Icon_TaskMgr.png"
[HKEY_LOCAL_MACHINE\Security\Shell\StartInfo\Start\Settings\System\cplmain.cpl,30]
"Icon"="\Windows\Start_Icon_TaskMgr.png"
Click to expand...
Click to collapse
Only need to learn hex editing to position the icons then
I´ve tried theese, but none of them works.
Code:
[HKEY_LOCAL_MACHINE\Security\Shell\StartInfo\Start\Settings\System\cplmain.cpl,30]
"Icon"="\Windows\Start_Icon_TaskMgr.png"
Code:
[HKEY_LOCAL_MACHINE\Security\Shell\StartInfo\Start\Settings\System\cplmain.cpl,30]
"Icon"="\\Windows\\Start_Icon_TaskMgr.png"

easyst way - works great in build 23112
hello,
1. hardcodec-items
the easyst way to change the icon, is to going in the sys folder to the directory
\SYS\23112\dpi_192\COMMON\Base_DPI_192\
you find all hardcoded items in this directory (e.g. start_icon_*.png)
give your new icons the same name in your ext directory (oem)
2. customize icons
only what you need to customize icon is the following reg-keys
[HKEY_LOCAL_MACHINE\Security\Shell\StartInfo\Start\Task Manager.lnk]
"Icon"="\\Windows\\Start_Icon_Task Manager.png"
-> this key replace the "task manager.lnk" icon in the root of the startmenue
[HKEY_LOCAL_MACHINE\Security\Shell\StartInfo\Start\Office\Notizen.lnk]
"Icon"="\\Windows\\Start_Icon_Office_Notizen.png"
-> this key replace the "notizen.lnk" (like notice in english) icon in the customize directory "order" in the startmenue
so when you need no ranking is the simplest and fastest wayy i can explain to you...

everal said:
hello,
1. hardcodec-items
the easyst way to change the icon, is to going in the sys folder to the directory
\SYS\23112\dpi_192\COMMON\Base_DPI_192\
you find all hardcoded items in this directory (e.g. start_icon_*.png)
give your new icons the same name in your ext directory (oem)
2. customize icons
only what you need to customize icon is the following reg-keys
[HKEY_LOCAL_MACHINE\Security\Shell\StartInfo\Start\Task Manager.lnk]
"Icon"="\\Windows\\Start_Icon_Task Manager.png"
-> this key replace the "task manager.lnk" icon in the root of the startmenue
[HKEY_LOCAL_MACHINE\Security\Shell\StartInfo\Start\Office\Notizen.lnk]
"Icon"="\\Windows\\Start_Icon_Office_Notizen.png"
-> this key replace the "notizen.lnk" (like notice in english) icon in the customize directory "order" in the startmenue
so when you need no ranking is the simplest and fastest wayy i can explain to you...
Click to expand...
Click to collapse
- I can confirm that this works fine.
- However, this is good for lnk that have direct entry under [HKEY_LOCAL_MACHINE\Security\Shell\StartInfo\Start]. But how to know which cpl index refers to which setting/program shortcut?

everal said:
hello,
1. hardcodec-items
the easyst way to change the icon, is to going in the sys folder to the directory
\SYS\23112\dpi_192\COMMON\Base_DPI_192\
you find all hardcoded items in this directory (e.g. start_icon_*.png)
give your new icons the same name in your ext directory (oem)
2. customize icons
only what you need to customize icon is the following reg-keys
[HKEY_LOCAL_MACHINE\Security\Shell\StartInfo\Start\Task Manager.lnk]
"Icon"="\\Windows\\Start_Icon_Task Manager.png"
-> this key replace the "task manager.lnk" icon in the root of the startmenue
[HKEY_LOCAL_MACHINE\Security\Shell\StartInfo\Start\Office\Notizen.lnk]
"Icon"="\\Windows\\Start_Icon_Office_Notizen.png"
-> this key replace the "notizen.lnk" (like notice in english) icon in the customize directory "order" in the startmenue
so when you need no ranking is the simplest and fastest wayy i can explain to you...
Click to expand...
Click to collapse
The thing is that i dont get the icon that is in SYS, i get the on in the exe. Would not matter if i change it.

Very true i can confirm that... the CPL images for icons in settings system cant be changed... maybe is due to another reg or .ico or other kind of file in oem

+ Que PPC said:
Very true i can confirm that... the CPL images for icons in settings system cant be changed... maybe is due to another reg or .ico or other kind of file in oem
Click to expand...
Click to collapse
Could be.. Probably. I sure hope not

You should convert the rgu files to xml files.
XML always run after the RGU, So its better to use when making custom modification.
http://forum.xda-developers.com/showthread.php?t=369457 (second post)

Th e cpl's are loaded in a provxml in the oem folder (don't remember which one off the top of my head). If it's messing with desired settings, rather than loading another provxml during first boot, and slowing down first boot even more, it's better to either edit or delete the oem provxml. Personally, I'd delete it and then put your start info in an app.reg in an EXT that runs near the end of the build.
Edit: the provxml with all of the cpl's is mxip_HtcApps_translation.provxml, and it's in oem-lang 0409. It's a complete waste to run this thing, imo. Just put it in an app.reg and you'll get a faster first boot.

Sorry but for change icon position in start menu, cant you do it just from start menu moving that icon and then go to the right reg key and export it?
This work for Kaiser dunno if Leo,Tp2 or Topaz has different way.

hi fellow chefs
i post my question here as i thought it would be better then openijng a new thread for it
i keep marketplace in my rom but i cant set it to the internet folder
i have looked in the initflash.dat and there is nothing there about marketplace(at least not that i could find)
i have looked in the sys map from market place and found a provxml
i changed it there the same way i did for taskmanager and it still doesnt work(for taskmaanger it works)
can some one help me out where or what i need to edit to have marketplace in internet folder
i attache my provxml so you can see what i have done

Related

Make themes

Hello everyone...
I just looked for hours...
But can't find a program to make my own theme's for diamond.
I've tried using google, youtube and this forum... iam sure iam missing something,,,,
I understand i shall use Manila editor??? or???
But when iam opening it ... I can't se any pic's i can change...
I really hope someone can help me.. maybe its just in front off my eyes... But then iam totaly Blind.....
-Best regards Dennis
The easiest way is this, and do note themes do not work on any theme with a disattached Manila (for example, TLR ROMs seem to have problems with theming):
Preparations:
- Make a folder on your computers desktop called "Theme", and in it a folder called "My Theme" or the name of your personal theme.
- Connect your Diamond to your computer and copy ALL manila files (files ending in _manila) in the Windows subdirectory of your Diamond to the "Theme" folder on your desktop.
- Download Manila Editor and extract the files to a place where you can easily find it.
- In Manila Editor, press "Select Path" and select the "Theme" directory on your desktop. The program will "parse" the files and you'll see a loading bar in the bottom left.
Modifying:
- The files are now loaded. Browse through the files, and notice they're ordered by category. Also note the "Friendly name" is somewhat of a description as to what each image is. Finally, do note some files do NOT have a description and can be found in the "Unknown" category.
- Select the files you want to modify, and use Export -> Selected -> BMP/JPG/PNG (whichever you prefer). Choose a location to extract the files to.
- Use The Gimp, Photoshop, Paint Shop Pro or your image editing program of choice to edit the files as desired. Use the old file as indicator for placement and size. Save the files under the same name for practicality, or give them a name that lets you easily figure out what each image is.
- When done, go back to Manila Editor and select the items you modified one by one. Each time, click the item, then click "Replace". Select your new image, and click OK. Repeat this as many times as necessary.
- If all files are correctly changed, click Zip -> Zip All. I've found that Zip All gives the least problems on most ROMs. This will create a .zip file, which you can name and save anywhere you wish.
Installing: (Sushilange has confirmed that later versions of Manila Editor will have a "Create Theme" function).
- Rename the .zip file to .theme and copy it to a subdirectory on your Diamond.
- Download, Install and Run Diamond TF3D Config 0.6.7 or higher. Go to the appearance tab and select the "Path..." button. Select the DIRECTORY in which your .theme file is and click OK. Then, from the dropdown list, select the name of your theme (the name of the zip-file).
- Select "Apply'. Take into account you need AT LEAST 20MB of free space on your device, as indicated by the program.
- Select start, wait until it finishes (don't worry if it says something about deleting files), click Finish and let the program restart your Diamond.
Thank you very much...
Perfect explination...'
Thank you . Glad it helps.
Instead of renaming the exported manila files from .zip to .theme, you can also use QuickCab to make a cab file of the exported manila files. Then you don't have to use the Diamond TF3D Config 0.6.7 program.
Advantage is that you can run the cab file and you can easily uninstall your theme. Uninstalling your own theme means that the original manila files wil be restored again. Furthermore it's much more easier and faster to install a theme.
MRE-net said:
Instead of renaming the exported manila files from .zip to .theme, you can also use QuickCab to make a cab file of the exported manila files. Then you don't have to use the Diamond TF3D Config 0.6.7 program.
Advantage is that you can run the cab file and you can easily uninstall your theme. Uninstalling your own theme means that the original manila files wil be restored again. Furthermore it's much more easier and faster to install a theme.
Click to expand...
Click to collapse
Wouldn't uninstalling the theme through Diamond TF3D Config also restore the original theme? That's what happens here, in any case.
but how do you copy manilla files from Diamond to PC ?
it doesnt show Windows directory in Vista on Windows Mobile Device Center ?
Hello There Greg...
Your Going To Wanna Go To MY COMPUTER> MOBILE DEVICE>MY WINDOWS MOBILE DEVICE> Tools>folder Options>view>show Hidden Files And Folders
WHILE IN ACTIVE SYNC MODE
Hope I Helped... Ill Be Looking At The Thread So.... You Can Ask For More Help If Need Be
tha_rami said:
- If all files are correctly changed, click Export -> Export All. I've found that Export All gives the least problems on most ROMs. This will create a .zip file, which you can name and save anywhere you wish.
- Rename the .zip file to .theme and copy it to a subdirectory on your Diamond.
Click to expand...
Click to collapse
You meant "Zip" not "Export"... Export is only the converting-function qtc->png
tha_rami said:
- Download, Install and Run Diamond TF3D Config 0.6.7 or higher. Go to the appearance tab and select the "Path..." button. Select the DIRECTORY in which your .theme file is and click OK. Then, from the dropdown list, select the name of your theme (the name of the zip-file).
- Select "Apply'. Take into account you need AT LEAST 20MB of free space on your device, as indicated by the program.
- Select start, wait until it finishes (don't worry if it says something about deleting files), click Finish and let the program restart your Diamond.
Click to expand...
Click to collapse
No, no! Don't do this! Wait until I added a "Create Theme"-function in Manila Editor. A *.theme-File is not just a Zip-File. You can't use a custom zip as a theme-file.
sushilange said:
You meant "Zip" not "Export"... Export is only the converting-function qtc->png
No, no! Don't do this! Wait until I added a "Create Theme"-function in Manila Editor. A *.theme-File is not just a Zip-File. You can't use a custom zip as a theme-file.
Click to expand...
Click to collapse
I'm just telling what works, but I can't wait until you get that functionality in - sounds good.
And yup, I meant Zip All, will edit now.
tha_rami said:
I'm just telling what works, but I can't wait until you get that functionality in - sounds good.
And yup, I meant Zip All, will edit now.
Click to expand...
Click to collapse
I know that it is possible, that it works But the problem is, if it is not working in some reasons, the noobs are crying and i can't give support ;-)
When I add the feature officially, I can give support
I'd daresay screw them. It's not supported by your application yet, so you have no obligation to make it work for them until making *.theme files is actually supported by the program.
Great program, by the way.
I don't know whether I am asking too much. I want to know if it's possible to turn the big digital clock on the 3D theme to transparent (instead of white opaque color). I wanted to change the background to a photo and the clock occupies half of the screen and always blocks the person's face in the photo.
bbju said:
I don't know whether I am asking too much. I want to know if it's possible to turn the big digital clock on the 3D theme to transparent (instead of white opaque color). I wanted to change the background to a photo and the clock occupies half of the screen and always blocks the person's face in the photo.
Click to expand...
Click to collapse
Try this one
http://forum.xda-developers.com/showpost.php?p=2546236&postcount=584
NisseDILLIGAF said:
Try this one
http://forum.xda-developers.com/showpost.php?p=2546236&postcount=584
Click to expand...
Click to collapse
Wow, NisseDilligaf you are an angel!! I searched the forum for about 2 hours and couldn't find it. This is EXACTLY what I want.
Thanks!!
If I do not want to create a new theme (because I do not know how ) , can I change the png?.
So I change 123213_manila for my icon 123231_manila , Can it works?.
Thank you
Juan w said:
If I do not want to create a new theme (because I do not know how ) , can I change the png?.
So I change 123213_manila for my icon 123231_manila , Can it works?.
Thank you
Click to expand...
Click to collapse
Yep that works. See http://forum.xda-developers.com/showthread.php?t=420423
MRE-net said:
Yep that works. See http://forum.xda-developers.com/showthread.php?t=420423
Click to expand...
Click to collapse
Thank you.
I will try it.
tha_rami said:
The easiest way is this, and do note themes do not work on any theme with a disattached Manila (for example, TLR ROMs seem to have problems with theming):
Preparations:
- Make a folder on your computers desktop called "Theme", and in it a folder called "My Theme" or the name of your personal theme.
- Connect your Diamond to your computer and copy ALL manila files (files ending in _manila) in the Windows subdirectory of your Diamond to the "Theme" folder on your desktop.
- Download Manila Editor and extract the files to a place where you can easily find it.
- In Manila Editor, press "Select Path" and select the "Theme" directory on your desktop. The program will "parse" the files and you'll see a loading bar in the bottom left.
Modifying:
- The files are now loaded. Browse through the files, and notice they're ordered by category. Also note the "Friendly name" is somewhat of a description as to what each image is. Finally, do note some files do NOT have a description and can be found in the "Unknown" category.
- Select the files you want to modify, and use Export -> Selected -> BMP/JPG/PNG (whichever you prefer). Choose a location to extract the files to.
- Use The Gimp, Photoshop, Paint Shop Pro or your image editing program of choice to edit the files as desired. Use the old file as indicator for placement and size. Save the files under the same name for practicality, or give them a name that lets you easily figure out what each image is.
- When done, go back to Manila Editor and select the items you modified one by one. Each time, click the item, then click "Replace". Select your new image, and click OK. Repeat this as many times as necessary.
- If all files are correctly changed, click Zip -> Zip All. I've found that Zip All gives the least problems on most ROMs. This will create a .zip file, which you can name and save anywhere you wish.
Installing: (Sushilange has confirmed that later versions of Manila Editor will have a "Create Theme" function).
- Rename the .zip file to .theme and copy it to a subdirectory on your Diamond.
- Download, Install and Run Diamond TF3D Config 0.6.7 or higher. Go to the appearance tab and select the "Path..." button. Select the DIRECTORY in which your .theme file is and click OK. Then, from the dropdown list, select the name of your theme (the name of the zip-file).
- Select "Apply'. Take into account you need AT LEAST 20MB of free space on your device, as indicated by the program.
- Select start, wait until it finishes (don't worry if it says something about deleting files), click Finish and let the program restart your Diamond.
Click to expand...
Click to collapse
GREAT explanation! Thanx!
bbju said:
I don't know whether I am asking too much. I want to know if it's possible to turn the big digital clock on the 3D theme to transparent (instead of white opaque color). I wanted to change the background to a photo and the clock occupies half of the screen and always blocks the person's face in the photo.
Click to expand...
Click to collapse
You can find many transparent clocks here

[SOLVED] Registry overwrite sequence in EVK

Hi,
I have a problem with setting certain settings when cooking. I simply modified the "c36eeaba-524c-471d-a185-22d12a8c294b.rgu" file in the OperatorPkg folder and changed settings such as notification light, camera superfine settings enabled as well as disabling the htc vibration and hiding some Manila tabs. For some odd reason not all the settings work? The camera settings won't work. The notification settings will only work for missed calls but not messages. The HTC Album setting to close instead of minimise won't work either. What am I doing wrong?
What is the order in which provxml, rgu and other customizations are loaded? It could be that I need to include the settings that are not working in the last rgu or provxml file to run.
Please help. Many thanks in advance
p.s. I checked the settings and they are all correct (no typos etc)
First RGU then app.reg then provxml...
So i guess that if you change the OEM RGU and you have a camera EXT the camera EXT app.reg will rewrite the RGU changes then sadly.. if you change the app.reg any missing and very good hidden provxml will rewrite your app.reg...
Addition process is... XIP - OEM - SYS - EXT every section is arranged alphabetical ascending.
Oh and next time search a lil many times this was discused on tutorials... of course you will not see a tutorial saying.... "order how PKGS are included" or "registry cooking addition"
Help, not sure what I am doing.
I am using kitchen_2.2 for the LG Incite.
I start with a clean kitchen.
I have put the 24001 rom in the base rom/incite directory.
run option:
2 to setup for incite
a,b,c
get [Missing Manifests]
[Missing Manifests]
027dda01-6124-f061-d1ac-17611a584b28.dsm
d92a4f0a-378a-4482-8fd3-bd127a05e4de.dsm
723fb954-d931-4348-b672-82a188e587b5.dsm
3346da5d-3675-4a67-925e-75f623184bda.dsm
5e466818-5df8-5bcb-8373-7b5f918a7e3c.dsm
Then a bunch of moving messagers and finally:
All Done!!!
Now, arrange the folders as needed and copy them into \OEM\INCITE and \SYS\YOURS
YSVERSION
Press any key to continue . . .
There is nothing under \OEM\INCITE and \SYS, so I copy temp\OEM and temp\sys to \
Now I run d, and get Now, arrange the folders as needed and copy OEMXIPKERNEL into \ROM\INCITE\YOURXIPVERSION and everything else in \ROM\SHARED\YOURXIPVERSION
Press any key to continue . . .
But I am not sure what to move. Under ROM i see a shared/21109 directory
I do not see OEMXIPKERNEL. I assume the Yourxipverson should be 24001.
If I continue with e (launch ErviusKitchen), change my device to incite, build 21000, rom version 2.0.00.00, sys build 0409, I see things set to ture and false.
If I select build I get errors. I tried copying dirs to different diretories, but just more errors.
All help apprciated.
Ask in the correct thread bud ¬¬
The tutorial EVK thread
I dont know so much about LG cooking you should ask in the thread for LG in the general forums
In shortly:
Export those keys from the RGU ( copy and paste ),make a txt file named app.reg and put inside the keys.
Go to EXT folder, make a subfolder named ZZ_what_name_you_like, inside this subfolder put the app.reg made before.
This way your setting will be the last to be copied from kitchen and nothing will be overwrite from other .reg, .rgu....but be sure that it will be the last to be cooked, thats why the ZZ or Z or ZZZZ before the name.
Next time make a lill search, this was already spoken many times.
thecrater said:
Hi,
I have a problem with setting certain settings when cooking. I simply modified the "c36eeaba-524c-471d-a185-22d12a8c294b.rgu" file in the OperatorPkg folder and changed settings such as notification light, camera superfine settings enabled as well as disabling the htc vibration and hiding some Manila tabs. For some odd reason not all the settings work? The camera settings won't work. The notification settings will only work for missed calls but not messages. The HTC Album setting to close instead of minimise won't work either. What am I doing wrong?
What is the order in which provxml, rgu and other customizations are loaded? It could be that I need to include the settings that are not working in the last rgu or provxml file to run.
Please help. Many thanks in advance
p.s. I checked the settings and they are all correct (no typos etc)
Click to expand...
Click to collapse
Thank you very much guys for your help the ZZ_settings idea worked a treat.
hey the crater change the thread name to
[SOLVED] Registry overwrite sequence in EVK
please

[SOLVED] Display is missing from Settings -> System

Dear Members,
1. I have lost the icon to access display settings in my cooked roms. Meaning i cannot access the screen alignment or clear type settings. I have tried adding reg below as well:
[HKEY_LOCAL_MACHINE\Security\Shell\StartInfo\Start\Settings\System\cplmain.cpl,7]
"Icon"="\\Windows\\Start_Icon_Screen.png"
Click to expand...
Click to collapse
I cant access clear type settings from manila as well.
2. My HTC Recorder fails to appear in my start menu as well. I have set it to appear under "Multimedia" folder in app.dat. I have checked spelling and the lnk is present in the files folder.
In effort to solve this prob, i have checked initflashfiles.dat and searched all provxml files to see if something is deleting it (used ervius kitchen editor function to search for "Recorder" string under all files and appears to be ok)
Also, i have tried 2 different builds of SYS - both boots up properly but with same problem. Please advice what i could be doing wrong.
Thanks in advance.
Details:
Base: TMOUS 2.13
SYS: 21903 / 21892
SOLUTION - Refer to post 3 by Braakie
nothing seems to be wrong... can you please post what are you using to change the registries.. i guess if you are not using UIA icons you will have some troubles.
tidus18 said:
Dear Members,
1. I have lost the icon to access display settings in my cooked roms. Meaning i cannot access the screen alignment or clear type settings. I have tried adding reg below as well:
I cant access clear type settings from manila as well.
2. My HTC Recorder fails to appear in my start menu as well. I have set it to appear under "Multimedia" folder in app.dat. I have checked spelling and the lnk is present in the files folder.
In effort to solve this prob, i have checked initflashfiles.dat and searched all provxml files to see if something is deleting it (used ervius kitchen editor function to search for "Recorder" string under all files and appears to be ok)
Also, i have tried 2 different builds of SYS - both boots up properly but with same problem. Please advice what i could be doing wrong.
Thanks in advance.
Details:
Base: TMOUS 2.13
SYS: 21903 / 21892
Click to expand...
Click to collapse
1) In your \OEM\LEO\COMMON\OEMDrivers folder, there is a 21b6ed86-a505-4ad7-a4aa-b8bb93c926d9.rgu file with this registery entry, change it from 1 to 0:
[HKEY_LOCAL_MACHINE\ControlPanel\Pen]
"Hide"=dword:0
2) For the HTC Recorder, change your pad in the \OEM\LEO\0409\OEM_Lang_0409 initflashfiles.dat file, search for "VoiceRecorder", and change Tools to Multimedia:
Directory("\Windows\Start Menu\Programs\Multimedia"):-File("Voice Recorder.lnk","\Windows\Recorder.lnk")
ps: This is the English translation, change it in your own language.
details
Thanks guys,
Will recheck the paths and spellings. I have removed all entries in initflashfiles.dat all except the non HTC stuffs and placed it under its respective app.dat in ext folder. Im customizing the location and icon pictures of basic wm stuffs (ie: home, search phone, help,games etc.) using provxmls.
What i have done so far:
1. Copied all these provxmls below to a "zzz_newXML" ext package and edited to new path i want.
mxip_MyPhone_100.provxml
mxipcold_marketplace_100.provxml
mxipupdate_office_100.provxml
mxipupdate_onenote_100.provxml
mxipupdate_projectdefault_a_000.provxml
mxipupdate_RemoteDesktopMobile.provxml
mxipupdate_taskmgr_shell_1.provxml
mxipupdate_welcomecenter_1.provxml
mxipupdate_windowslive_1.provxml
mxipupdate_windowsliveim_1.provxml
Click to expand...
Click to collapse
2. So the original is left untouched in SYS/OEM folder. Provxmls which assigns/resorts icons have been blanked out and placed in "zzz_newXML" files folder to overwrite the default paths so that i can fully control all icons using single provxml.
3. I am using mxipinit_startmenu_001.provxml in XDA\EVK\OEM\LEO\0409\ProjectDefault_A to do start menu rearrangement. All Ext package icons customizations in placed in its respective folders.
My reason for choosing this method is so that i dont have to go to initflashfiles.dat or provxmls in new SYS package whenever i update system builds or add/remove ext package.
I have attached mxipinit_startmenu_001.provxml (from item 3 above) and my initflashfiles.dat if you guys need more details. Please advice if there are any other better/easier way of doing this customization.
Thanks in advance and sorry for the late reply!
Braakie said:
1) In your \OEM\LEO\COMMON\OEMDrivers folder, there is a 21b6ed86-a505-4ad7-a4aa-b8bb93c926d9.rgu file with this registery entry, change it from 1 to 0:
[HKEY_LOCAL_MACHINE\ControlPanel\Pen]
"Hide"=dword:0
2) For the HTC Recorder, change your pad in the \OEM\LEO\0409\OEM_Lang_0409 initflashfiles.dat file, search for "VoiceRecorder", and change Tools to Multimedia:
Directory("\Windows\Start Menu\Programs\Multimedia"):-File("Voice Recorder.lnk","\Windows\Recorder.lnk")
ps: This is the English translation, change it in your own language.
Click to expand...
Click to collapse
Thanks Braakie! Finally found time to rebuild rom with the reg key and that did bring back Screen option in settings. I still couldnt get the recorder right, maybe something wrong with the ext package itself.
I think we can change it to solved now as my main concern was with screen settings.

[SOLVED] Setting time to 24 hour by default on first boot

EDIT: I now have the reg keys I need and am to set both the main screen and start menu. I now just looking to set the time at first boot.
[HKEY_LOCAL_MACHINE\nls\overrides]
"STFmt"="HH:mm:ss"
"ITime"=dword:00000001
The above keys will work after first boot, but not during first boot process.
Any help would be appreciated.
Many thanks
GhostXSeries
EDIT2: Solved issue thanks to caliban2 for giving me the idea!
Found you need all the following reg keys to make it work!
[HKEY_LOCAL_MACHINE\NLS]
"DefaultLCID"=dword:00000809
"SystemLCID"=dword:00000409 - I assume this points to your region?
"LegacyLocaleMode"=dword:00000001
[HKEY_LOCAL_MACHINE\NLS\overrides]
"ITMPN"=dword:00000009
"ITLZr"=dword:00000001
"ITime"=dword:00000001
"STFmt"="HH:mm:ss"
"STime"=":"
Thanks again for your help!
Both backgrounds are set in their corresponding *.cpr file(s). You can either change it there and re-direct it to your image or simply rename your image and over-write the stock WM image.
Reg key for 24 hour:
Code:
[HKEY_LOCAL_MACHINE\nls\overrides]
"STFmt"="HH:mm:ss"
jmart518 said:
Both backgrounds are set in their corresponding *.cpr file(s). You can either change it there and re-direct it to your image or simply rename your image and over-write the stock WM image.
Reg key for 24 hour:
Code:
[HKEY_LOCAL_MACHINE\nls\overrides]
"STFmt"="HH:mm:ss"
Click to expand...
Click to collapse
Thanks for getting back to me so quickly. had a brain wave and renamed one of the wallpapers and then did a search through the registery for that new file name. Found it under
HKEYCU\controlpanel\desktop\wallpaer!
I have been looking for the 24 hour key for ages! Cheers
When I cooked both registery keys into the rom neither worked. Time is still 12 hour and the background screen is still default. Even though when I go in to the desktop registery key the entry is the one I entered
for the time format ...
HkLM\nls\overrides:
12h am-pm
ITime = 0
S1159= AM
S2359= PM
STFmt = h:mm:ss tt
Click to expand...
Click to collapse
24h:
ITime=1
STFmt = HH:mm:ss
Click to expand...
Click to collapse
I'm sorry, I miss understood what you were looking for originally. Are you trying to set a wallpaper for the first boot? If so, I simply just save my wallpaper as a .gif and name it "Default_stwater_480_800.gif" this will vary depending or device resolution.
As far as the clock settings not sticking, make sure that your reg isn't being over-written later in the cooking process.
Edit:
Thanks Poy, I forgot about "ITime"=dword:00000001
jmart518 said:
I'm sorry, I miss understood what you were looking for originally. Are you trying to set a wallpaper for the first boot? If so, I simply just save my wallpaper as a .gif and name it "Default_stwater_480_800.gif" this will vary depending or device resolution.
As far as the clock settings not sticking, make sure that your reg isn't being over-written later in the cooking process.
Edit:
Thanks Poy, I forgot about "ITime"=dword:00000001
Click to expand...
Click to collapse
You were close with the filename. I found out it was HTC_stwater_480_800.jpg. Once I changed that it then set the default background for me. I simply created an ext package and added the new wallpaper with the same name into a files folder and then set the app.dat file to copy it to the windows directory.
Still working setting the time to 24h
GhostXSeries said:
You were close with the filename. I found out it was HTC_stwater_480_800.jpg. Once I changed that it then set the default background for me. I simply created an ext package and added the new wallpaper with the same name into a files folder and then set the app.dat file to copy it to the windows directory.
Still working setting the time to 24h
Click to expand...
Click to collapse
You also can customize (Don´t remember if Titanium or Start Menu´s background) overwritting files "Default_stwater_480_800.gif" & "Default_stwater_800_480.gif" (depends of resolution).
Is not necessary add an app.dat to the package, because all archives inside "files" folder go to windows folder. If you want a copy of these archives in other folders, then you can set app.dat
Greetings
Grand,
Got start menu background working. Now just looking to set the time to 24 hour format. If I make the changes suggested above after I flash the rom it changes, but If I cook reg changes into the rom and flash it stays at 12 hour.
Something must be overwriting your time settings either later in the cooking process or a provxml. OSB has the ability to preview reg, but I am not sure about OSK (it's just been too long)
manila world clock has the option to change time format 24h/12h so maybe something has to be also changed there ...
I think you could be right. There is definitly something on the initial startup is overriding the cooked registery keys.
try cooking without adding any keys to nls, make your changes in regional settings (winmo-settings) and then export complete nls-key, using it in your kitchen next time.
according to osbuilder, nothing in nls-key is set via provxml, only by boot.rgu and the rgu from base_lang_0xxx (in sys). adding your own reg later in cooking-process should overwrite them just fine.
the important part during 1st boot is LCID (=region), which also defines a standard timeformat for the region.
GhostXSeries said:
EDIT2: Solved issue thanks to caliban2 for giving me the idea!
Found you need all the following reg keys to make it work!
[HKEY_LOCAL_MACHINE\NLS]
"DefaultLCID"=dword:00000809
"SystemLCID"=dword:00000409 - I assume this points to your region?
"LegacyLocaleMode"=dword:00000001
[HKEY_LOCAL_MACHINE\NLS\overrides]
"ITMPN"=dword:00000009
"ITLZr"=dword:00000001
"ITime"=dword:00000001
"STFmt"="HH:mm:ss"
"STime"=":"
Thanks again for your help!
Click to expand...
Click to collapse
the stuff in \overrides shouldn't be necessary. i set my region to english (uk) and here is what i get:
Code:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\nls]
"DefaultACP"=dword:000004e4
"DefaultLCID"=dword:00000809
"DefaultOCP"=dword:00000352
"LegacyLocaleMode"=dword:00000001
"SystemLCID"=dword:00000409
[HKEY_LOCAL_MACHINE\nls\overrides]
"LCID"=dword:00000809
"SSDte"="dd.MM.yyyy"
this gives me 24hr-clock and the crazy date-format you guys use on your island.
while playing with this i noticed that region-settings in manila add lot's of keys in \overrides, while winmo-settings does it's stuff in \nls (except the LCID in overrides).
(nevermind the "SSDte", that key i use for setting date-format on lockscreen.)
[QUOTE
[HKEY_LOCAL_MACHINE\NLS]
"DefaultLCID"=dword:00000809
"SystemLCID"=dword:00000409 - I assume this points to your region?
"LegacyLocaleMode"=dword:00000001
[/QUOTE]
Hello mate,
just to correct you:
"DefaultLCID" points to the region, not "SystemLCID"
Best Regards!
Skyguar

[Q] osKitchen Leo 31.4 base today icon start menu

I use osKitchen 1.33.5 with an WWE base leo image 3.14 rom for the HD2
In my kitchen I have been able to change all the start menu icons so they can be added purely by clicking a button in oskitchen. There is one icon I have left on the start menu that I can not seem to get.
I am trying to find the entry for the today icon so I can remove it and add as an app.dat entry in the build. I have done some recearch and all I can find is that the reference to the today icon seems to be in the shellres.192.dll file stored in the Base_DPI_192 folder in the OS.
I am not sure how to modify this and remove the entry. I then also need to create an app.dat file that will allow the user to add back in to the rom if necessary.
Any help would be appreciated.
Cheers!
You can't delete "Today" icon from start menu, especially via app.dat/initflashfiles.txt, as it is hardcodded. Perhaps there is a way to hide it via registry, don't know.
Start_Icon_Today.png
I don´t sure what you want. You can use the icon you want and rename it. If you want delete it perhaps you can use a .provxml like the one in HTC Messaging Client. You can delete the link you want usin the formule of the .provxml in the directory of the .xml
Regards
Im actually looking to see if I can have the option of not having the icon there at all? In my kitchen, you can choose the icons you want in the start menu simply by clicking them.
It then copies the .lnk file into the start menu by using an app.dat file. I was looking to see if this could be done for the today icon.
why not just replace the Start_Icon_Today.png ?
What I've done was, I put a folder in EXT (EXT Packages in osKitchen) called Theme, then inside that folder, I have a new folder called "StartMenu_Icons" (Am using Firestorm icons btw)
folder structure was like this:
Sources
--Devices
----HTC <my device>
------EXT Packages
--------Theme
----------StartMenu_Icons
------------files
--------------and all Start_Icon_<name>.png
am not sure if that's what you're trying to do
What I am looking to do is to give the user the option to include the today icon simply by clicking a button with in oskitchen. I have been able to do this with all other start menu icons but it doesn't seem possible to do it with the today icon as it seems to be hard encoded

Categories

Resources