Related
Hello,
There is a way to add more than 15 favorite contacts ?
It is a great feature but is limited to 15 contacts.
Many Thanks
This would be great if it's possible.
I have another question. How can i change the order of the favorite contacts?
Yeah, would also like to have more than 15 favorites. But maybe they made the limit because it would be too laggy otherwise ? Don't know really
Order of the contacts on people tab
I am also interested in changing the order of the contacts on my people tab. I have searched the site and this is the only reference found. Any update to this out there?
Thanks.
xponline said:
I am also interested in changing the order of the contacts on my people tab. I have searched the site and this is the only reference found. Any update to this out there?
Thanks.
Click to expand...
Click to collapse
As far as I'm aware your favourite contacts appear alphabetically and this order cannot be changed.
If I am wrong, I apologize. But to be honest I don't see a need for this anyway as the time taken to scroll to any of your favourite is Minuscule anyway
thanks for reply. Just wanted to have the wife at the top of the pile - keeps her happy
AAAJessica Alba
I have numbered the beginning of the name of my favorite contacts from 01 to 15. This way you can reorder them in the TouchFlo 3D tab.
This trick works for the all programs tab, but not sure for the people tab
Since--if--the order is alphabetical, try putting a space before the name, e.g. " Jessica Alba" instead of "Jessica Alba."
Any news or updates on this one?
Hi guys, anyone out there had any luck with adding more favourite contacts? Any knowledge to share about the people tab that might help us out?
I'm running Sense 2.5 from Leo 2.02, seems pretty quick on my own WM 6.5 28014 build, but would absolutely LOVE to have more than the standard allowance for favourite contacts
P.S In all the Sense 2.5 versions i've used I've been able to manually rearrange my favourite contacts - guess it's a 2.5 thing, but it is doable.
UP!
Any news for add more then 15 favorite contacts on HD2 ?
Thanks!
I'm also looking for that, not easy to decide which friends should be the unlucky 16th, 17th contacts
thanks
perchera said:
I'm also looking for that, not easy to decide which friends should be the unlucky 16th, 17th contacts
Click to expand...
Click to collapse
LOL
Fallen Spartan said:
As far as I'm aware your favourite contacts appear alphabetically
Click to expand...
Click to collapse
Absolutely not.
They simply appear in the order they were created, and when you restore them after a ROM flash (what I do often these days ), they obviously appear in the order they were historically created in the main contacts list (still not using alphabetical order).
This is ABSOLUTE CERTAINTY, is reproduced after each flash, and bears no discussion whatosever.
Fallen Spartan said:
and this order cannot be changed.
Click to expand...
Click to collapse
If I could find where they are stored (I think I'll ask people who wrote favorite contacts backup programs - though I'm a bit worried, as Zenyee's Back FavPeople Up seems to save and restore actually NOTHING ! ), then maybe I should be able to write some utility to do that...
I don't even know if they are stored in a database, an xml file... The only thing I'm sure of is they are not stored in the registry !
The only way now is to delete them then restart from scratch !
Fallen Spartan said:
But to be honest I don't see a need for this anyway as the time taken to scroll to any of your favourite is Minuscule anyway
Click to expand...
Click to collapse
It does't take any time actually if you use the 4x4 mod, as you even don't have to scroll.
But they're still messy anyway, making them not straightforward to click on.
I initially created them sorting professional and personal favorites... But, well, this nice order doesn't survive a ROM flash !
You must just be aware of the fact people just like their contacts to be sorted the way they want. In other words, they think THEY are the boss, not their phone ! LOL
Anyway, it's not forbidden to search for a way to change that, ask for help, and hopefully, find a solution.
I actually found this thread because I was precisely looking for that.
Ducati1979cc said:
I have numbered the beginning of the name of my favorite contacts from 01 to 15. This way you can reorder them in the TouchFlo 3D tab.
Click to expand...
Click to collapse
But it has no effect at all for the reason I explained before.
g2tl said:
This trick works for the all programs tab, but not sure for the people tab
Since--if--the order is alphabetical, try putting a space before the name, e.g. " Jessica Alba" instead of "Jessica Alba."
Click to expand...
Click to collapse
Same punishment !
OK, now I've managed to have Zenyee Back FavPeople Up actually saving something...
There is a very easy and simple way to sort the favorites using this tool.
Just edit the produced HTCcontact-backup.xml file, change the positions between the <FavoriteOrder> and </FavoriteOrder> tags, then restore it, and you're done !
Position numbers begin at 0, so the last one should numbered 14.
I'll now try to restore a modified xml file with a contact position modified to 15...
I'm also searching the registry for the key values enclosed between the tags <FavoriteContext> and </FavoriteContext> : will I be lucky ?
Edit : I'm not !
And trying to renumber a contact beyons the limit doesn't work either.
Z80-Man said:
OK, now I've managed to have Zenyee Back FavPeople Up actually saving something...
Click to expand...
Click to collapse
how did you manage to do that? i have an htc diamond2/topaz with the energy rom and back favpeople up! doesn't find any favourite contacts from my people tab :-(... i don't know why. it just says: backup completed; 0 contacts saved. it's really annoying having to add favourite contacts manually after each rom update.
Thanks for any suggestions!
OK, I looked further in the registry and in the contacts themselves (using Outlook on your PC can help, too).
The "Favorite" contacts are actually tagged as belonging to a group ! That's how Back FavPeople Up! works. The group is labelled "1", where not classified contacts are tagged "0".
I managed to have Back FavPeople Up! working by checking the "Sense 2.5" box (I tried previously without success, but now it works. It may actually depend on the ROM build, even if all of them use Sense 2.5).
On restoration, it sometimes doesn't restore them all, though.
Then I analysed the resulting file named HTCcontact-backup.xml.
It's actually a bit messy, because Zenyee din't add a carriage return between each section, but it still works if you add yours to improve readability... It's just XML, after all.
Here is its structure :
Code:
<?xml version="1.0"?>
<!--Backup of HTC Favorite Contacts by dzenkinz ([email protected])-->
<ContactList>
<Contact>
<FileAs>Usual Name</FileAs>
<FirstName>First Name</FirstName>
<LastName>Last Name</LastName>
<RingTonePath>RingTone Path</RingTonePath>
<FavoriteContext>Index Number</FavoriteContext>
<FavoriteOrder>Order Number</FavoriteOrder>
</Contact>
<Contact>
...
<Contact>
...
</ContactList>
The contents between the tags should be self-explanatory for most of them ; some of them need some more explanation, however.
- If a tag is empty, then the syntax is simplified. If for example you don't have a specific ringtone linked to the contact, then it will just be noted :
Code:
<RingTonePath />
The same applies to any other empty tag.
- The "Index Number" tag contains some index relating to the contact's position in the list. It's a 7 digits (decimal) number. I'll go back on it later.
- The "Order number" tag is the most interesting, as it represents the position in the favorite list ! It's a decimal number between 0 and 14.
- The "Usual Name" is the one showing in the "Favorite Contacts" tab. The other ones are just a copy of their real content in the "All People" full list.
Now with these informations, I just did what I always do... Search the registry with the "Contact Number", hoping I could find them... And... Bingo !
You can find a section named "FavoriteOrder" in the [HKEY_CURRENT_USER\Software\HTC\People\] key...
And this is what's in it :
Code:
[HKEY_CURRENT_USER\Software\HTC\People\FavoriteOrder]
"0"=dword:Index Number 1
"1"=dword:index number 2
...
So this is a list of each contact index number, stored in a DWORD variable representing its rank on the "Favorite Contacts" tab.
It actually works, as if you juste restore these registry keys then soft reset, you'll see your contacts displayed in the require order.
If you want to leave some empty buttons in order to sort them, then you'll just put the value 0 into the variable wearing the position number (remember they begin at 0, so "0" is the first, "1" is the second, etc.)
You should actually fill in the whole 15 variables (using the 0 value for empty ones), or you'll end up with buttons wearing an old contact on it.
Warning : For the index number, be careful on the base you will use : the numbers found in the XML file are written in decimal, while the registry numbers are naturally written in hexadecimal, so if you must manually copy a value, be sure you first check the "decimal" button.
Technically, you'll just export the [HKEY_CURRENT_USER\Software\HTC\People\FavoriteOrder] key from the registry, edit it with the notepad, sort the contacts to your taste, the import it back to the registry (you can make a CAB to ease the process).
The method still have some drawbacks and difficulties, howether, so please read carefully the following :
1) The [HKEY_CURRENT_USER\Software\HTC\People\FavoriteOrder] will be created only by Zenyee Back FavPeople Up! upon restoring previously saved contacts.
Though it's actually used by the HTC Favorite Contacts tab, it doesn't exist "naturally" !
So you'll have to restore a saved list first, or create the registry keys from scratch. Then you'll be able to export them, sort them to your taste and import them back.
2) There is an another limitation I found this morning. As you might expect, this tool is most useful after flashing a new ROM, when you want to get your favorite contacts back.
The problem is on the method you'll use to get back the full contacts list. maybe it won't be a problem for most people... But I had one.
Yesterday, when I flashed the last Energy ROM, something went wrong with my ActiveSync on my hom PC, and as I was downloading a Dinik version (it takes about 2h1/2 to get one ROM from Hotfile ! ), I couldn't reboot, so I synchronized my contacts this morning from my office PC...
And then the favortie contacts list I restored from the registry keys was all messed up.
The reason is simple : the index numbers were different from the ones that were saved.
I think the reason is my office Outlook file is actually a bit different from my home Outlook file. They are actually syncrhonized separately (of course ! ), so their databases grewn separately.
The other time I flashed, I resynced the contacts from home, so the list was saved according to the home contacts index list.
Then last flash, I resynced from the office, and tried to restore a list that was built from the home contacts list...
I actually don't know if the same could also happen if you still resync from the same PC... You'll have to try out.
But as long as you keep your contacts in your HD, you can freely export and import back the favorite list from and to the registry, and it will be fine.
Now I think that if you use antother method to save your contacts and restore them after a flash, for example if you use PIM backup or any other tool instead of synchronizing with Outlook, then maybe you won't have this problem at all, I don't know.
What i do to have my Fav contacts in tact after flash....
Before flash
Backup my contacts with pim backup
Backup fav contacts with Zenyee Back FavPeople (sense 2.5 checked)
Then after flash
Restore from pimbackup
Restore from Zenyee Back FavPeople and Reset when it will ask you (Importand).
This method is allways working for me in NRG roms
Yes, it works great, but there are some limits to what it can do :
1) If you already imported your saved favorites and let them in the order they came, saving and restoring them back with most probably keep this order.
However, if you rearrange them and save them again, then they'll be restored in the previous order.
Apparently, they are always restored in the chronological order they were created in the main list - something like that.
When they are saved, it's obvioulsy in this order. Zenyee actually scans the whole contacts database from top to bottom and saves the necessary information from the ones that are marked as belonging to group "1" while he encounters them. That's how it's done.
2) It will sometimes miss some contacts at restoration (and will display the warning). Don't ask me why. Maybe the ones I imported from the "Favorite People" tabs, as opposed to the ones I choosed in the main list, then use "Add to favorite" menu, since they might not have all the necessary information ? It actually looks like that.
In other words, Microsoft method seems to be more reliable than HTC method.
3) Beware if like me you're using 2 PCs, at work and at home, sharing the same Outlook information (information synchronized by ActiveSync, with new contacts added or deleted on one site, then synchronized with the HD, then synhronized again with the other PC, and not everyday, nor each time a change is made. So finally two somewhat different databases !)
Zenyee saves index numbers that refer to the current contacts database. That's the only way he actually links the saved data to the previously restored full contacts list.
If you happen to flash your ROM and restore your contacts from a different PC, restoring your favorites will then do a mess of them !
So I won't be so affirmative saying it will all restore to identical each time.
I could just say "it depends"...
Anyway, the method I explained above still relies on using Zenyee Back FavPeople Up! to restore your favorite in the first place (they'll be just in an incorrect order - or not : it depends, as I said above - with the spare icons at the end), as it's responsible for creating the registry keys.
It also requires you're NOT in case #3, or it won't work either !
Then you can import your previously saved registry data (taking care to fill in unused icons data with "0", or the previously restored favorite will still show in double).
After soft resetting, your favorite will then show in the exact order you saved them, including spare icons in the middle if you had any.
My suggestion doesn't replace what's already existing : it just completes it, ok ?
Reason: (if you really want to know)
I really like the facebook and sense's people integrated feature. It helps me update birthday, phones, and my friends recent news. However, I do have most of my friend's photo on my outlook. I really don't need to save 200 extra pictures in my windows' drive. Beside, sometime my friend's profile picture are kind of random.
Help needed:
Any one know how to stop the photo update from facebook to the people contacts? A reg. tweak or something? Or just a want to select multiple contacts to use outlook picture? In sense 2.1, after the facebook linked your friends, a window pop up and you can uncheck the saved photo box, then facebook would not overide the saved picture you have. But this feature seem to be missing on 2.5.
facebook picture
you can override the facebook picture in sense 2.5 edit the contact then click the picture and choose, facebook, or outlook contact.
Thanks but I have more than 160 friends
Thanks for you suggestion, but you know I have more than 160 friends to update. And if I have to do that every time I upgrade a room. I am doom.
please someone help
Double this request! I was about to open a thread in despair...
I have 20 FB-connected contacts. Not a big deal one would say - change them manually. But if one takes into account that i flash almost every other day (yes i like to play with builds and upgrades) and everytime i have to go through this 20 pics... Ahhhh!!!
Getting mad everytime this stupid manila feature replaces neatly prepared and assigned photos of outllook by it's tiny meaningless photos (in some cases just mess-up madness!)
Please, please help us to stop facebook messing up with contacts
I have a non rooted EVO with froyo, and sense on.
On 2.1 all of my contacts were displayed last name,first name.
SO, in contacts it would say..
Smith, John
now with the 2.2 update and without me changing around any settings it says
John Smith.
I want the last name first, but unfortunetly I cannot change it. The HTC people app doesn't have the option to change it.
I sync my contacts with Exchange and they are all on my outlook at the office, and it has changed the way my contacts look on outlook too, when I try to change it, it just reverts back to first name then last name.
I read and found that with non sense froyo, you can change the order of it, however the HTC People app is different, and did not have that setting.
Also I downloaded a Froyo AOSP version of contacts (from 2.2 ROM) and tried installing it, but got unsuccessful installation. I got the .apk from the CM6 ROM, I was thinking I can just use that app, and change the contacts to display last name, first name.
If anyone can help please let me know.
anyone????
mjz147 said:
anyone????
Click to expand...
Click to collapse
I am with you!! ANYONE.. HTC Sync seems to have a real mind of its own.. today it said 163 contacts changed on my phone, then 2 minutes later the 163 were different on the phone!
This FIRST LAST is real annoying and it appears to have messed up my Outlook (don't know how good my most recent backup is). But all my display as fields are gone and some on the PC are now showing up as FIRST LAST even though they are set to display and LAST, FIRST.
and if you make a people shortcut for a quick dial it doesn't use the full name anymore just the first.
someone screwed froyo royally
Edited 8/24: The new gmail changed this guide and I have attempted to update it. Since my contacts were so clean from when I first wrote this guide, I can't say it's 100% perfect, like it was . I would really like it if people could chime in suggestions for the community!
Please note, this was in the Sticky. In an effort to save a LOT of needed space in the sticky AND to allow new
suggestions I am making this thread. Please let me know if this helps, and if there are other ways to clean up the contacts. Apologies, but I absolutely hate Facebook so others will need to chime in on how to incorporate that, if needed. Alright, on with my guide:
EDIT YOUR CONTACTS (ON YOUR PC FIRST)
If you are new to Android, the first time you logged in it was probably amazing (and frustrating) when you saw ALL of your google contacts sync with your phone.
First things you need to know, google does not allow you to stop the auto-adding of the random people you email to your contacts. Of course, those randoms are now likely showing up in your contact list (hence the frustrating part). Here is how I fixed it:
*please note, if you hide all contacts who do not have a phone number (see below) you can likely skip this, but I included for those who REALLY want to clean up their contacts*
1 - Login to gmail on your PC. Click on "Contacts" on the left border.
2 - Notice you have "My Contacts" (the good) and you have "All Contacts" below that (the bad).
*EDIT* There is no longer a "All Contacts." Google has improved this to now have "Other Contacts." This makes weeding out the people you may not want in your contacts a LOT easier. The next few steps was a workaround that is no longer needed. Simply review these "Other Contacts" and delete those you do not want, and add the ones you do to "My Contacts."
3 - go to the "search contacts" search bar and just enter one SPACE and then press enter.
4 - The middle column will now have your contacts sorted by THE GOOD (My contacts) on top and then THE BAD (All Contacts) below that. You may have more tiers, but I am keeping it simple for illustration.
5 - Scroll all the way down to the bad list. Review the names. Some may be legit people you just have not added to your My Contacts list yet.
6 - If you have a hard time recalling who someone is, you can click on their name and then click on the link "view recent conversations." This shows any previous email exchanges so you can decide to either delete or add them.
7 - Work through this list. I would suggest deleting them as you go, but not adding them to your My Contacts list until the very end (to prevent from having to do step 3 over and over). To add a contact to your "My Contacts" I just click on their name, edit their info and it showed up automatically. I did not need to click anything like "Add to...." etc.
8 - Okay, great. Lets assume you got rid of all the clutter. NOW, go to your My Contacts.... click on the "More Actions" button and then "Find & Merge Duplicates". If you have any, fix them... no reason to have several entries for the same person.
9 - Now just review the My Contacts list and make any edits or format changes. I am Type A, so you could only imagine how clean your Android Contact list is about to appear.
Great, enough with the PC. Go to your Vibrant.
Chances are it is already synching up with the changes you made.
The phone came with a bunch of #s stored on the Phone and SIM stock, I could care less about these. If you agree:
1 - Open Contacts. Press menu, go to "Display Options"
2 - Uncheck Phone and SIM (others may not agree, I just dont see the point), leaving Google as the only one checked.
*Also* You can also Delete these by long-pressing on them (wish I believe I did, and then unchecked them to now show... of course, they were deleted, so....)
Alright, almost there now. As it is, you have removed a LOT of clutter, but you may still have a ton of contacts. That is because, by default the Contacts app shows All contacts, even if they do not have a phone number. Now again, this is a personal choice.... but if I need to call someone, I would rather not have to deal with people listed who I do not have a phone number for. Also, if I am emailing them, I am using gmail, not Contacts (so again, not needed). IF you agree:
1 - Open Contacts, Press Menu and go to "Display Options."
2 - The top will say something to the affect of, check here if you only want to show contacts with phones.... Click it. Then click Done.
3 - Bam, your Contacts may not be perfect (like mine), but I bet they look a ton better. I tried to point out there is a lot of personal preferences, so please take this with a grain of salt. I like things clean.
Please read the sticky for other tips/tricks for contacts AND many other topics. Thanks for everyone helping!
You're the best. Thanks.
Great, thanks for this!
If only I'd seen it before muddling through the new contacts screens for hours getting it to work it would have saved me a lot of time.
Only comment is that step 3:
"go to the "search contacts" search bar and just enter one SPACE and then press enter."
Doesn't seem to work on the new gmail contacts screen, when I do this search it just takes me to the my contacts page. I had to click 'older contact manager' link at the bottom of the screen and then do the blank search. Also step 4, with the new interface you don't get the middle columns. Any ideas on how you'd sort the contacts with the new interface? I'm not sure how long the link to the old contacts manager will be around for...
Thanks for taking the time to draw this up.
Another great "clean up" tool is Merge contacts. After updating my Treo contacts into gMail, Find dups was not enough.
Merge is more of a manual action, but it is great to look at the entire list to see whats going on.
At the same time, "groups" is another manual action that can help organize "YOUR" (good list) contacts. At times, I had contacts lists from other peoples PDAs and phones on my treo (mine was reliable, theirs', not so much, so when they crashed and lost their contacts, i could beam their list to them).
Hope I helped someone
Anyone know how to get facebook pics to show up for contacts? When I first got this phone all my contacts who are on my facebook had their pics synced up. Not anymore though, and idk why. Fb still syncs in the updates column but not their pics.
Anyway, thanks for the guide.
The way I found that works is to follow the above instuctions (other than that I kept both the gmail friends as well as all my facebook friends and then chose to display only those with a phone.) You can then go through each contact without a photo and click on it (the one without a photo). This is the gmail contact, choose "link contact" and the Facebook contact comes up (note that this method assumes that your favorite contacts are also on facebook with a photo, if not you will need to get your own picture with your phone or camera). Again, this is assuming you have your contact as a facebook friend AND a gmail email friend.
I hope this makes sense. Good Luck
Hey, thanks for the comments. Yeah... The new gmail changed this guide and I need to update it. Will try and work on it soon. If you guys can keep making recommendations that would be awesome.
Do you know of a way to *remove* all SIM contacts on the phone? When transferring from my old phone I dumped to SIM and then loaded onto the Android device, then I dumped that to a CSV and merged it with gmail. That got things sorted out on the gmail end, however I now have a bunch of redundant SIM contacts.
Even if you uncheck SIM contact visibilityin the contact app, they do still exist, and they show up elsewhere. So far I've seen no way to actually get rid of all of them easily, short of manually removing them one at a time
I also like using the app "Contacts clean-up" to auto format all the numbers up be consistent. ;-)
Sent from my Samsung Vibrant
Jeremy, did you see if there were duplicates on the pc within gmail?
Sent from my Vibrant
Okay, I made an attempt to correct my guide for the new Gmail. I really did not have much to play with this time, so please let me know if there needs to be any changes or improvements made.
Thank you guys!
Remember the days?
Did anyone else make a complete different Phone list within google contacts, and only use this list as the list for your phone? This was on my G1.
I'm trying to figure out why we can't do that anymore. Kinda sucks
s15274n said:
Jeremy, did you see if there were duplicates on the pc within gmail?
Sent from my Vibrant
Click to expand...
Click to collapse
No dupes in gmail itself, just the dupe sim contacts. Gmail did a good job handling the dupes that I had in my gmail account.
Sent from my SGH-T959 using XDA App
I just picked up my new (T-mobile) HTC HD2, replacing my iPhone.
As nice as it is the HD2 seems far more complicated to use than the old iPhone.
I have 3 major issues I'm trying to fix and hope someone with more experience can advice me.
1-When making or recieving calls, I find it really hard to hear clearly. I'm not hard of hearing but the speaker seems way under powered. In a slightly noisey environment I have to switch to speaker to hear the caller !!
2-For some crazy reason I can only set 3 alarms, which is driving me mad. I have to keep my old iphone next to my bed to use it's alarms ( I work varied shift times )
3-After finally rearranging all my contacts to HDC happy ( no way of multiple, first name first changes ) I want to import all the birthdays into the calander. Is this possible ? In addition, I have linked many of my contacts to facebook, but the pictures randomly dissappear and I have to add them again. Can I save the complete address book so I can simply reload instead of having to update every picture when they dissappear next time ?
Any suggestions are warmly recieved.
there's an app out there that will add all the birthdays to the calendar. alternatively, if you sync your phone with Outlook on your PC it will add them to the calendar as well.
To answer your first problem, have you increased the call volumne to the maximum whilst on a call with someone? Just hit the volume rocker UP to do so.
And the second, WinMo only natively supports 3 alarms, but there are many programs out there that allow an unlimited ammount. Search the web for "Windows Mobile Alarm Programs" and you should find what you need. I would recommend bookmarking Http://www.pocketpcfreeware.com as well as http://www.freewarepocketpc.com. They have LOADS of useful programs for WinMo, and, as their names suggest, its all freeware stuff.
And three, like xnifex said, there are programs available on the net to sync birthdays and such, or you can use Outlook. Both will require you to manually enter the birthdays in the first time on your device, so you may just have to bite the bullet on this one and spend a half hour entering data. Good thing the keyboard is bigger than the iPhone eh?
Thanks for the advice.
1- Call volume. When I set the phone volume to max in the settings I assumed this ment call volume, however now I realize I have to use the volume control actually during a call to change the volume. Problem fixed
2- Only 3 alarms. Kinda solved. I have installed a great app G-Alarm. Nice simple and well programmed. However It's still sad that I have the alarm logo under the time (desktop) that is useless. Can this icon be linked to my new alarm clock app instead of the standard one ?
3- Calander linking to address book. Yet to download an app for this, but I'm sure it'll be easy to find.
Slowly getting the hang of WM 6.5, still many other teathing problems though.
Thanks again for your help
3-
Can this icon be linked to my new alarm clock app instead of the standard one ?
Click to expand...
Click to collapse
cookies home tab mod will alter your life, and allow you to remap the various home screen sections to whatever program you want. Dont forget to get the CHTEditor too.
As samsamuel says if you want to keep the phone stock you should go with CHT...otherwise find a custom rom that fill your needs...or an android build....
Great tip, thanks for that Sam. Starting to get my HD2 the way I want it.
ARRRRRRRRRRRR
After spending several hours manually changing the first name first (No automatic ordering option).
I finally got it to sync and backup all my contacts to gmail. I added a few new pics, using my PC, then after updating I synced again. Only to find the whole name ordering has gone back to what it was before.
Now, randomly I get first name first and randomly last name first. Do I seriously have to spend another few hours editing each contact only to find next time I sync it will **** it all up again for me ?
If your contacts are messed up I find easier to export as a CSV and then edit everthing in Excel. You can use this for adding mass changes and also to put in multiple calendar reminders. Then when done import it back into Outlook.
Sent from my DROIDX using XDA App
perrygraf said:
ARRRRRRRRRRRR
After spending several hours manually changing the first name first (No automatic ordering option).
I finally got it to sync and backup all my contacts to gmail. I added a few new pics, using my PC, then after updating I synced again. Only to find the whole name ordering has gone back to what it was before.
Now, randomly I get first name first and randomly last name first. Do I seriously have to spend another few hours editing each contact only to find next time I sync it will **** it all up again for me ?
Click to expand...
Click to collapse
I spent 3 months learning how to tweak and setup my leo, very frustrating yet necessary process.
Now my system is fully customized to my liking.
Hang in there, it's worth the hassle!
perrygraf said:
ARRRRRRRRRRRR
After spending several hours manually changing the first name first (No automatic ordering option).
I finally got it to sync and backup all my contacts to gmail. I added a few new pics, using my PC, then after updating I synced again. Only to find the whole name ordering has gone back to what it was before.
Now, randomly I get first name first and randomly last name first. Do I seriously have to spend another few hours editing each contact only to find next time I sync it will **** it all up again for me ?
Click to expand...
Click to collapse
look for contact changer (its in the marketplace i think,) and make sure that your sync options are set to update in both directions.
I'm sure you're right Sam, but right now it's hours after painful hours of trying to get an out of the box product to work. I loved the apps you suggested, they certainly made it more flexible. Thanks for helping me sort alot of problems.
What I don't understand is why only some of the contacts have changed back to last name first. When I view the contacts they all show the correct first name and surname.
And 1 more thing. I managed to link my contacts birthdays into gmail calendar but it does not update my phones calendar when I sync.
perrygraf said:
What I don't understand is why only some of the contacts have changed back to last name first. When I view the contacts they all show the correct first name and surname.
Click to expand...
Click to collapse
Its probably something like both the first and last both being in the same field, both in the first name, perhaps.
And 1 more thing. I managed to link my contacts birthdays into gmail calendar but it does not update my phones calendar when I sync.
Click to expand...
Click to collapse
You could try Manila Birthdays which will read your contacts birthdays, and allow you to enter them into your calendar. I have read of birthdays being an issue, but mine are already there through outlook, so i never had to solve it.
Thanks again Sam. Manila Birthdays, wicked app, love it.
I've also been playing with an app called mobiwee (http://www.mobiwee.com/), a great phone tracking and wireless file manager app
Worth a look if you're interested.
Cheers again Sam