How To: Customize the Sliding Panels Homescreen - HTC Excalibur

This was from the windows mobile team blog. More to follow but wanted to post it for those who don't read that.
Original link: http://blogs.msdn.com/windowsmobile/archive/2008/06/03/customizing-the-sliding-panel-homescreen.aspx
Customizing the Sliding Panel Homescreen
from Windows Mobile Team Blog by Jorge Peraza
Hi, my name is Jorge Peraza; I am a Developer on the Windows Mobile team that was responsible for the new “Sliding Panel” home screen in Windows Mobile 6.1.
When we were working on the visual style and functionality of the home screen we tried to make something that looked both professional and appealing while still showcasing all the information the user is going to need to know what’s important and requires attention. While I think the default design looks really cool, we added some customization features to enable users to make it their own.
Customizing the layout
The home screen layout can be modified using the same home.xml file from previous versions of WM, the schema of the file was extended to allow the customization of many of its elements, this includes the art assets that are used for most of the plug-ins.
When you open the SlidingPanel.home.xml file (inside \ApplicationData\Home) you will find the plug-in element that corresponds to the sliding panel home screen (its CLSID is {E9267CAB-02EE-4f37-8216-6BF6A8FF5A71}). All the child elements inside it are designed to tweak and customize the way the home screen will look.
The top level element is the plugins tag, this has one attribute called “Order” and it’s used to list the plug-ins that will be shown and the order they are going to be laid out on the screen.
The built in plug-in names are:
1)CClock – The big clock
2)CAppointments - The calendar plugin
3)CHome – The notifications plugin
4)CMyPhotos – The photos plugin
5)CMessage – The message center (this is off by default on all sliding panel built in layouts.
6)CMusic – The music plugin
7)Settings – The settings plug-in
8)Custom Plugin – Users can specify custom plug-ins with static content that can be displayed on the home screen.
For example, the XML snippet bellow moves the photos plug-in to the first position and enables the message center (which is turned off by default on both "Sliding Panel" and "Sliding Panel Media")
<plugin clsid="{E9267CAB-02EE-4f37-8216-6BF6A8FF5A71}" name="Bronze" height="266">
<Plugins Order="CMyPhotos;CClock;CMessage" />
</plugin>
There are many other ways of customizing the home screen using the plug-in settings like overriding the default images or even adding your own custom plug-ins that display static content, I'll post and updated entry latter on on how to do this in detail but for now, you can use the provided home.xml files to start experimenting with this.
The notifications plug-in and message center
In the sliding panel home screen, the notifications plug-in by default serves as a dual-purpose notifications/gateway to all you phone/message accounts where every page represents one account (so, if you have multiple notifications in one category they will be shown as one summary page).
There is however an alternative behavior where individual notifications are added as independent pages (Similar to what the T-Mobile shadow home screen does) and the plug-in only shows accounts that have new notifications in them. One cool feature of this alternate behavior is that each individual notification can be dismissed without having to leave the home screen.
You can enable this alternative behavior by setting the following registry key to a value other than 2 (The actual value indicates how many pages of each notification type will be added to the home screen before collapsing them into a summary page. We have tested 2 and 5 but feel free to experiment with other values)
[HKLM\Software\Microsoft\Chome\Chome]
PageCollapseThreshold: DWORD
Note that this prevents you from being able to access the email/phone account data if there are no notifications for it. If you still want to be able to do that you can always re-enable the message center as described in the previous section as a separate plug-in.
There is one more behavioral change you can make that allows you to “dock” the condensed view of the first plug-in to the top of the screen when it is not active, we added this for people like me that want to have the clock always visible. To enable just set the following registry key to “1”
[HKLM\Software\Microsoft\Chome]
DockOperatorBar: DWORD
Advanced layout modification
There are even more advanced things you can do to further tweak the look of the home screen but it is unsupported by Microsoft at this moment so you’ll have to experiment on your own J (Hint, look at the following files \windows\CHome_240x320.cpr and \windows\CHome_320x240.cpr).
----------------------------------------------------------------------------------------------------
Thanks to djNutz for posting this information & OrganicM for his efforts.

I wanted to create a post with info about what the different keys do in the CHome section of the registry. So, I'll start with a brand new one, that I bet nobody knows about....
[HKLM\Software\Microsoft\Chome\Chome]
PageCollapseThreshold: 2 or 5 (DWORD Value)
This will collapse your Notifications panel to only show active notifications. You can enable this alternative behavior by setting the following registry key to a value other than 2 (The actual value indicates how many pages of each notification type will be added to the home screen before collapsing them into a summary page. 2 and 5 were tested and work pretty well.
More to come of course....

should this change be made to the security section too, or does that matter? actually, do changes to the security section ever matter, cause they seem to apply even when you only edit the software section.
p.s.
i'm pretty sure people are gonna ask, so maybe i'll save some trouble instead of looking like an ass by answering preemptively. This DWORD value must be created with your registry editor, it's not already there, at least on ricky v24.
2 = default or normal (i assume cause it looks the same as before) and 5 = condensed.

But for the rest of us who don't have the time to be on every WM blog and forum at once here's my favorite:
To “dock” the condensed view of the first plug-in to the top of the screen when it is not active, set the following registry key to “1”
[HKLM\Software\Microsoft\Chome]
DockOperatorBar: DWORD
This is so you can have the clock always visible, no matter which panel you're on. You could also set it so that CHome Weather's compact view is always on top. Whatever plugin is first on the list.

More info from MS coming down the pipe:
We can get the day of the week on the clock plugin at the top of CHome by doing this:
Replace this portion...
<!-- Date --> <Text ID="Date" Left="180" Top="83" Width="110" Height="19" FontFamily="Segoe Condensed" FontSize="9" FontStyle="Bold" Wrap="False" HorizontalAlignment="Left" Trimming="EllipsisCharacter"></Text>
With this!
<!-- Date -->
<Text ID="Date" Left="180" Top="83" Width="110" Height="19" FontFamily="Segoe Condensed" FontSize="9" FontStyle="Bold" Wrap="False" HorizontalAlignment="Left" Trimming="EllipsisCharacter"></Text>
<Text ID="Day of Week" Left="65" Top="83" Width="110" Height="19" FontFamily="Segoe Condensed" FontSize="9" FontStyle="Bold" Wrap="False" HorizontalAlignment="Right" Trimming="EllipsisCharacter"></Text>
I will incorporate this in Chome Weather fore sure!

Here you go, the first is my Home
2nd is Scroll Down once
3rd is Scroll Down twice
4th is Scroll Down Thrice
heh
Edit: Tried Month in cpr, no luck.
will keep trying

I'm glad people are finally getting this information out. It makes customization that much easier. I'm adding the tips to the wiki as well, as they come out.

How to Reload the Homescreen
I have two questions:
1. After editing my CHome cpr file, how do I reload the homescreen without having to reboot the device?
2. How can I show any text on the clock panel? Regular text is defined by Text ID = "xxxxx", where xxxxx is something like Time, Network Name, etc. However, suppose I want to have the text "Knowledge Rules", how do I set it up in XML?
I have very little programming and Excalibur experience. So, I apologize if these questions are too naive or have been answered before.
Thanks a lot in advance.

you can use this if you dont use OrganicM Chome Weather

I don't think Microsoft has put out much documentation on the sliding panels plugin yet. Most of the CHome configurations use
Code:
TextID="text 1"
as the delimiter for static text. But that's not to say that the clock plugin will recognize that as a valid section. Could work. Could make your phone useless.

beartard said:
I don't think Microsoft has put out much documentation on the sliding panels plugin yet. Most of the CHome configurations use
Code:
TextID="text 1"
as the delimiter for static text. But that's not to say that the clock plugin will recognize that as a valid section. Could work. Could make your phone useless.
Click to expand...
Click to collapse
I do not understand. How do I make the phone know that:
text 1 = Knowledge Rules?
Typical syntax seems to be Text ID = "xxxx", where xxxx is a variable name, which is recognized by the device. If Text 1 is a valid variable for the device, how do I assign it a value? Am I rambling here?

No, you're not rambling. As far as the information coming from Microsoft and disseminated here on this site goes, it's a best guess right now.

someone at msdn blog asked the same question.
Someone at msdn blog asked the same question. Let's wait to see if we get an answer from there...
From http://blogs.msdn.com/windowsmobile...ustomizing-the-sliding-panel-homescreen.aspx:
"Jorgeba, thanks for taking the time to educate your user. I have some questions.
How do you change the text in the condense clock? The .cpr file has Text ID="Text 1". How is "Text 1" define? I would love to add the date to the condense layout.
The ActionURL and Softkey2 URL in the Appointments plug-in always open calendar in the today view. Is there a way to make one of the button opens calendar in the month view? Setting the default view for calendar does not help."

Easy as pie......
If you know what you are doing.
If you have any xml experience,then you'll know how to adjust x and y values to position things in different places. Yes, you can do that. Just change x=whatever and y=whatever to where you would like them to be. Just know this means that it will start on the left and move x pixels over and y pixels down. If you put in negative values, it will shift them in the opposite direction.
Eg. x=-whatever will move it to the left vs a + value which will move it to the right. Same for y=
Also, you can adjust the valignment and halignment to center, left, or right.
Have fun with these. They apply to everything in your cpr (That's the layout for your homescreen.It's in your \Windows directory on your phone).I mean everything, from where your network displays, right down to your pictures.
That's it. Have fun!
jaymit said:
Hi,
Sorry Im kind of a newbie :s, is it possible to edit home screen panels? I wanted to change the layout and look of the clock plugin.
Thanks!
Click to expand...
Click to collapse

Does anybody know how to change font color for certain panels or certain lines of text in the panel? Is it only possible for the whole homescreen?

As far as I know even as far as old xml coding works, you can only change a font color for a selected word or unselected word. Meaning, if you have the old 6.0 your plugins that are selected could have a different color, but unselected could be another color. This applied to the entire homescreen. I have not seen different colors for different plugins, since each panel style is basically its own plugin (each has its own unique GUID), then I doubt you can change font color for each plugin. You can more than likely only change the active selected panel and inactive panel fonts. I am not sure what their titles are in the cpr, but I know that in the old 6.0, the homecolor was one of the fonts colors and the other was called something else.
Eventhough this is 6.1, it doesn't look like much has changed as far as the fonts color goes. You could, however, always try adding a "fontcolor=" command in the cpr and a hex code and try it, to see if it works.
Hope this helps.

Edit your registry or get CHome Config
Both do the same thing. You want to change the plugin order for CHome. It's located in HKLM\Security\CHome\Default Settings and in HKLM\SOFTWARE\Microsoft\CHome. Edit the order you want your plugins to go. Reboot your phone and the new edits should be reflected in your homescreen layout. If you are having trouble cause this is new. Just search this thread for CHome Configurator. It's stickied at the top of this forum. Download it and it will let you select the order in a much easier way. Make sure you reboot, though, or else your changes won't show. Hope this fixes your problem. Later.
tae-xda said:
How to change the default location for where the CMyPhotos plugin
Click to expand...
Click to collapse

rollingondubs1 said:
I have that already, All my games are under a folder which i cant make it as a action url
Click to expand...
Click to collapse
try this
"ACTIONURL" = "\Windows\Start Menu\Games\xxxxx xxxx.lnk
or this
"ACTIONURL" = "\windows\fexplore.exe; \windows\start menu\games"

Yes you can
One last time, I think I've figured out how to help you.
1. Open Chome Config.
2. Scroll to MyApplication and select it with your center button.
3. Scroll to any page you want to edit. Then scroll down to where it says ActionURL. Press menu.
4. Once in the menu select the "1 Change URL" item.
5. Once you have selected that it will take you to a file explorer. Go to \Windows\Start Menu\Games. This is where your games should be. If not, then wherever you store, your games, navigate yourself to that folder and select the file you want.
I think this should cover it. Hope this solved your problem. HOLLA!!!!
rollingondubs1 said:
I have that already, All my games are under a folder which i cant make it as a action url
Click to expand...
Click to collapse

How to change the location of CMyPhoto to \Storage Card\My Documents\My Picturs

Related

Chome Weather 2.0 - "The fun continues..."

The other thread was getting a little large, plus we have a new version out.
Here's Chome Weather 2.0 with a 10 day forecast. Download the cab and enjoy, more detailed instructions to follow.
1) Install the cab in the link at the bottom of the post.
2) It should ask to reboot ! Press "Ok"
3) Go to your Start Menu and find "Weather Options", or go down to the Settings slide on your homescreen and the second slide will be the CHome Weather options slide.
Set your Zip / Location Code to your zip code if you're in the US or a "location code" if you're anywhere else (ex: ROXX003 for Bucharest). More info on finding your specific code is here http://developer.yahoo.com/weather/#req . Set the "Fahrenheit / Celsius" option to either "F" or "C" (without the quotes!). This will only affect the reading of the current conditions panels, not the text descriptions in the forecast panels. Those will always be in Fahrenheit.
Specify how often you would like to autoupdate the weather information, in minutes in option #3. It's set to 60 by default and I would not recommend seting it any lower, as that's how often Yahoo updates the information on their servers anyway.
Specify whether you would like the application to attempt to connect your default GPRS connection first, before updating. If you have a constant data connection on, leave this on "N". Finally you can turn off the autoupdate feature with the last option #7.
4) Now it might be a good idea to go to Start and find "Update Weather" and run it to update the weather data! Alternatively you can click the center button while you're on any of the forecast panels.
5) The cab should set your Home Screen to "Sliding Panel Top Bar + Weather!" automatically. If your top icons disappear then you might have to use the regular "Sliding Panel + Weather!" theme.
6) Enjoy and report any bugs you might encounter, please.
New features:
- Regular sized icons for the forecast panels, they do not affect other "welcomecenter" based panels.
- Revised layouts to ensure correct wrapping
- HomeScreen update feature. No need to reboot to see forecast or layout changes. This option is turned off by default because it doesn't work for everybody. If you turn it on and you see problems with your phone's radio turning off, phone becoming very slow etc... turn it off. (it's option #10)
- Added new panel to the Settings panel at the bottom for easy access to the weather updates and settings.
- "Spil icons" are default for forecast and regular panels.
Screenshot descriptions:
1- IPhone Layout (this is the default layout)
2- Forecast Panels screenshot
3- Slim Panels Layout with the background options enabled
4- HTC Slim Layout while updating
5- HTC Slim Layout in normal mode
6- The HomeScreen with the weather plugin in its "condensed" state at the bottom, showing current conditions
7- Regular Panel Layouy with no background.
8- IPhone Slim Layout
Download link > http://www.sendspace.com/file/0f8g23
Vox Version > http://www.sendspace.com/file/rxa13k
Look at post #3 to complete the installation for Vox phones. (or any other phones that will not install the regular version)
Current Version: 2.0.3
Changes to 2.0.3:
- completely redesigned Options panel. Hopefully things will be easier to get around. Now it tell you what the current layout used is.
- Fixed HTC Layout (5) text not wrapping down issue.
- Added option NOT to check for internet connection before connecting.
- Options panel keeps track of what layout you're running.
- added blue, purple, WM7 style or original glass panel selection to options panel.
- updated portrait CPRs.
- forecast panels should now display "N/A" icons when a forecast is not available instead of a red x.
- ability to choose between european("rest of the world pretty much...) or american style dates on the forecast panels.
If you like this application and feel the need to support my work, here's a link to donate to me via PayPal.
PayPal Donate
This is the "addons" post.
Added "NRG Power Key..... .cab This will add three options to the menu that comes up when you hit the power key on the side of your Excalibur. "Power off", "Reboot" and "Weather Update". I hope they're self explanatory Have fun.
Download the Calibri font mod if you want your system font to look like the one in the screenshots.
The Yahoo, Spil, Novaweather and 7Degree icon sets are alternative icons sets for your Forecast and Regular and Slim Panel layouts
Also using this post to keep a list of TO DO's since I always forget:
- Better autoupdate logic. *DONE*
(got rid of "weathertimer.mscr" and using the phone's notification queue... will beta test this over the next couple of days)
- Checking whether on a call, when going to update the weather info. If on a call, exit and run 10 minutes after... and so on... *DONE*
- Make option menu that lets the user chose how many pages of forecast info they can see.
- Move PNGs to storage card. Create two separate cab's for installation. Maine program and Icon packs
- Add second or third panel with more "current weather information" details. *IN PROGRESS*
Files needs to complete the VOX installation are attached. Install the Vox cab above, then unzip Vox Windows.zip and drop all the files in it in the \windows directory on your device. Install weathertimer.mscr in \windows\startup.
OrganicM said:
The other thread was getting a little large, plus we have a new version out.
Here's Chome Weather 2.0 with a 10 day forecast. Download the cab and enjoy, more detailed instructions to follow. To list some new features:
- Regular sized icons for the forecast panels, they do not affect other "welcomecenter" based panels (too much ).
- Revised layout to ensure correct wrapping
- HomeScreen update feature. No need to reboot to see forecast or layout changes. This option is turned off by default, so you need to go to Options, and turn it on. (it's #10)
- Added new panel to the Settings panel at the bottom for easy access to the weather updates and settings.
- "Spil icons" are default for forecast and regular panels.
Download link > http://www.sendspace.com/file/saqzxb
Click to expand...
Click to collapse
POST OBSOLETE
Final version? wooot!!
Edit: i just installed the update....its way better than the beta, of course, the only problem im still having are the icons.... the CLinks icons are still oversized and still have no idea where to edit them ... any help would be appreciated
LOVE IT!!!
Compared it to weather.gov accurate also.
This is KICK ASS
installing cab file now... didnt have the first version, dont know why. i live in virginia beach, va and its supposed to be one of the most climate changing places in the us... ill let you know how it turns out.... judging by your pics and everyone elses responses its gonna be tits
Good Job just one question.. when i go to the weather thing on my home screen i have 1/10 options to scroll thru what do they all represent? theres no dates or anything... can you explain?
Amazing........
Hi Org,
It looks and works great, even my distorted icons are back to normal, a biggggg thanks for all your efforts and your patience with all of us demanding more stuff..........
Whoa...okay. Just disregard this whole post guys. Let this be a lesson to you--work with your program for at least 15-20 minutes before reporting bugs. I feel ridiculous for not dabbling with this before crying wolf! My bad, Org!
axv91 said:
Final version? wooot!!
Edit: i just installed the update....its way better than the beta, of course, the only problem im still having are the icons.... the CLinks icons are still oversized and still have no idea where to edit them ... any help would be appreciated
Click to expand...
Click to collapse
You can edit the size of the icons in the .cpr files. Look in program files\NRG\chomeweather\cprs and edit the cpr that you are using(they're all in there). Doesn't make sense that clinks is oversized and weather is smaller, if that is case, can you upload copy of your current cpr that you are using(in windows\home.cpr.xml I think)? I would like to see something before you edit it. And after you edit, goto weather options and rechoose your layout to activate new cpr.
yea... umm.... not sayin its a bad thing, but my color icon bar at the top went back to black and white, and it wont show saturday and sunday, then skips from tuesday to saturday of next week... maybe i did something wrong?? but i could see the setup option text either... all in all i like it
turned the autoupdate off... maybe im just havin problems with it... im usin ricky's 23rd rom. im about ready to take this weather off cause i like the whole forcast thing, but not when it jumps from tuesday to saturday...
1) the last day is still on the second tab on the panel.
2) the text is still cutoff
showaco said:
You can edit the size of the icons in the .cpr files. Look in program files\NRG\chomeweather\cprs and edit the cpr that you are using(they're all in there). Doesn't make sense that clinks is oversized and weather is smaller, if that is case, can you upload copy of your current cpr that you are using(in windows\home.cpr.xml I think)? I would like to see something before you edit it. And after you edit, goto weather options and rechoose your layout to activate new cpr.
Click to expand...
Click to collapse
i was actually looking at the cpr in the \windows, i totally forgot about the cprs in the program files .... btw, i forgot to mention that im using a 240x320 device
so maybe that's why it didn't change text/icon size (i'll upload the cpr file anyway for u to see).... thank u vry much for the help, i really appreciate it!
http://www.sendspace.com/file/jky0kj
slater87 said:
yea... umm.... not sayin its a bad thing, but my color icon bar at the top went back to black and white, and it wont show saturday and sunday, then skips from tuesday to saturday of next week... maybe i did something wrong?? but i could see the setup option text either... all in all i like it
Click to expand...
Click to collapse
Sounds like mine... Mine skips Sunday, June 1st on the forecast panel.
what to do syntaxx??
slater87 said:
what to do syntaxx??
Click to expand...
Click to collapse
No clue! lol That's why I posted my issue along with yours--hopefully Org will work on this!
im removing the whole program now... sorry, but the thought is there. its just not workin out for me... maybe when the 3.0 thread comes out
oh, tryin to uninstall and it says it cant be completely removed... looks like im reflashin tonight
could be the operator and not the program tho... o well, the options text is too small and way too cursivey for me to read...
slater87 said:
im removing the whole program now... sorry, but the thought is there. its just not workin out for me... maybe when the 3.0 thread comes out
oh, tryin to uninstall and it says it cant be completely removed... looks like im reflashin tonight
could be the operator and not the program tho... o well, the options text is too small and way too cursivey for me to read...
Click to expand...
Click to collapse
Before reflashing, try to install the weather .cab again. I had this problem with an older version and I just downloaded another over it--and SOMEHOW it uninstalled the whole thing! Try other methods before reflashing. It can be a headache to get your settings the way you like them again.
so let me get this straight.. just run the cab file again? and everything should go peachy?

MyFaves icon went red-X

I'm sorry to do this. I'm just burnt out on searching today. The icon on my MyFaves panel (the five circles icon) decided to go AWOL today. All the icons appear to be intact in the Windows directory. What do I have to edit to get rid of the damned red "X"?
Only thing I've done differently was update CHome Configurator and CHome Weather. I'm not blaming them since they really don't deal with the icon. I just can't think of anything else I've done.
Go to HKLM\Software\Microsoft\CHome\MyFaves and edit the iconpaths location to where your pic is. The first pic in iconpaths is when your window is active and the second pic location is when your window is inactive. Your pic is probably in your \Windows directory. Hope this helps
(just in case I wasn't clear, here's a capture)
I gotta get off this thing for the night.
the iconpaths key has the value "4605;4604".
What does that translate to?
beartard said:
the iconpaths key has the value "4605;4604".
What does that translate to?
Click to expand...
Click to collapse
Do you have the My Fav icons in your windows folder?
if yes, then change the link in the iconpaths to the MAIN "my fav" icon in both reg address'
In the brozeres.dll, the picture files for iconpaths are predefined (meaning they are preloaded, so you don't have to do jack to have your screen be complete).
You can change their paths to whatever you want and that image will replace what the bronzeres.dll days that iconpath should be.
So if you want your active icon to be a color image of My faves icon , and your inactive to be a black and white image of the same, then it would look something like this:
iconpaths:
\Windows\youractiveimagename.png;\Windows\yourinactiveimagename.png
Just make sure whatever image you replace IS located in the place you entered in your registry. It's that easy. Takes like 5 minutes, just type in location drop pics in location (if not already there) and reboot or run your weather update and reload homescreen (might have to change layout, not sure about that). That's it.
I owe you a beer.
One day, my friend.
Oh sure he gets the beer but i dont?
Fine next time ill write a page long way of fixing your issue. lol
Hell, get us all together and the first round's on me.
A clue, perhaps?
beartard said:
I'm sorry to do this. I'm just burnt out on searching today. The icon on my MyFaves panel (the five circles icon) decided to go AWOL today. All the icons appear to be intact in the Windows directory. What do I have to edit to get rid of the damned red "X"?
Only thing I've done differently was update CHome Configurator and CHome Weather. I'm not blaming them since they really don't deal with the icon. I just can't think of anything else I've done.
Click to expand...
Click to collapse
Okay, the MyFaves pics on the collapsed panel are now X's on my phone.
The pics/icons in the expanded panel are fine.
I believe I have found a clue:
Thinking it might reset the collapsed MyFaves pics/icons panel, I
thought I would change the home screen to something else, reboot, then
change it back and reboot again.
But the home screen layout wouldn't change! So I scrolled through the
home screen settings and discovered duplicate fields on the settings
page for "Home screen layout" and a couple of other fields.
If I changed the layout in the second occurrence (or both occurrences) of
the "Home screen layout" field then the change would occur, but not if
I changed it only in the first occurrence of the field.
Oddly enough, sometime over the weekend the duplicate fields
disappeared but collapsed My Faves panel still displays the X's
rather than miniature pics/icons MOST of the time. Occasionally a
single mini-pic will appear, not always the same one.
Obviously something about the Home Screen settings has become
corrupted.
Here's where maybe XDA developers can help. I'm thinking that the various
home screen layouts must be templates into which a user's unique
settings are imported.
For example, you and I (and everyone else) have identical templates
for, say, the "T-Mobile default" layout. Our unique settings (My
Faves people and icons/pics, Weather app city, etc) are properties imported into the template before (or as) it is displayed in the panel. If someone could find out what file(s) comprise the "T-Mobile default" template, someone
might be able to either tell us how to fix the corruption or post the uncorrupted template file(s) copied from another Dash phone.
Now, while online with my Dash to Tmo this past weekend through Web2Go
I came across a support screen that listed support for "missing
MyFaves app". Unfortunately that link led nowhere (dead). Now I can't even find the page, but obviously T-mo does recognize a missing MyFaves app as an issue, so it may be possible to restore our missing icons/pics to the collapsed MyFaves panel by reinstalling the MyFaves app.
I'm not sure this is relevant, but this occurred after a couple of aborted attempts to install Opera, then Mini Opera. Eventually I got Mini Opera installed.
Distinguished XDA developers, I know many of you think the MyFaves app is useless but some people like having it, so any help that you can provide is greatly appreciated!
-GoJ

NRG Weather 3.0 - "The pretty version..."

Here's Chome Weather 3.0 with a 10 day forecast. Download the cab and enjoy.
1) Install the cab in the link at the bottom of the post.
2) It should ask to reboot ! Press "Ok"
3) Go to your Start Menu and find "Weather Options", or go down to the Settings slide on your homescreen and the second slide will be the CHome Weather options slide.
Set your Zip / Location Code to your zip code if you're in the US or a "location code" if you're anywhere else (ex: ROXX003 for Bucharest). More info on finding your specific code is here http://developer.yahoo.com/weather/#req . Set the "Fahrenheit / Celsius" option. This will only affect the reading of the current conditions panels, not the text descriptions in the forecast panels. Those will always be in Fahrenheit.
Specify whether you would like the application to attempt to connect your default GPRS connection first, before updating. If you have a constant data connection on, leave this on "N". Finally you can turn off the autoupdate feature with the last option #7.
4) Now it might be a good idea to go to Start and find "Update Weather" and run it to update the weather data! Alternatively you can click the center button while you're on any of the forecast panels.
5) The cab should set your Home Screen to "Sliding Panel + Weather!" automatically.
6) Enjoy and report any bugs you might encounter, please.
New features:
- New 6 day forecast layout (layout #7)
- Autoupdate using Yahoo's server time. No manual control over update interval anymore.
- Revised layouts to ensure correct wrapping
- HomeScreen update feature. No need to reboot to see forecast or layout changes. This option is turned off by default because it doesn't work for everybody. If you turn it on and you see problems with your phone's radio turning off, phone becoming very slow etc... turn it off. (it's option #10)
- Added new panel to the Settings panel at the bottom for easy access to the weather updates and settings.
- "Stardock icons" are default for forecast and regular panels.
Screenshot descriptions:
1- IPhone Layout (this is the default layout)
2- Forecast Panels screenshot
3- Slim Panels Layout with the background options enabled
4- HTC Slim Layout while updating
5- HTC Slim Layout in normal mode
6- The HomeScreen with the weather plugin in its "condensed" state at the bottom, showing current conditions
7- Regular Panel Layout with no background.
8- IPhone Slim Layout
Download link > http://www.sendspace.com/file/4mh11j
Vox Version (Currently still at 3.0.1) > http://www.sendspace.com/file/0bie7d
Current Version: 3.1
Changes in 3.1
- Rearranged the order the various subroutines run.
- Fixed autoupdate issue.
- Removed HTC icons and background PNGs from the cab. Please download them separately from the addons post if you plan to use those layouts.
- Added option to show extended forecast panels on the homescreen or not.
- Added detection routine to detect if your phone's keypad is locked and NOT to update the homescreen is that's the case. Should help with the "Phone - Incoming" message problem that's been reported
- Edited some CPRs for better alignment
- More verbose status messages
- Etc...
More to come soon. The next version will update your clock panel with current conditions info. Just wanted to get this update out of the way first.
Changes in 3.0.1:
- Added 6 day forecast layout.
- Autoupdate feature based on Yahoo server's time.
- Small bugfixes, revised Options panel.
- Compressed PNGs.
- Complete portrait support for the new 6 day layout.
- Background used in screenshots included in .cab.
Changes to 2.0.3:
- completely redesigned Options panel. Hopefully things will be easier to get around. Now it tell you what the current layout used is.
- Fixed HTC Layout (5) text not wrapping down issue.
- Added option NOT to check for internet connection before connecting.
- Options panel keeps track of what layout you're running.
- added blue, purple, WM7 style or original glass panel selection to options panel.
- updated portrait CPRs.
- forecast panels should now display "N/A" icons when a forecast is not available instead of a red x.
- ability to choose between european ("rest of the world pretty much...) or american style dates on the forecast panels.
If you like this application and feel the need to support my work, here's a link to donate to me via PayPal.
PayPal Donate Link
DO NOT install this to the storage card. It will not work that way!
p.s. Portrait support is included for the new 6 day layout.
p.s.s. The cab seems to take a few minutes to install, especially if you're installing over 2.0.3. So just be patient I guess...
Update to 3.1
Only install this if you have 3.0.1 or 3.0.2 installed. Otherwise, download the cab in the sendspace link above and install the whole app.
This is the "addons" post.
Added "NRG Power Key..... .cab This will add three options to the menu that comes up when you hit the power key on the side of your Excalibur. "Power off", "Reboot" and "Weather Update". I hope they're self explanatory Have fun. Take note your wireless manager might be gone, or might act erracticaly. If you have problems, just install the cab. Don't post in the thread about it, there's nothing I can do about it.
Download the Calibri font mod if you want your system font to look like the one in the screenshots.
The Yahoo, Spil, Novaweather and 7Degree icon sets are alternative icons sets for most of your layouts and extended forecast panels
Most of the icons sets install as a one time installation application. Which means you will not see it in the "uninstallable" list of program under "Settings". Once you run the cab, it will overwrite whatever icons are installed and that's it...
Reserved... the last one.. I promise
Looks niiice i will be testing on Portrait (tornado)
Good Job
So far so good on my Q9c. Last version had to be uninstalled due to a couple of crashes. The worst being when I plugged into the computer the home screen crashed and would not recover after a reboot.
Like the new layout.
Formatting on QVGA
Incredible progress!
I've attached two SS's from my QVGA, using your layout #9 (Standard 6 day which is only 4 day by the way). As you can see, the bottom Temps are not lined up in either F or C and I looked at the CPR, but it is like Greek to me... I see "Bottom Temps" but fiddling and restarting gives me either to the Right or Left - I don't suppose there is a GUI for modding these CPRs is there?
Can you assist in getting it all lined up?
Thanks and keep up the GREAT work! Expect some more PayPal coming your way!
The new layout looks beautiful. The one thing i might suggest: You may want to add an option in advanced options to turn off the 10 day forecast. Since it appears that im going to be using this 6 day testpluginui ( and several others will be too) they may not want or need the additional 10 day forecast panel.
I personally know how to disable it via the registry, but others may not. Secondly, If that option is de-selected, if you can also put in the weather.mscr file to not update that panel, so that way the weather updater runs a little faster.
Edit: I also think that today's Hi/Lo under the city needs to be removed. Its kind of redundant info, since the same info is located in the 6 day forecast located in the first day of the 6 day forecast.
This will also allow more room for lengthier weather condition names.
Damn,
Free service is at full capacity, hope someone can mirror it later.....
I'm anxious to try it
I installed on my Q9c and I still get that font issue with large text boxes in PIE, however, I'm willing to put up with it at this point since the 6-day layout means I don't have to reboot the phone to see the latest forecast.
Any idea what might be causing the font issue? Since this weather panel is basically just scripts reading XML files and making registry changes, I can't imagine that it'd be too hard to figure out what's causing the PIE font issue. The font issue isn't a huge deal and I'd completely ignore it if it weren't for the fact that the digital font makes no differentiation between upper and lower case and many special characters just show up as boxes.
I dumped the 10-day panel and added a link to the Weather Update in my links panel if I ever decide to manually update the weather.
Dees_Troy said:
I installed on my Q9c and I still get that font issue with large text boxes in PIE, however, I'm willing to put up with it at this point since the 6-day layout means I don't have to reboot the phone to see the latest forecast.
Any idea what might be causing the font issue? Since this weather panel is basically just scripts reading XML files and making registry changes, I can't imagine that it'd be too hard to figure out what's causing the PIE font issue. The font issue isn't a huge deal and I'd completely ignore it if it weren't for the fact that the digital font makes no differentiation between upper and lower case and many special characters just show up as boxes.
I dumped the 10-day panel and added a link to the Weather Update in my links panel if I ever decide to manually update the weather.
Click to expand...
Click to collapse
It may be the chome_320X240.cpr file in your /windows directory. When you load a layout. his program pulls .cprs from the chomeweather directory and replaces your original chome_320X240.cpr file ... you may uninstall. copy over your chome320X240.cpr file do your PC's desktop and open it and whatever .cpr file you use for the weather layout and compare the differences.
Glad you guys like it. I'm sorry the portrait guys are still experiencing issues, like the misalignment of the bottom temps. However, the issue needs to be taken care of in the weather.mscr file, not the cpr file. I think I will switch to png rendering of the bottom temps instead of relying on text handled by the plugin. It's just not reliable at all and the temps are always a little misaligned....
Look for 3.0.1 at the end of the day... LOL
pudgedaddy said:
The new layout looks beautiful. The one thing i might suggest: You may want to add an option in advanced options to turn off the 10 day forecast. Since it appears that im going to be using this 6 day testpluginui ( and several others will be too) they may not want or need the additional 10 day forecast panel.
I personally know how to disable it via the registry, but others may not. Secondly, If that option is de-selected, if you can also put in the weather.mscr file to not update that panel, so that way the weather updater runs a little faster.
Edit: I also think that today's Hi/Lo under the city needs to be removed. Its kind of redundant info, since the same info is located in the 6 day forecast located in the first day of the 6 day forecast.
This will also allow more room for lengthier weather condition names.
Click to expand...
Click to collapse
I was gonna say EXACTLY what you just said. lol.
pudgedaddy said:
The new layout looks beautiful. The one thing i might suggest: You may want to add an option in advanced options to turn off the 10 day forecast. Since it appears that im going to be using this 6 day testpluginui ( and several others will be too) they may not want or need the additional 10 day forecast panel.
I personally know how to disable it via the registry, but others may not. Secondly, If that option is de-selected, if you can also put in the weather.mscr file to not update that panel, so that way the weather updater runs a little faster.
Edit: I also think that today's Hi/Lo under the city needs to be removed. Its kind of redundant info, since the same info is located in the 6 day forecast located in the first day of the 6 day forecast.
This will also allow more room for lengthier weather condition names.
Click to expand...
Click to collapse
I second that, the testui pluig in is enough for me, I already remove the welcome center because is no need to get it on the screen, anyway it looks besutiful, great work......
Great work as always, man. Amazing how you fit so much information in such a small place.
Personally, I'm sticking with the NRG Slim layout for now. Going for the "less is more" effect
Whats Vox version and how do i get my NRG Colored panels with the 5 day forcast like on PIcture 4?
pudgedaddy said:
The new layout looks beautiful. The one thing i might suggest: You may want to add an option in advanced options to turn off the 10 day forecast. Since it appears that im going to be using this 6 day testpluginui ( and several others will be too) they may not want or need the additional 10 day forecast panel.
I personally know how to disable it via the registry, but others may not. Secondly, If that option is de-selected, if you can also put in the weather.mscr file to not update that panel, so that way the weather updater runs a little faster.
Edit: I also think that today's Hi/Lo under the city needs to be removed. Its kind of redundant info, since the same info is located in the 6 day forecast located in the first day of the 6 day forecast.
This will also allow more room for lengthier weather condition names.
Click to expand...
Click to collapse
Point taken. I will remove the "hi -lo" in the top left corner and make enabling the welcome center an option
Excuse me for the question, but will this app work on regular WM6, or it only works with WM 6.1 Chome?
No chances to have a version for WM6?
luckyland said:
Excuse me for the question, but will this app work on regular WM6, or it only works with WM 6.1 Chome?
No chances to have a version for WM6?
Click to expand...
Click to collapse
this app is specifically written for the sliding panel homescreen. The sliding panel homescreen is only available on the WM 6.1 platform. So no. it does not and will not work on the WM6 interface
I've got the shakes...
Oh man... I SO wanna download this and "finagle" while I'm here at work, but I'll need to edit my cpr and it's too cumbersome trying to do it from the phone (instead of on my PC desktop). Blast! My love for boldened titles hinders me from enjoying this .cab this instant! lol

[TUT] A mini-tutorial on rearranging the Manila Home Screen

Rearranging the Manila Home Screen​
What do I need to know?
Manila uses few types of files: qtc, xml, mode9 and lua. First one is for graphics, second usually for different languages (although not only) and the two last ones are the ones we are interested in. Mode9 files contain information on position, visibility and other properties of almost every element on Manila tabs. Lua files contain different functions, used for animations, updating info and so on.
For editing the Home Screen we need the mode9 file - 1c684cd8_manila and the lua script - 25d04412_manila. You can find these files (from each Manila, starting from 1.0 and ending on 2.5) on this forum.
What tools do I need?
Editing mode9 files is quiet easy. You just have to run m9editor, open the file, make the changes you want and save it. Changing stuff in lua scripts is a bit more complicated, as you have to decompile it. Shorter scripts are easily decompilated by luadec, but some longer ones require us to correct errors. Fortunately, the lua script we have to change is easily decompilated (though there can be a problem with the if condition). To do this follow these points:
- copy luadec.exe and luac.exe to the folder you where you have the lua script (let's say it's c:\compacthome\mod\)
- press Windows Logo + R (or Start > Run) and type cmd
- go to the folder containing the lua script (in this case it's cd \compacthome\mod\)
- type luadec script_name > script_name.txt - where script_name is the script you want to decompile (for example 25d04412_manila) and script_name.txt is the name of the output file, which we will edit
- in case of errors you have to correct them (look for the lua decompiling tutorial by sztupy)
- once you have the script decompiled you don't need to do it again.
- open the output file and change whatever you want
- to compile the file just type luac -o script_name script_name.txt, where script_name is the file we want to have the script_name.txt compiled
What can I change?
When you open the mode9 file we want to edit, expand the tree and you'll see many sections called 'Object'. Below them there are few lines called 'Property'. What you can easily change is:
- Position - just change the value of X and Y (center position (X=0, Y=0) and axis are different for most of the objects - you have to test this)
- Visibility - True or False (sometimes you may have to change the size of a image to 0x0, so that it won't show never)
- Font
- Font Size
- Color of text in RGB format - if Property is not available, add it
In the 25d04412_manila script you can change positions of many objects in both portrait and landscape mode.
- TabsLeft - left part of the clock (animated)
- TabsRight - right part of the clock (animated)
- clock_tabs - background of the clock (pile of tabs)
- alarm_clock - alarm info and date
- NotifiCamera3D - notifications & appointments
- NotificationShiftY - shifting of appointments when changing to small clock
To change the position just modify the first two parameters of Vector3(X, Y, Z) - both CameraPosition.value and LookAtPosition.value.
How to save and test the changes in a fast way?
Open a cab creator (for example WinCE Cab Manager) and add the files you changed to /Windows. Save the cab, copy it to your device, install and reboot Manila. You can also copy manually the file, but I prefer the first way, because in case of any problems you can easily uninstall the cab and get the default Home Screen.
How to get the Home Screen working with Background4AllTabs?
Just open the 1c684cd8_manila file by m9editor, look for 'HomeBackground' and delete the whole paragraph which contains it (from <Object>Type="Group" to the next <Object>Type="Group").
- - -​
If you have any suggestions, propositions or ideas, please write them in this thread, I'll try to complete this tutorial, so it will be useful for everyone. Thanks!
i cannot come up with suggestions, but that tutorial is very nice on your side!
Although not actually about the home screen arrangement. I do think we need the information on how to patch the EXE for weather and especially non-HTC devices to be made public. The few people that know how to do it don't seem to want to SHARE that knowledge, which is damned frustrating!
Kamill, what an excellent idea. I'm looking forward to your tutorial. I wonder will it be for Manila 2.0?
Here are some ideas:
Change touch flo colour
Appointments for at least one week
Linking big clock with another application (similar to Ssmaho)
Changing soft keys names/applications
Changing font sizes/types
Changing date formats on appointments
I hope this doesn't make it too difficult (I think the second one is though for some Manila versions!)
UPDATE in first post - an early version of the mini-tutorial.
FloatingFatMan, unfortunately I don't know how to do it...
mitsi, thanks, I'll work on that.
Kamill, My question is what needs to be changed to get appointments in dates after tomorrow to appear? Do I need to edit both the mode9 and the lua script? Or is it just one of those? I'm willing to get my hands dirty to fix it.
The easiest way is to get the files from hallatore's mod for Manila 2.0 and compare them to the original. There are mainly 3 differences, you'll find them for sure. AFAIR all you have to change is in one script, you have to add an option to display the date, change the place from where appointments are being taken (poomappointments(TAB_Calendar) instead of poomappointments(TAB_Home)) and change the number of appointments in the for loop.
Hmm. Well I changed the TAB_Calendar and added the option to to display date. Those were easy. Finding the loop is harder. I forced A loop to go 5 times and I got 5 calendar events, but the ones past tomorrow were the default ones in the mode9 ("Review design comp (Dan's office)"). I did it in the InitializeFullAnimation function just below this if statement:
Code:
if l_15_15 > 5 then
l_15_15 = 5
end
So those items are not being updated from the calendar. Any ideas? Am I looking in the wrong loop?
Anyway you can post hallatore's mod de-compiled? I think I have the original, but when I use m9editor the lua has a lot of decompiled errors.
Here you go. Are you doing this on the Manila 2.1? I tried so many things to get this working, but with no success
how to change home tab
Hi, I have read all the posts here and in some other threads related, and I'm still confused
I did try to install the cabs posted, and it totally messed my home tab, so I had to hard reset every time (because uninstalling didn't fix it up).
All I want to have is this:
1. move the alarm notification on the upper-right corner (to cover or remove the ATT logo)
2. make the Call History to auto-hide if there is no missed call (or to delete it, if it is easier)
3. have more appointments visible (2-3) with the big clock, and to be able to flip the clock upwards in order to have even more appointments visible
4. when I click on the appointment, to open the Calendar (this is already possible, and I'd like to remain this way)
I apologize if this is a silly question: is this possible to be done only by editing some manila files, and if so, which ones and what should I modify?
I opened some manila files (e.g. 1c684cd8_manila) using notepad and m9editor.exe, and, honestly, I had no clue as to what should I do
I am sure that you guys know this stuff already, and it is very easy for you. If it's not complicated to explain it to me, please help me!
thank you very much
Kamill said:
Here you go. Are you doing this on the Manila 2.1? I tried so many things to get this working, but with no success
Click to expand...
Click to collapse
Thanks. I am trying for Manila 2.1. There's gotta be a way.
tatarasi said:
Hi, I have read all the posts here and in some other threads related, and I'm still confused
I did try to install the cabs posted, and it totally messed my home tab, so I had to hard reset every time (because uninstalling didn't fix it up).
All I want to have is this:
1. move the alarm notification on the upper-right corner (to cover or remove the ATT logo)
2. make the Call History to auto-hide if there is no missed call (or to delete it, if it is easier)
3. have more appointments visible (2-3) with the big clock, and to be able to flip the clock upwards in order to have even more appointments visible
4. when I click on the appointment, to open the Calendar (this is already possible, and I'd like to remain this way)
I apologize if this is a silly question: is this possible to be done only by editing some manila files, and if so, which ones and what should I modify?
I opened some manila files (e.g. 1c684cd8_manila) using notepad and m9editor.exe, and, honestly, I had no clue as to what should I do
I am sure that you guys know this stuff already, and it is very easy for you. If it's not complicated to explain it to me, please help me!
thank you very much
Click to expand...
Click to collapse
Here is the solution to all 4 requests, but it is for Manila 2.0, so be careful. Back-up first just in case. Your screen will then look similar to the one shown.
Been trying...
I've been trying for some time now to get more than today's and tomorrow's appointment's displayed in manila 2.1. I added in the code that Hallatore added (can be found in stupy's lua thread) but there seems to be something limiting the amount of days shown ahead (I hope is not limited by the manila.exe, but I think not).
As additional info, the lua file that use to be embedded in the Home.mode9 isn't any more and is named 53cc1e4f_manila for 2.1 manila and 652ae0f4_manila for 2.5 manila,
12
mitsi said:
Here is the solution to all 4 requests, but it is for Manila 2.0, so be careful. Back-up first just in case. Your screen will then look similar to the one shown.
Click to expand...
Click to collapse
This is exactly what I'm after.
Unfortunately, I tried that alternative and, again, it totally messes my TFLO, and I had to hard reset again.
What do you mean by Manila 2.0, is this the TFLO version (in Settings, I see that I have ver. 3.0 build 29946)?
thank you
Change Home tab display
Hi, thank you very much for your interest and trying to give me solutions for my request. It is amazing how people from different corners of the world are connecting and helping each other.
I presume that the file to work with is 1c684cd8_manila.
I opened that with m9editor 3.3.0.1. It's a lot of info there
Could you guys be so kind and give some clues as to what should I look for in order to change:
- the alarm notification - to move it on the upper-right corner
- the carrier logo - to delete it
- the Call History - to delete it
- the Appointments - to have at least 2-3 shown
Also, important clues as to what NOT to touch, in order to
- continue to be able to flip over the big clock
- continue to be able to open the Calendar when click on the appointment
thank you again
tatarasi said:
- the alarm notification - to move it on the upper-right corner
Click to expand...
Click to collapse
Change the X and Y in the 'Position' Property of these objects: AlarmClockOn, AlarmClockOff, AlarmTime.
tatarasi said:
- the carrier logo - to delete it
Click to expand...
Click to collapse
To the object 'OperatorLogo' add a property called 'Visibility' and change its value to False - if it won't work change it's height to 0 in the 'Size' property.
tatarasi said:
- the Call History - to delete it
Click to expand...
Click to collapse
The same as above, objects: MissedCall_SBar1, MissedCall_SBar2, MissedCallIcon, MissedCallText.
tatarasi said:
- the Appointments - to have at least 2-3 shown
Click to expand...
Click to collapse
You need to decompile the 53cc1e4f_manila script and find l_15_0.MaxShowCount and change the value of it to the desired one.
Kamill said:
You need to decompile the 53cc1e4f_manila script and find l_15_0.MaxShowCount and change the value of it to the desired one.
Click to expand...
Click to collapse
If only it was that easy... I've been trying all kinds stuff including what you suggest above. I have decompiled the 53cc1e4f_manila I'll attach it here (it's the one from yozgatg's r1.5),
12
I mean you CAN change the number of appointments, but in a range of 0 to 6 (5 with big clock). I've tried to get more appointments shown, but I failed...
Kamill said:
Change the X and Y in the 'Position' Property of these objects: AlarmClockOn, AlarmClockOff, AlarmTime.
To the object 'OperatorLogo' add a property called 'Visibility' and change its value to False - if it won't work change it's height to 0 in the 'Size' property.
The same as above, objects: MissedCall_SBar1, MissedCall_SBar2, MissedCallIcon, MissedCallText.
You need to decompile the 53cc1e4f_manila script and find l_15_0.MaxShowCount and change the value of it to the desired one.
Click to expand...
Click to collapse
Hi, Kamill,
Apologize for double posting, I am growing impatient feeling that I am so close to a solution
Regarding the Manila, I checked where you told me to, and I found out that I have TFLO 3D 1.2.37896.1_1813.6. Thank you.
Thank you for your advices, I already tried to remove the logo
- first, I added the <Property> Name=Visibility Value="False" - did not work
- then, I changed the Height=0 - still ATT was there
- lastly, I deleted the entire Object GLESSprite2D (which was above the "OperatorLogo" property - still no result
What do you think I am doing wrong?
Speaking of the number of appointments, I amazingly discovered that I do not have 53cc1e4f_manila file. What do you think that means?
thank you very much, again
Manila 1 is a bit different from 2.0 or 2.1, the 53cc1e4f_manila script is embedded in the 1c684cd8_manila mode9 file (one of those at the beginning).
AFAIK you can replace the logo file with a blank one (don't ask me which file is it, I don't know ). Or you can try to add a 'Position' property and move it out of the sight (but it may come back in some situations) - though I do not guarantee it'll work.
I hope you'll success in modifying the Manila 1 homescreen, I guess there is still a couple of people who use that version of TF3D.

[APP] PIE Night mode

I found some registry entries in my new HTC TP2 phone where can I set Pocket Internet Explorer default color scheme:
HKCU\Software\Microsoft\Internet Explorer\Settings
Now I wrote a small app, that can change this values, provide me an easy way to change IE color to night mode. (black background, white text, orange links)
Note 1.
This settings can't force IE to night mode. Only works on "color settings free" simple websites. I use http://www.skweezer.com to filter and speedup the webpages that I usually read, see screenshot.
Note 2.
I don't see this registry values in older IE's. Application cheks that the keys are exists. In this case probably things will work. If the keys doesn't exists I think this app is not for your ROM. However you can use custom stylesheets, but this is another story.
Note 3.
Don't forget to restart IE after you change color settings!
Note 4.
Yes, I have many ideas: Switch based on light sensor, time etc. Automatically restart IE... I can do it later.
This is way better than doing it manually <g>
Great application! Working smoothly on my HTC Diamond 2 WM 6.1
Thank you for sharing it here!
Currently I'm using this (save as a ~) text file (shortcut *.LNK) so I have an standard Icon for your (currently) Iconless application ;
Code:
60#"\Windows\PIENightMode.exe"?\Windows\sktools_icons.dll,-177
Download sk-tools their old icon set here; http://s-k-tools.com/sktools/sktools_icons.zip
By the way, before applying your application for the first time I used PHM RegEdit to export my previous settings;
Code:
[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Settings]
"Text Color"="0,0,0"
"Background Color"="255,255,255"
"Anchor Color Visited"="128,0,128"
"Anchor Color"="0,0,255"
Screenshot;
I look forward in seeing you develop this neat application!
Thanks again
wish there was similar for Opera 10
Senax:
I didn't know Sktools iconset. Now I saved on my device to later use, great idea thank you!
Yes I don't like iconless applications too, so in the next release I will draw a nice icon. ;-)
And I will correct the "DAY mode" registry entries about "Anchor Color Visited" value. 255,0,255 was a mistake by me.
Bobzero:
Earlier I studied Opera's config, (about:config) and as I remember Opera can use user stylesheets.
If it's true, I can do it! User stylesheet is a better way to do night mode, because it will work on the original webpages not just Skweezer.net filtered pages. It's ture for IE too. I will try to make it!
Thank you for your responses!
Hope I can make next version on next week.

Categories

Resources