Related
Guys/Gals,
Newbie here. I'm trying to modify the sliding panel media homescreen.xml file. My question is more for the general xml programming. Is there a way to include a "plugin clsid" within a "plugin clsid"?
See the attached xml file. There's "CCustomPlugin" section where you can create your own panel. I'm using Good mobile messaging and i want to be able to add the Good mobile email and unread email plugin.
Thanks in advance for your help!
Actually, to add a new panel, you need to add a new dir(name of you choice) in your reg under chome. Under the new dir, copy all of the info from CWelcomeCenter panel into it. Then you can modify all the values(text,picture,url) to what ever you want. No need to change xml except since you have a list of plugins in there(cclock,chome,etc), you need to add it to the list. Once you created the dir, with copied info in it, you could use chome configurator to modify the values(easier).
showaco said:
Actually, to add a new panel, you need to add a new dir(name of you choice) in your reg under chome. Under the new dir, copy all of the info from CWelcomeCenter panel into it. Then you can modify all the values(text,picture,url) to what ever you want. No need to change xml except since you have a list of plugins in there(cclock,chome,etc), you need to add it to the list. Once you created the dir, with copied info in it, you could use chome configurator to modify the values(easier).
Click to expand...
Click to collapse
Thanks Showaco. Does the method you described allow me to add a plugin as well? What i want to do is this. I want to add a panel with a program (exe file). This program also comes with a plugin clsid that shows my online status. So the end product would be an icon, the program name, and my online status. I think the method your prescribed only would allow me to add the program and the description of the program. But not the plugin clsid...
Showaco didn't understand what you're trying to do. Let me explain...
In the homescreen xml file you can ONLY have two plugins (in the sliding panels configuration). One being CHome and another being the 20 pixels at the top. The top plugin can be anything... 99% of the time it's the iconbar, of course. People like rinku have made different plugins that show different information up there, but.. you lose the iconbar. So, to wrape it up, you can replace the icon bar GUID in the XML with your plugin's GUID(and settings) and have it show up at the top. BUT, you lose the icon bar.. and that's a NO NO if you ask me
I gotcha now, I didn't know realtime data involved. The only way I know is to use testuiplugin panel, but it would only work if the info that you want to display is written somewhere in the registry. Does the email program write info to the reg already?
I understand. So you can't have another plugin within CHOME..that sucks and makes what I want to do harder.
What I'm using is Good Mobile Messaging. I assume this program already writes to the registy? It would be perfect if I can just replace the CCalendar with GoodCalendar and CMessaging with GoodEmail.
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
CHECK OUT NEW WEATHER APP & THREAD! (This Thread Retired) ODSHOWeather.CAB (8-07-08)
**Note**Thnx to Rafer,NRG/Z28,Pudgedaddy, Luckybandit!!!
WE HAVE A NEW WEATHER APP!!!! IT IS BETTER AND MORE EFFICIENT
CHECK OUT THE NEW THREAD!!!
Updated: (7-08-2008) ODSHOWeather v1.0.2b (8:37 p.m.)
Please read all instructions before posting. Thanks.
Showaco, I are happy to bring you what will be one of the final installments of the weather panel. I have worked on testing this thing for a while. The new addition is the radar page to the forecast panel. This includes a new app that is included in the cab. It's called Weather Radar. It is located as your right soft key link. Just click it from your phone to set it up. This is a separate app that runs in our panel, but is not required to use the panel at all. I just included this, because it is frickin' sweet. Just input your location and it shows an updated radar image for your area that is updated by the NOAA every 6 minutes. Trust me, if you work outside for a living, this is a godsend.
Like I said, this weather radar app is not part of our weather update or any panels display properties or anything, it is simply a link to a separate (yet related) app. That's all.
With that being said. This radar page is pretty sweet. Follow the instructions below to make sure your clock weather, forecast panel, AND radar are setup properly, before you use this. Hope you enjoy, there are 4 wavs for you to check out as updated voice messages. There are 4 panel borders that you could display. You have an option for now forecast panel (lite version) and an option to display a forecast panel (full version).
Look at the 3rd url below, in it is a zip that you can use to replace your digits in your clock panel. The digits1 are the originals, the digits 2 are the HTC Diamond Font numbers. If you are curious as to what they look like, just search HTC Diamond. Luckybandit posted these, so thanks to him. In order to have these display, just rename either folder to digits and drop it in your \Program Files\Outerdepth\KPWeather folder. They will overwrite the ones you have, but don't worry, I have supplied you with both. They will not completely show up until the forecast panel update has run, so set your fupdate value to 1 in your reg, and then run the update. The location in your reg is HKLM Software\Outerdepth\KPWeather.
Lastly, we do have a banner, so you can also edit your banner's display text. It is located in the options menu as well. It will be displayed in the scrolling texts in your clock panel. ENJOY!!!!!
CHECK OUT SHOWACO'S POST #2!!!!!
Instructions:
1. Download cab from link below.
2. Copy cab to smartphone. Using explorer or Total Commander, click on the
cab. It will install. If you have downloaded the cab before, don't
worry about uninstalling it, it will do all the work itself. That's it. All installations are done.
3. Go to your weather options and set them up. Do all of the options, if you want or expect all of the features to work!!
4. Run Weather Update. It will write your forecast panel and radar. That's it.
Link: Updated (7-07-2008) (8:37 p.m.) 3 Direct Link Downloads !!
URL #1: the ODSHOWeather v1.0.2a.cab NO RADAR
http://mobile.txcaesar.net/mobile/a... Showaco Productions ODSHOWeather v1.0.2a.cab
URL #2: the ODSHOWeather v1.0.2b.cab RADAR FOR YOUR PHONE!!
http://mobile.txcaesar.net/mobile/a... Showaco Productions ODSHOWeather v1.0.2b.cab
URL #3: the extra digits you can replace in your panels!!!
http://mobile.txcaesar.net/mobile/apps/homescreens/DigitsforYourPanel.zip
For our wavs, we have male, female, and even ones for our Latino(a) compadres!!!!
More Links
Here's links to a blackjack site:
http://mobile.txcaesar.net/mobile/m...pic&t=79&sid=a6200f782cbb757e6528f21c4214369a
and a moto q site:
http://www.everythingq.com/forum/software/kp-weather-plugin-for-clock-panel-23881.html
Here's the original 320x240 sliding panel cpr file for anyone who needs it to remove cclock weather and fat panels.
Looks nice! I'll have to try it out soon.
Looks great
The thumbnails look great. I have a couple of questions:
1. Looks like you are using the fat panels. Is it possible to use just a fat panel for this, and slim panels for the rest of the panels?
2. Will you be posting a cab anytime soon that automates the installation?
Thanks.
Great job
Can't wait to load your app on my Excalibur and try it out but I am at work and need to wait until I get home since you do not have a cab file.
Looks great but !!!! Even though I have added quite a few things to my phone your installation instructions are beyond my knowledge.
Step #4? More explanation needed. Are these registry files. Are they exe files? Where do I copy them and how do I run them.
Also, one other thing that I would like you to include. When you include the new option of radar, can we choose our own radar. The local TV station has an great radar screen for mobile phones that I would like to use.
Thank for all your work,
Tim
debabratadey said:
The thumbnails look great. I have a couple of questions:
1. Looks like you are using the fat panels. Is it possible to use just a fat panel for this, and slim panels for the rest of the panels?
2. Will you be posting a cab anytime soon that automates the installation?
Thanks.
Click to expand...
Click to collapse
1. In sliding panels, as of now, all panels must be same size, no exceptions. But if there is interest, it is possible to kinda create the illusion of different size panels using panel backgrounds.
2. We hope to have cab up in a few days.
tf442 said:
Can't wait to load your app on my Excalibur and try it out but I am at work and need to wait until I get home since you do not have a cab file.
Looks great but !!!! Even though I have added quite a few things to my phone your installation instructions are beyond my knowledge.
Step #4? More explanation needed. Are these registry files. Are they exe files? Where do I copy them and how do I run them.
Also, one other thing that I would like you to include. When you include the new option of radar, can we choose our own radar. The local TV station has an great radar screen for mobile phones that I would like to use.
Thank for all your work,
Tim
Click to expand...
Click to collapse
To run the reg files, you need to use a reg editor, I use resco explorer which does a great job but there are others.
As for as radar, It is possible to use custom radar, but that isn't the way we were headed right now. But we will consider it.
thats sweet.....its goin on mine as soon as I get home
The one thing I might like to add it that if you have any issues after uninstalling NRG's Chome Weather , where it gives a whie screen with an error unable to find weather.exe it's because it's still stuck in your notifications queue. Run Sktools and locate your notifications and find the offending notification and check it, then remove it. This will stop that error.
I'm only mentioning this in this thread as to warn others about this possible issue just avoid any confusion that by installing outerdepth's weather app, it does not cause this error.
Locked out of Messaging
After following your directions I am unable to acces messaging on my Dash and there is no weather. Please give more detail on step 4 on how to actually "Run" and reg file. Is it an import?
You're going to have to tell me where to edit the scrolling marquee stuff. I dont see where to customize it.
Nevermind: I found it.... for anyone who wants to know, you have to edit the KPWeather.mscr file in notepad or other text editing software and locate the txt8 value about a little past half way down the page and edit it. then overwite other original .mscr
Update: Where would i go to edit the Condensed Text in the forecast panel. I want to read something else besides CWeatherODSP
Nevermind on update: I figured out how to change the condensed text in forecast panel too.... i'm such an idiot sometimes... was an easy find.
pudgedaddy said:
You're going to have to tell me where to edit the scrolling marquee stuff. I dont see where to customize it.
Nevermind: I found it.... for anyone who wants to know, you have to edit the KPWeather.mscr file in notepad or other text editing software and locate the txt8 value about a little past half way down the page and edit it. then overwite other original .mscr
Click to expand...
Click to collapse
For non weather related additions to text loop, it can be easily added in the loop.mscr as a regwritestring added to bottom of current list.
showaco said:
For non weather related additions to text loop, it can be easily added in the loop.mscr as a regwritestring added to bottom of current list.
Click to expand...
Click to collapse
It would be nice to add that as an option in the weather options .mscr.... other folks may not be saavy enough to use a text editor. It would kinda of "idiot proof' that function
Awesome App
Congrats Outer & Showaco. It's a great app & it works flawlessly. Only suggestion I have is if it's possible to make this for normal panels (I use normal, not slim). I know it's very difficult to put that much of information on this size (and I must say the clock panel looks AWESOME) but my other panels look really fat with too large fonts.
Anyway it's just a suggestion. The app is really cool and I have to say thank you for all your hard work
Cheers
Hey Outerdepth, this is awesome. We're finally going away from CTestUIPlugin. However, after copying my weather script line for line, even down to the directory names and graphics used... I would at least appreciated a little statement that this is all possible because you're using my application But hey....
pudgedaddy said:
It would be nice to add that as an option in the weather options .mscr.... other folks may not be saavy enough to use a text editor. It would kinda of "idiot proof' that function
Click to expand...
Click to collapse
Will be done later tonight, thanks for the input. We will add a user text line that can be edited from options panel.
You may also want to edit the Title on the consensedtitle panel. It currently reads: CWeatherODSP .... which to me doesn't seem to descriptive. I personally changed it to read "7-Day Weather Extended Forecast". that seems a little more descriptive to me. Of course you can do whatever you want to it, but using the title i use or some other variation of what i use may be a little more descriptive.
Slim Panels
showaco said:
1. In sliding panels, as of now, all panels must be same size, no exceptions. But if there is interest, it is possible to kinda create the illusion of different size panels using panel backgrounds.
2. We hope to have cab up in a few days.
Click to expand...
Click to collapse
If possible, I would like the slim panels. I hope that there are others who would want it enough to motivate you to create the illusion you are talking about. Thanks, and waiting for the cab...
Yeah! A Real Weather App
Great job guys and will be even better when you add the "Doppler Radar" with automatic updates. Please use the newly released "Doppler Radar" for smartphones and pocketPC devices, again guys, this is a super awesome job.................!
Hello xda's, altough I'm not that technically savvy, I managed to learn how to create and manage icons to use in creating Chome Configs panels. Thanks to some xda members like Stylez and Nrg for their help so here it goes, and please correct me if I'm wrong.
Find your icon, I like using the icons from www.iconspedia.com, their icons are hardcore and of course hi-res.
The icon size is 22x22 with the highest dpi you can manage. To resize the icons I use Paint.Net(Stlyez ) this program is so ridiculously simple its not even funny, just play with it for a minute and you'll have your icon outputted in no time at all.
Icon Name (like the say, "don't know why it is, it just is" lol)
To have some common factor I use the name Chome in my icons that will be used in my panels ie.
chome_gps_sat_active.png
chome_gps_desat_inactive.png
or you can just name it - icon_sat_active.png and icon_desat_inactive.png but again notice the common factor
I don't know why its sat_active.png and desat_inactive.png but all the icons have to end in that format. Once you have your icons launch Chome Config and create your panel ie. Gps, once you see it go inside and create your 1st page, at the top it says:
Panel Icons:
here you'll follow the aforementioned format including the path of the icons like so:
\Windows\chome_gps_sat_active.png;\Windows\chome_gps_desat_inactive.pg
I highlighted the ";" so you don't forget, if you mess up the icon name or path, you'll end up seeing a red icon with an "x" in the middle, alerting you that something is wrong
The active icon is the icon that will show up when you select that panel and the inactive icon is the icon that will show up when you are not in that panel. If you put the both icons the same, then common sense dictates that the panel will use only one icon for inactive and active views, a lot folks like to have inactive and active icons just to show a little contrast but the choice is strictly yours, and that's why I think this is such a great piece of software, its so configurable yet simple to use once you get the basics. Below are a couple of my icons I used for my Gps panel that holds the following apps: Garmin, Google Maps, Live Search. The little color icon is my active and the bw is my inactive and the original, so you're able to compare the scaled down versions
Well I hope this helps someone and again if some of the more technical members can add some more knowledge, please comment
Good post man, looks like it took some time to do this... So lets keep this post up in order for people to see it and not start new threads asking questions on this topic...
Re: Setting Up Panels
To carry on the subject here is how to set up your CMYApplication the same goes for all panels.
Here is what it look like:
I have set up Opera Mobile
The Red arrow is the name of panel when condensed "not on the panel"
The Blue is the name shown on the top of panel when expanded
The Green is the location of the .exe "program want to open"
The Purple is the location of the picture .png "i place mine on storage card in a folder called PNG"
You may find that page 2 doesn't show as i think there is a bug i have had it on both ROMs hide the page and make a new one to get 20 pages for 20 programs
Hope this helps.
Excellent guys !
stylez said:
To carry on the subject here is how to set up your CMYApplication the same goes for all panels.
Here is what it look like:
I have set up Opera Mobile
The Red arrow is the name of panel when condensed "not on the panel"
The Blue is the name shown on the top of panel when expanded
The Green is the location of the .exe "program want to open"
The Purple is the location of the picture .png "i place mine on storage card in a folder called PNG"
You may find that page 2 doesn't show as i think there is a bug i have had it on both ROMs hide the page and make a new one to get 20 pages for 20 programs
Hope this helps.
Click to expand...
Click to collapse
Nice post man... I like the picture tutorial
Re: Making Panel
Here is a video of me making an Office panel please do not copy my location of the .exe's as they will be different.
But this will show you how to make your own panels
Hope it helps.
YouTube:
stylez said:
Here is a video of me making an Office panel please do not copy my location of the .exe's as they will be different.
But this will show you how to make your own panels
Hope it helps.
Click to expand...
Click to collapse
Looks nice man for sure
jdoggraz said:
Looks nice man for sure
Click to expand...
Click to collapse
I try my best lol just on the up to my Tube, then will post link saves people having to download shame that can embed vids on here, or can we?
I did some searching around, but I couldn't find an answer. Has anyone indexed these panel icons, and the reference numbers for the default? I'm trying to find a panel icon for the myfaves in black and white, so that I can add it to my quick dialer panel. Any thoughts?
stellarvelocity said:
I did some searching around, but I couldn't find an answer. Has anyone indexed these panel icons, and the reference numbers for the default? I'm trying to find a panel icon for the myfaves in black and white, so that I can add it to my quick dialer panel. Any thoughts?
Click to expand...
Click to collapse
There you go.
This is such a good post lol I use it still lol as I tend to keep forgetting 1 or 2 steps...
lol, stylez did a great a job on the video, we should have more of these, how about one for featherweather2, any takers
Nice work I somehow managed to not comment a long while back. I figured some of this out thru trial and error but some of the tutorial actually helps me tinker even more if I want too. It just sucks that one must redo all of it again with a simple flash...
pfunkside said:
Nice work I somehow managed to not comment a long while back. I figured some of this out thru trial and error but some of the tutorial actually helps me tinker even more if I want too. It just sucks that one must redo all of it again with a simple flash...
Click to expand...
Click to collapse
Thanks.
There must be more we can do through walk through edit.cpr? I got a how to change the panel with PE which i could upload but maybe we need a thread deicated to it all?
Blackjack2 you could change the title to something else like Video & Picture tutorials?
Just a thought...
I feel dumb but is there any docs on how to use Chome I cannot seem to figure it out and I don't want to mess anything up.
Thanks!
You're looking at one buddy, just ask and we'll tell you.
This was very helpful, as I was sort of lost. I had the right idea, but some things weren't totally right until the picture tutorial that stylez put together. Thanks so much.
Great job to both of you.
I added a link to this thread in the original CHome Configurator thread.
Opera on panel
Hello,
Ive been trying to add favorites from opera to a panel, is there a tutorial somewhere how to do this ?
I actually have not been able to add Opera mini to a panel but I think this is how I installed Opera mini..I went to mini.opera.com and installed it but to access the application I have to go to start/java/launch opera.. I can find opera in the application list if I use the template for apps in ChromeConfig and it does add it to a panel it just doesnt work lol
So if anyone knows how to get either of those to work would be awesome.
Thanks in advance.
Hey guys,
Thanks a lot for your tutorials but I am still not able to get my icons to show up. The icons on the top bar(_sat_active.png and _desat_inactive.png) show up just fine but it is the individual icons that dont show. This is the case for both my applications as well as my contacts. Any suggestions?
hi,
I have made a simple panel that opens up google maps (only tested on uk rom) But i have only been able to run the program after u press on a button to start up.
Does anyone know the code (html) to make a program autostart on open up?
I have attached the panel for anyone who wants it
ps. this panel should be able to run any software on the phone as long as u have the path to the exe (change code in the source file)
Also is there a way to have a option menu in the panel manager for panels made with the html generator?
Added V2 with autoload
Nice...I'll try it...give you some feedback...care for a screenshot?
Thanks
added pics
the panel manager screen capture did not get the whole screen but u can see it top middle
Great contribution !!
Adding to the panels library
Keep up the good stuff !!
Maybe it will be useful when it can autostart. As it is now, I'd rather have a shortcut to start the program than a panel.
Ganondolf said:
hi,
Does anyone know the code (html) to make a program autostart on open up?
Click to expand...
Click to collapse
<body onLoad="extended://app:start?app=Program Files/GoogleMaps/GoogleMaps.exe">
Edit:
Well, that didn't work at all, so I guess the HTML Panel thingy doesn't support that parameter.
Tried <meta http-equiv="refresh" content="5;url=blah blah"> too, but no go. I'm out of ideas I'm afraid.
yh, i tried lots of different code lines (even tried to add flash code as the new panel manager works with flash in panels) but did not work.
but there must be a way as the over panels auto load.
I have a cab extracter software and going to see it i have extract the panels software and then add my own code to it.
but im not very good with the development side of things
Couldnt you just ask the guys that made the youtube or navigation panel?
Or maybe look at what the code says
dr3minem said:
Couldnt you just ask the guys that made the youtube or navigation panel?
Or maybe look at what the code says
Click to expand...
Click to collapse
had the same idea going to have a close look at the nav panel
Added auto load version to first post
ps. remember to uninstall v1 first