Related
I would like to know if it possible to sort the today screen plugins.
I know how to change the order the plugins show on the today screen.
But I can not change the date position.
I would like to put the date plugin a few spaces under but its greyed out.
Does anyone have a patch or reg hack for that?
Goto the following menu,
Start>Settings>Today, then click the "Items" tab at the bottom of the screen. Here you can highlight the plugin you want to move and move them up or change their options.
ampda said:
Goto the following menu,
Start>Settings>Today, then click the "Items" tab at the bottom of the screen. Here you can highlight the plugin you want to move and move them up or change their options.
Click to expand...
Click to collapse
Thanks for your help.
But I know how to change that but its that the option DATE you cant move down.
Either its on top or its disabled but you cannot move it downwards...
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
** version 5.3 available now! **
Information:
You no longer need to uninstall previous version(s) before installing the latest version!
If you have AppToDate you can use that to update the application to the latest version!
This requires .NET compact flash 3.5!
This supports Windows Mobile 6, 6.1 and 6.5.
Supported resolutions are 240x320, 320x320, 240x400, 480x640 and 480x800 in both portrait and landscape modes.
Downloads are in post 2 or you can use AppToDate to update it.
If you create your own language files please upload them to this thread so I can include them with the application!
Upcoming:
Add language support for configuration utility and save/open/browse dialogs. Currently only the main application supports alternate languages.
Possibly adding price information option per item (this would toggle-able by a setting).
Possibly adding finger gesture recognition for different things.
Possibly adding SMS support.
Possibly adding Today plugin.
Possibly add D-pad support.
Version 5.3:
New features:
Shopping Cart Companion - You can use this tiny application to easily create and manage lists (both standard and master lists) from your PC and transfer them directly to your device.
Fixes:
Optimized code greatly for larger lists. Opening a large list, e.g. 40 items per tab over 3 tabs opens in 5 seconds instead of 30. This has a huge impact on older / slower devices.
Version 5.2:
New features:
Shopping lists now have the typical elastic rebound effect when a list is scrolled beyond the beginning or end of a list.
Fixes:
The position of a shopping list no longer automatically scrolls to the top of the list if you click an entry that is below the "first page" of the list.
Version 5.1:
New features:
Save As menu option for new lists.
New setting to save a new list automatically.
New option under Settings/General/SIP. Show automatically when entering: Enabled, Enabled in Portrait Only, Disabled.
Fixes:
Exporting all marked items of a master list to a regular list doesn't work when using "mark all items".
Exiting from the master list without saving or anything says that the user tried to save the masterlist as a regular list.
Various errors with save dialogs not appearing and files not being saved.
Version 5.0:
NOTE: You will have to uninstall the previous version because of the name change! Otherwise you will have both applications installed!
New features:
Landscape for all supported resolutions. This is currently only within the main application screen, not the settings screen, save/open screens, etc.
New initial GUI upon start of application (enabled or disabled by a setting)- a "home" screen with more intuitive quick-launch buttons to access application features.
New option on long-press-hold over an item - copy item text to input field.
Language files included have been updated with the new entry above and need to be translated. When you do, please upload them to this thread.
A new setting to prompt a user to overwrite an existing saved cart rather than just doing it.
Application will be renamed to "Digicast Solutions' Shopping Cart" from "cRaCKwHoRe's Shopping Cart"
Fixes:
Intermittent application errors / crashes when deleting / duplicating items / opening and closing SIP.
Application not remembering last opened list.
Saving a list sometimes doesn't actually save it. This is fixed.
I am trying to prevent where a list of items scrolls back to the top if you are scrolled down and click an item.
Version 4.2:
Fixes:
Scrolling issue resolved.
Inability to add new categories/tabs resolved.
Resampled and resized images thanks to aiiro.
Version 4.1:
Fixes:
Opening a saved master list would cause an error. This has been fixed.
Installing the latest version of Shopping Cart will no longer overwrite your customized application settings with the default ones. They are now saved between versions.
Adjusted size of item container on different resolutions so that all items can be seen completely when you have a larger list.
Other:
Still trying to duplicate the "scrolling" issue affecting some users so that I can fix it...
Version 4.0:
New features:
Duplicate item (context item)
Rename item (context item)
Move item up/down (context item)
Check / uncheck item (context item)
Rename tab (context item)
Rename tab (menu item)
Add tab (menu item)
Delete all items (menu item)
Sort list (menu items)
Addition of master list functionality
Addition of Help screen
Addition of AppToDate support
Changed application installation location and registry location to "Shopping Cart" instead of "Shopping Cart v x.x" for compatibility with Sashimi and AppToDate
New setting for prompting user to clear cart
New setting to disable single-clicking an item to check/uncheck it. Disabling it requires a tap+hold and select from a context menu to check/uncheck an item.
Fixes:
Application now shifts/resizes when SIP is displayed so you can see everything (may add a setting for this, what do you guys think?)
Lots of new language items so language files will have to be edited
Tweaked some code and fixed a few memory leaks to make application faster overall
Saved lists are now automatically saved as Unicode files to preserve special characters.
Version 3.1:
New features:
Multiple resolution support - now currently 480x800, 480x640, 320x320, 240x400, 240x320. I only have a 480x800 device but on my emulators everything looks fine on the other resolutions. Let me know what you find!
Included updated/new language files posted to thread into cab file.
Fixes:
Saved cart being opened in reverse.
Version 3.0:
New features:
Multiple resolution support - currently 480x800, 320x320, 240x320. More coming...
Functionality to remove an entry altogether.
Tabbed cart lists to separate shopping carts for different stores.
Custom/enhanced save/open/browse dialogs. Default Windows Mobile ones are awful.
Context menus.
New configuration utility to change application settings, rather than modifying the registry.
Numerous new user-configurable settings and options via configuration utility.
Saving a list now retains the marked/unmarked status of a list when it is saved and re-imported.
New menu item(s) to check / uncheck all items in the cart list at once.
Fixes:
Slow scrolling issue.
Rearrange status and item list columns so longer items don't display over or behind the status checkbox.
Unicode character display issues with language files.
Labels no longer cut off in different languages.
Other:
Changed checked-item image to green checkmark to match "Manila" styling.
There are 15 language files now included, thanks to all the contributors for making the changes from the previous version. Old language files are not compatible with this release and will cause an issue when the application loads if you try to use one.
Had to temporarily remove color and strikethrough options for compatibility. Will try to add this back in for next release.
Version 2.1:
Fix startup issue for alternate language roms.
Remove scrollbars but still allow scrolling, to be more like other touch-sensitive scrolling applications.
Ability to customize the color of checked / unchecked items if MultiColorFonts is enabled.
Multiple language support.
Moved application settings into registry rather than .xml file.
Downloads
The files are below. Shopping Cart Companion needs to be extracted. It requires .NET 3.5 framework on your computer.
Also, here is a link to all the .NET 3.5 compact framework installation files.
You specifically need to have:
NETCFv35.wm.armv4i.cab
NETCFv35.Messages.XX.wm.cab (where XX indicates your phone's language)
Hi thanks, that's really cool. I will use it as a to do list (I had raised this question a while back). It's not quite as good as getting it as a front page tab, but it will suit me fine. Cheers!
Fantastic, thank you.
Just last week I was thinking that it would be better to have a program that I could easy mark off what I have got. Now it is here. Cool
Thanks
Looks good...thanks!
Looking mighty fine crack . Lol @ forgetting cab file in first post.
/a
great work buddy.
Any one has ried on qvga?
Hey just tried this and on QVGA and it works but it seems that the spacing is slightly out compared to yours on the WVGA? Have a look
Apart from that all seems good!
great work, thanks!
cRaCKwHoRe said:
A while back I wrote a very basic utility where I could write a shopping list and use it on my phone to go shopping with rather than taking a piece of paper and a pen with me. I got tired of forgetting stuff LOL! I use it every time I go to the store. I just thought I would share it with you all.
You can manually type in items to add to the shopping list or you can type up a list in Notepad or something similar. If you want to import a list in the application just save the file as a text file with each entry separated by a carriage return (new line / Enter) and copy it to your device. Then, in the application click File and Open and browse to where you copied the .txt file.
When you tap an item (click it) it toggles strikethrough text style, in effect marking it as found
Attached are a few screenies.
I'm open to suggestions as far as modification and such. It is designed for and works for the Touch HD as far as resolution is concerned. I don't know about other devices as I haven't tested it on any as I have no others.
Also, it requires .NET compact flash 3.5.
Click to expand...
Click to collapse
I like it
How about I help you with designing some graphics for this? It's functional as it is, I'd just like to see it a bit prettier
antrak said:
Looking mighty fine crack . Lol @ forgetting cab file in first post.
/a
Click to expand...
Click to collapse
Hush you! I was drinking last night!!!
chris10230 said:
Hey just tried this and on QVGA and it works but it seems that the spacing is slightly out compared to yours on the WVGA? Have a look
Apart from that all seems good!
Click to expand...
Click to collapse
What resolution is that? I know I can fix it... just forget what that resolution is
Rozenthal said:
I like it
How about I help you with designing some graphics for this? It's functional as it is, I'd just like to see it a bit prettier
Click to expand...
Click to collapse
Please do! I am the suck at graphics but can develop anything
Anyway of getting it to work on TF3D home screen as a plugin? Like it could say "10 items on list" then you click it and it loads the program?
nicelad_uk said:
Anyway of getting it to work on TF3D home screen as a plugin? Like it could say "10 items on list" then you click it and it loads the program?
Click to expand...
Click to collapse
You mean the home screen being where it shows the clock, your missed calls, voicemails, calendar events, etc. right? If so, I wasn't aware things could be added to that. If they can I could look into it.
saw your announcement in Dutty's area, and got it. Work like a charm, man, thanks. I have been looking for a super simple one like this for long
Simple and useful...
Thanks!!
cRaCKwHoRe said:
You mean the home screen being where it shows the clock, your missed calls, voicemails, calendar events, etc. right? If so, I wasn't aware things could be added to that. If they can I could look into it.
Click to expand...
Click to collapse
That would really make it perfect for me for what I was after to use as a to do list.
cRaCKwHoRe said:
What resolution is that? I know I can fix it... just forget what that resolution is
Click to expand...
Click to collapse
That would be 240x320 mate and good work simple and easy to use, its just a shame so many good apps get lost in the different development threads, i only found this due to pocketnow.com
1. I can not figure out how to customize default list on Today screen. I use BC ROM and there is some application there which is I assume supposed to make it happen but list does not change.
2. I can not figure out how I can put shortcut for favourite applications somewhere on Today screen
3. How can I put list of people I call frequently somewhere there as well
Any help is appreciated
1. Look for an app called CHome Editor. It´s used to customize / change the order of the list on the today screen on wm 6.5.
2. "Copy" the .exe file of the program you want to add to your Start menu (honeycomb). Go to "/Windows/Start Menu/Programs" and "Edit>Paste Shortcut". Change the name of the new shortcut as you wish. You can create foders here if you want too, to appear in the Start menu.
3. To add a favourite contacts line in the today screen download "ATContacts" on these forums.
Hope this helps!
Thanks,
For number 2, I want to put shortcut on Today screen not on honecomb screen, I want to launch my application directly from first page.
artisticcheese said:
Thanks,
For number 2, I want to put shortcut on Today screen not on honecomb screen, I want to launch my application directly from first page.
Click to expand...
Click to collapse
For that you need a 3rd party app (like the ATContacts for contacts). I know some themes include it (Bliss) but not sure if you can download only the app launcher...
This may be my dumbest post ever, but I find nothing on the topic. I lost my phone 2 nights ago and a nice lady found it and took it home to contact me. By then it locked to the default WM lock screen. Because it had locked, she could not see owner information and returned it to the restaurant. I got it back today.
Question, absent a Manila editor or 3rd party app (e.g. S2U2) is there any way to display owner information on the lock screen of a wm 6.5 sense (manila) stock rom?
M$ must have thought of this but I have no idea how to do it. Sorry if there are 1,000 posts somewhere on this topic.
Thank you!!!
dallasjim
+1
Seems like such a good idea, id also be interested in this!
I don't yet have 6.5 but in 6.1 you go to Settings>Personal (Tab)>Owner Information>Options (Tab) and put a checkmark next to "Identification information" for the setting "When the device is turned on, display:"
Has this setting been removed from 6.5?
S
sleonard said:
I don't yet have 6.5 but in 6.1 you go to Settings>Personal (Tab)>Owner Information>Options (Tab) and put a checkmark next to "Identification information" for the setting "When the device is turned on, display:"
Has this setting been removed from 6.5?
S
Click to expand...
Click to collapse
Thank you, but it is no longer there. It must be somewhere!
Setting owner information
I have a UK TP2
The only way I can find to display owner info is
From Getting Started, Set background, Change background image, Items tab
Disable HTC Sense, enable Owner Into - there you can enter the data and set to display on start-up
I hope this helps
Trirab said:
I have a UK TP2
The only way I can find to display owner info is
From Getting Started, Set background, Change background image, Items tab
Disable HTC Sense, enable Owner Into - there you can enter the data and set to display on start-up
I hope this helps
Click to expand...
Click to collapse
Thank you, but it does not show when the device is locked in Manila. M$ and HTC are soooo stupid!
On my HTC Touch Pro 2 once its locked i get the owner information when i wake the device, but it seems that once you press the screen to access the unlock screen, you cant get back to the owner information unless you unlock the phone. Its a bit stupid that when you press the power button to put the device to sleep it brings up the owner information every time, but when its locked it doesnt. Pretty stupid if you consider that the only time you really need the owner information to be constant is when you lose your phone or it gets stolen!
I've been googling the whole weekend and did not find anything. Still searching.
Does somebody have any idea about how to show owner info ? As TPC knows the way to move right/left/down the "slide" button, is there a way to add the owner info to the screen ?
(I know S2U does have this option, but I mean using the built-in new unlock feature in WM6.5)
Owner info on lock screen HTC TP2
Anybody who help me out with the owner info on the lock screen? It worked fine in the previous BIOS version and in the latest released BIOS update it 's gone.
I'm able to fill in all the owner details, but it's not displayed when I switch on the device.
Awaiting for a positive response
Kindly regards
Andries
This is something I'd like to do as well. My previous Blackberrys had this and it was a nice feature.
I'm not on wm6.5 but try using WM's built-in Lock feature. On wm6.1 and before, owner's info is displayed before showing the password screen
http://www.microsoft.com/windowsmobile/en-us/help/v6-5/Lock-your-phone-touch.aspx
Has anyone found a good solution to displaying the owner information yet? I had put it in the 'hint' but this only appears after you have mistyped the password several times.
Ok, I've found a solution. You can change the text that appears under the slider (usually 'slide'). I've changed to my name followed by my phone number.
You can find it here.
-Jonny- said:
Ok, I've found a solution. You can change the text that appears under the slider (usually 'slide'). I've changed to my name followed by my phone number.
You can find it here.
Click to expand...
Click to collapse
It's a good (provisory) solution !! I think it's the best way to tell whose is the device or what to do in emergency case.
Now, what about connecting what is inside the sentence in the .cpr file to another file ? Does somebody think it's possible ? Or maybe the .dll file could be adapted to read from the "username" keys in the registry ?? (sorry for my question, I have no idea about programming)
Another way
I changed my welcomehead.192.png file to my own picture, and included text in the picture with my name and a request to call a phone number if the phone is found. All you need to have is a program that can put out a 480X800 PNG and be able to add text.
EDIT: The file has to be moved to the \Windows directory. This file says up for almost a minute when the phone boots.
stevedebi said:
I changed my welcomehead.192.png file to my own picture, and included text in the picture with my name and a request to call a phone number if the phone is found. All you need to have is a program that can put out a 480X800 PNG and be able to add text.
EDIT: The file has to be moved to the \Windows directory. This file says up for almost a minute when the phone boots.
Click to expand...
Click to collapse
Thank you for the tip! Between getting my name and email in the lock slider, and my DL# and email addresses in the boot screens, I should be good to to for now...just need to install RemoteTracker!
Setting Owner Information on Touch Pro 2
The option to do this easily was removed in 6.5. To enable this follow the advice below:
1. Navigate to Settings, All Settings, Today
2. Click on the Items tab
3. Disable HTC Sense
4. Enable “Owner Info” and tap OK.
5. Enter the Owner information that you would like displayed on the Today screen.
6. Highlight the "Owner Information", and go to the Options tab
7. Check that the "When the device is turned on Display" Identification information is enabled
8. Go back to Item 1 and re-enable HTC Sense
9. The Owner Information will now show when the phone is locked
EDIT: My ROM's Chef said that selecting the 'Owner Info' option will not allow the 'Options' button to function even though 'Owner Info' is enabled for the ROM that I am currently using. However, I was successful in changing my lock screen text by using the 1st posted method above (Customize or Remove Lock Screen Text).
I edited both "TapOrSlide" and "SlideToUnlock", because I noticed that my custom text would not display if I received a notification. Also, keep the number of characters to a minimum, so that it displays correctly. If it is too long, the far left and far right characters will fall off the screen.
Hmm, wonder if there's a way to add additional lines to the displayed text???
Many thanks to the original poster for posing a question that I didn't even know I needed to know!
kenni39 said:
The option to do this easily was removed in 6.5. To enable this follow the advice below:
1. Navigate to Settings, All Settings, Today
2. Click on the Items tab
3. Disable HTC Sense
4. Enable “Owner Info” and tap OK.
5. Enter the Owner information that you would like displayed on the Today screen.
6. Highlight the "Owner Information", and go to the Options tab
7. Check that the "When the device is turned on Display" Identification information is enabled
8. Go back to Item 1 and re-enable HTC Sense
9. The Owner Information will now show when the phone is locked
Click to expand...
Click to collapse
Thanks so much for this, however, for some reason the "Options" button is greyed out (unavailable) in the Today Screen Item Settings page even though I have Owner Info highlighted... Damn! May have to try the other method. Anyone have any success with either?
I've also sent a message to my ROM's Chef asking if this is a bug or whether this is an option that was somehow left out of the build that I'm using.
Debbie
jamiemckee posted a good solution that I use. Make a reg edit to revert back to the WM6.1 Device Lock & do away with the 6.5 Lockscreen. Just your Today Screen shows.
HKEY_LOCAL_MACHINE\Software\Microsoft\Shell\LockScreen\Enable
Default Value: 1 (for Sliding lock screen)
Changed Value: 0 (for soft key lock a la wm6.1)
I found this because I actually WANTED to disable the default WM6.5 lockscreen as I prefer the soft key unlock, partly because of the memory the sliding lock uses, and also because I want to be able to see the gorgeous sense 2.5 interface when I turn my phone on to see the time.
BK
This functionality has to be in the 6.5 OS somewhere. I used to have a TouchPro 2 with 6.1 and it displayed the owner information during power up. To get this information to appear on my Tilt 2, I had to download and install an app called SKTools. Now I have an applet in the Personal settings under the Settings option in the start menu where one wasn't before.