Related
Ok I had gotten board with the lack of wifi and decent web browser on the Treo 650 that I decided to make the move to the 8125. I knew about the speed difference and some of the other issues discussed in these forums because I researched the device for months before making the move. Therefore I wont say much about that. Unfortunately I have a few issues that I can't seem to find answers for in this forum and I was hoping other users out there could help.
1. Is there any way of making the navigation pad useful? I cant access anything on the taskbar and it would be great if I could. I installed magic button so I can close apps and switch back to home when I want. Furthermore there is almost no documentation on how to use the nav pad. All application instructions say tap the icon. It's very convenient to have one handed use. for example i have yet to figure out how to get back to the location bar in Pocket IE so I can enter a url without having to tap the screen.
2. Is it common that some applications just freak out when you switch to landscape mode (scroll bars not working and such)?
3. As mentioned I installed magic button but is there an application that will pop up a list of running tasks so I can switch between them easily with the navigation pad.
4. Backup. I may be very wrong on this but I fear that active sync does not actually backup my entire device like palm does. Could someone clear this up and if I'm correct is there a way for active sync to do this. I have more programs on this device than what is on my add/remove prog screen.
5. Notification reminders. I see a feature to have the led for a period of time but it would be nicer if it could be set to play its sound also. Like the pagers of old.
6. Notification of lost service. This phone never tells me I have no cell service. Last thing I want is battery draining searching or worse assuming I have service and miss all calls.
If anyone could provide some info on the above it would be a great help. i have already found many other programs that make up for the lacking features. Below is a list of what I have installed please make any suggestions you think would be helpful.
1. AnthaVPN - easiest and fastest to install
2. TN520 by mochasoft
3. Pocket Putty SSH client
4. Eyes On Call - Callfilter like program with many features still limited but the developer is very quick in implementing suggestions.
5. Info sharp - same developer as above but this provides sms capabilities that are very impressive. He almost has chat style sms with the way this program works.
6. OMAPclocker - for clocking to 220. I actually see the difference.
7. IM+ - Sametime/AOL instant messenger client.
8. Info apps I have Metro, Ereader, Bdicty, VadeMecum
9. TCPMP
10. Registry Wizard
11. Calc98 - the built in calc app is a joke.
12. Xpressmail - dont care what anyone says this app does what it says it will do. Pushes email to your phone.
Thank You
- Richard
Hello Everyone,
I just got my 8525 in the mail yesterday and upgraded the boot loader, radio, and WM6. I had a little trouble but in the end, all that I can't get working right is the internet for Cingular. I really appreciate all the hard work everyone puts into this. Here is my thank you, this is my first app so go easy on me.
nomb
nombCrypt
nombCrypt is an encryption program I originally made for the desktop but then decide to port it over. It uses a password you provide and encrypts either a block of text or files using 256bit Rijndael (AES). This level of encryption was given the ok to encrypt Top Secret documents. It can of course decrypt as well. This is for Windows Mobile 6. Please enjoy and every developer of course likes to get back feedback.
Planned/Requested Improvements
Truecrypt like encrypted containers
Implement Encrypted Backups (P)
Get File Encrypt Status Bar Working (P/R) <-- I'm dreading writing the working class :'(
Use Device ID As Salt Option (P)
Randomize Salt More (P)
Add More Encryption Algorithms (P)
Change File Open Dialog To Open Less (R) completed - now initially looks for *.nen (nombCrypt Enc. Files)
Encryption Password Confirmation (R) completed
Clipboard Paste Button (R) completed
Clipboard Clear Button (R) completed
Take Off Start Menu Icon (R) completed
Change Icon (R) completed
Add Exit To The Menu (R) completed
Add Time Out Feature (R) completed - (see page two for details)
Integrate nombCrypt Into WM6 More (P)
I. Encrypt MS Certificate Store (R)
Other Fixes
Improved Text Encryption So The End TextBox Is Opened Less
Added file error checking to the file decryption process
Two screenshots and the cab file are attached.
I hope you guys enjoy...
nomb
Hey! I wanted to do the same thing too! Just that I use my own XOR method (One Time Pad-like) instead. Of all the thing, it works alright, except that I can't get it to do a Copy-Paste. (see here http://forum.xda-developers.com/showthread.php?t=321014)
Also, from what it seems, I would presume that (since you uses AES), the end result would be in 'relatively' binary format (right?), which may not be very program friendly.
I was going to do about the same thing, except that I'll have my end result Base64 encoded, such that I can have them pasted to Notes and have it sycned to outlook. And I have my PC based software to do the job there (if required).
Previously, I used a software called Ccrryyppttoo, which did quite alright, but it seems that my PC is doing some coding, when synced, that makes it goes funny (i.e. cannot be decrypted anymore).
I'll PM you a demo of what I did (in Java web), of which I intended to do it in PPC
With Rijnael the resulting encrypted string/file gets encoded into base64 as well because if it didn't, all the characters wouldn't be represented. You can paste this into notes just fine.
Mine is programmed in c# so there is a clipboard function which works relatively well. If you'd like to help with this your more than welcome to. Or if you want to join your project with mine that would be cool too. I plan to support all major and a lot of minor encryption algorithms that I can find. Plus people were complaining about how the encrypted backup on the ppc should use the device id to encrypt instead of the randomly generated key so I plan to implement that as well.
I'm looking forward to seeing your demo.
nomb
Hmm.. so it is b64 encoded.. niicceee. Hmmm. . I should try out C# soon.
Anyway, there is a suggestion, I'm not sure if you have the library for it. After my symmetric cipher program, I'm in thinking about a asymmetric-public-private key cipher, which people can exchange short messages in secret (e.g. via email, IM, SMS) without the need to exchange the key/password. It is relatively done now, I'll show you the web base version once it is done. It runs on the Java security class, which I'm not sure if C# has those library or not.
The idea is, Alice go to my page, generate a pair of keys. Alice then send Bob her pub key. Bob use pub key, go to my page, encrypt the message. Send it to Alice. Alice decrypt message at my page. No software to install, no secret key exchanged.
Yup c# has the ability to do that built into its cryptography namespace.
That is a cool idea, but instead of having Alice send the key to him. You should just make a db to keep track of the keys and then have him answer a question about Alice or something like that to use the pub key. that way thats even one less step they have to worry about. Or have Alice put in his email address and have your site auto email him the pub key. That would be good too.
But sweet idea, maybe I'll make my program talk to your site.
Have you tried mine yet?
nomb
I dont like the "answer a question" method, as in that case, you might as well use the answer as the password?
Anyway, the emailing the pub key is an idea
I'm not in my own PC yet, can't send it to my phone from this PC. Will try it out later tonight.
hanmin said:
I dont like the "answer a question" method, as in that case, you might as well use the answer as the password?
Click to expand...
Click to collapse
Ya I'm at work and was hungry so I wasn't thinking strait. I don't like that idea either. ^^
I think my next step in mine is to build the background worker class to update the progress bar when you encrypt/decrypt a file.
If you just point your phone to the cab above it will install it for you. You don't need a comp unless u don't have a dataplan.
nomb
I dont have data in my plan.. although O2 gives me 1MB+ a month free.. I'm not using it.
Anyway, I've tested your software, a few comments.
Slightly major problems:
[1] It is not wise to do a 'All folders' and 'All Files' upon browsing (for file to be de/encrypt). People (e.g. me) has gazillion files around and it may take ages to load the list.
[2] You may want to pop up a Window, asking the user to confirm his/her password upon encryption (one of the thing I intended to add on mine )
[3] I'm not able to paste any data onto the 'start text' area. E.g., I have encrypted my stuff, saved it into Notes. Later, I wanted to get it back, I copy the encrypted code from my Notes, and no way of pasting it into the 'Start text'
[4] You already knew this, but, good to have some kind of progress bar to indicate the progress
[5] Hmmm.. on the browsing, there doesn't seems to have a way to find files on my Storage Card's root directory
[6] For security reason, probably it is good for you to add a 'Clear Clipboard' button?
Minor:
[1] I find it annoying that once I had the software installed, it is on my Start menu
[2] You could use a better icon, I just see a black square on my not so bright screen. I can help you on this.
[3] Add an "Exit" on the menus below?
Other possible suggestions:
[1] Have a time out on your software, such that, e.g. if there is no activity on software after a certain amount of time, it will do one/some/all of these (a) close itself (b) clear the password, input, output (c) clear the clipboard
Good suggestions, I'll have those done by tomorrow. I can't play with the storage card aspect yet because I don't have one. :'( Soon though I'm hoping to get a 4gb. And ya, i can't make icons worth any.
Oh, to past it back I always did ctrl+v from the keyboard. But I'll throw a button up there to do that. And I'll make sure to take it off of the start menu.
1 good comment would have been nice. Altho criticism is good.
nomb
Haha.. sorry for the lack of good comments, I was trying to think of something to suggest. But come to think of it my post on top are good comments (e.g. niiiiccceee Base 64 encoded), and the fact that it has the simple string->string encryption.
I did googling a bit, and found these
http://www.entity.cc/ICONS/security-icons.php
http://www.hscripts.com/freeimages/icons/computer/lock-icon.php
http://icons.qarchive.org/
which you may want to use as your icons?
Ya I was just teasing you. The icon I have now I got off of your last link at somepoint I just don't remember when. But I think I will probably use one of the others. But ya, I'll work on those fixes and then attach the updated program. Then once I get those fixes done, I'll work on adding the differnt encryption algorithms and the encrypted backups.
nomb
Did you wrote any backup software before for the PPC? I'm not really sure, but it seems that backup-ing can have a lot of issues. You have the "Copy everything" backup, the PIM only backup, etc. Some backups are ROM-flashing/upgrading friendly, some are not. You can have a backup software all standalone by itself. I would recommend you to have the backup software seperated and have encryption onto it as a plugin. Take a look at PIM-backup, it is very popular here.
Hi,
This is a very interesting thread. Thanks for your efforts so far (is there a donation link anywhere?)
A basic question...I understood that to carry out really secure encryption it would be necessary to write a filter driver that worked within the core ROM Image. Is this not the case?
Can I encrypt the MS certificate store too? The crypto protection on this store could be beefed up...
Once again I am very pleased that this thread has appeared and will be testing your software with interest,
Well done for your work so far,
Sam.
Hey there PianoSam,
First I just want to make it clear I'm not doing this to make money. If anyone donates I want it to be because they like the software. I am at work so PayPal is blocked but I'll put my donation link on the front page later today.
Also, I am going to try and incorporate the encryption as much as possible. If that is a feature you'd like, then after I get all of the previously requested changes done, I'll start on that for you.
And thank you for your kind words.
nomb
***EDITED***
Sorry I didn't answer you question at first.
Question: A basic question...I understood that to carry out really secure encryption it would be necessary to write a filter driver that worked within the core ROM Image. Is this not the case?
Answer: I pondered over this for a little while and I can't think of a reason this would be necessary. However, I've only had my phone for two days. Can you find where you saw that so I can read it as well and maybe gather a little bit on information so I can do some research on the topic? If thats what needs to be done then thats what I'll do but I can't see why. Let me know!
Added another cab with all the fixes I've completed.
nombCrypt-beta.cab <-- On the front page.
I added the donate link.
I added the timeout feature and thought I would make a comment on it.
It is a two minute timeout. Whenever you fucos on a textbox the timer is stopped and when the textbox looses focus, the timer is on. The downside to this is if you were in the middle of typing and set your device down, it wont timeout. I could make it so when you start typing into the textbox it restarts the two minutes and you have two minutes to complete your message but I didn't know if that was a good idea or not.
Also, when you copy, and go to another program to paste it in, you have two minutes before the clipboard is cleared and the program shutdown.
When the encryption program is encrypting something, the timeout is not running. It starts afterwards.
I can tweak this as much as you guys would like, just let me know.
nomb
I've tested your Beta.. niiiiiccceeeeee.. it is gooood. Almost prefect. Few things (OH NO! )
- The "Clear" button doesn't seems to be working. It is suppose to clear the clipboard only? Should you clear off everything as well?
Other requests/suggestion
<rant>
- I'm not sure why I thought I need it.. but it would be good to have a copy function for the "End Text" as well. I thought I may need it one day. Not sure why. It ought to make the screen a bit crowded, I thought.
Anyway, slightly related to the suggestion above, I've just revisited the design I made on my copy-paste-failed PPC attempt, I have this idea which I thought you might want to use it. For my design, I do not have "Start Text" and "End Text", I only have ONE TextField "Message" (and another for the password). The user enter the encrypted/plain text on this "Message". Click on the button "Encrypt" or "Decrypt", the result will then overwrite whatever that is in "Message" TextField.
Example:
(1) "Message"=<plain text>. User key in password, click "Encrypt", "Message"=<encrypted text>.
(2) "Message"=<encrypted text>. User key in password, click "Dencrypt", "Message"=<plain text>.
In such cases, you only need a pair of copy-paste to perform copy-paste on both (in a way) encrypted and plain text.
</rant>
As for the time out issue, I thought the typing-sensitive time out would be a better choice. The moment that you are worried about your data being seen is when you are away from your phone. You can have focus on your TextField but you can be million miles away from your phone. But, you ought to be around to be typing stuff, right?
BTW, I'm also wondering on the working of this time out feature. I thought there ought to be a 'clock' running and when time's up, it will clear the stuff needed to be cleared, right? So, if I were to forget to switch off the application, the timer will not be another running software that drain my battery, right?
Good work.
hanmin said:
- The "Clear" button doesn't seems to be working. It is suppose to clear the clipboard only? Should you clear off everything as well?
Click to expand...
Click to collapse
The "clear" button is in the clipboard row, i think i tagged it on the left, and only clears the clipboard. If you go to menu->reset it will clear everything like your looking for.
hanmin said:
- I'm not sure why I thought I need it.. but it would be good to have a copy function for the "End Text" as well. I thought I may need it one day. Not sure why. It ought to make the screen a bit crowded, I thought.
Click to expand...
Click to collapse
The "Copy" button copies the end text to the clipboard. Not the start text.
hanmin said:
Anyway, slightly related to the suggestion above, I've just revisited the design I made on my copy-paste-failed PPC attempt, I have this idea which I thought you might want to use it. For my design, I do not have "Start Text" and "End Text", I only have ONE TextField "Message" (and another for the password). The user enter the encrypted/plain text on this "Message". Click on the button "Encrypt" or "Decrypt", the result will then overwrite whatever that is in "Message" TextField.
Click to expand...
Click to collapse
I originally had it setup this way, however there was a time when I had wrote a huge paragraph in it and encrypted it, and then found out I had forgot a line. I switched it so this wont happen.
hanmin said:
As for the time out issue, I thought the typing-sensitive time out would be a better choice. The moment that you are worried about your data being seen is when you are away from your phone. You can have focus on your TextField but you can be million miles away from your phone. But, you ought to be around to be typing stuff, right?
Click to expand...
Click to collapse
The timeout I have running in it now, (new version that isn't up yet), is completely off of the user's actions. Whenever you do anything in the program the timer resets. Except for encrypting/decrypting. The timer is off for those functions incase you encrypt a file that takes longer.
hanmin said:
BTW, I'm also wondering on the working of this time out feature. I thought there ought to be a 'clock' running and when time's up, it will clear the stuff needed to be cleared, right? So, if I were to forget to switch off the application, the timer will not be another running software that drain my battery, right?
Click to expand...
Click to collapse
The timeout feature does not clear everything in the program. I have it so it actually completely closes the program. So if you forget to close it and walk away, the program will end so it doesn't drain your battery.
hanmin said:
Good work.
Click to expand...
Click to collapse
Thanks, wait till you see the next version...
nomb
I got the progressbar working for encryption, now for decryption.
Thread dedicated to the initial challenges when changing from a Tilt 2 to an LG Quantum.
Why is this thread needed?
AT&T insurance for the Tilt 2 is now sending the LG Quantum as a replacement.
The phones are hardly comparable. Windows Phone 7 is vastly different than Windows Mobile 6.5. It is not HTC. Does not have Sense.
Windows Phone 7 has some very annoying characteristics that can be avoided if you set things up with specific care and knowledge originally.
I just got me replacement phone today. I will continue to update this thread with information as I find it. Hopefully it will help others in the process, since there will be more of us as insurance replaces people's phones.
Tips from day 1 of use
#1. Your intial live account can not be changed without a hard reset. Do not use an old hotmail account as you Windows Live ID. Create a new one. I recommend one that you will only use for this purpose. If you need to change it, you must wipe your phone (hard reset) to replace this. Your primary hotmail account cannot be removed and there is no way to not sync the contacts from it.
http://support.microsoft.com/kb/2430020
I recommend telling no one this id. Do not use the email for anything. Include some number or something, so it will not be guessed. do not store information in this account, such as emails or contacts, if it can be avoided. Plenty of other options like gmail for this purpose.
#2. Common email domains are easy to setup. Even custom ones are. But it first will try, then let's you configure.
#3. There is a list that has settings. Swipe from right to left to get to the list. Then go to settings. Now you can change things how old of emails to get and how much of it.
#4. Open an email with an attached pdf. Get the viewer. better to do this earlier than later when you need it. By default, the phone has no ability to view a pdf. The pdf viewer lets you do this.
#5. Stop looking for tasks, you won't find them. They don't sync with Exchange.
#6. There is not a built in twitter app. I am downloading moTweets, because I liked that before. I am using the Try option. There is also a free Twitter and a free Foursquare.
Looks like there is some map software. Not sure if it costs money yet.
Not finding Bing or Google Maps.
Bing is built in. just press the button in the lower right. Not sure why that is the only way to launch it though.
#7. Installed Zune with no issues on Windows Home 64 bit. It updates the software on the phone. You do not loose settings during this. Not like a ROM flash. Synced Videos, pictures, and music.
#8 Blue tooth paired easily. Remember most devices are 0000 for the pin.
#9 Found my WiFi and I connected it fine.
#10 Uninstall the bloat that AT&T puts on. It's not much, but you don't want apps that cost a monthly fee when free ones exist.
First impressions after 1 day
Allthough the look and feel is not customizable, it is very consistent.
A few things are not 100% obvious, but once learned is not difficult.
Things do just work.
Very fluid display. Nothing lags.
It's easy to get your stuff onto it. I need to still test copy and paste with Office.
I was thinking that I would be totally unhappy with the phone. But, I think it might just be doable. A non technical person should have no trouble with this phone.
Marketplace has alot of free apps.
Day 2
Not all clock alarm apps are equal.
Big Clock, which I downloaded from the marketplace failed to wake me this morning.
Tested the normal Alarms this morning and it did work with the screen locked.
As always test your alarm before you need it.
Annoyed that there are no snooze options. Just 5 minutes.
Glad Mango is coming soon. Mango gives all the snooze options we used to have.
Back in Windows Mobile 6.5 Digital Outcast gave us the snooze options that we were used to. M$ had taken them away.
For Win Phone 7, I haven't found a short term solution to this yet. Going to have to wait for Mango.
Liking the OS more and more. Marketplace makes the downloading and installing of apps very painless. Wish it was more clear about what has live tiles though.
AccuWeather weather app appears to be live. LG Clock and Weather does not appear to have a live tile, but lets you put in multiple cities.
Wish I could find the HTC tile with weather and clock. HTC Hub is not it.
Post #5
Intended to later have more info.
I like to have 5 posts of each thread I create.
As a potential future WP7 Device owner, I can't think of a better thread to follw than this one, so on behalf of myself and other TP2/Tilt2 owners who may one day move on, thank you very much for creating this thread...a lot of people move on from a deice earlier than the majority but don't leave the majority much of anything to work with in regards to what to move on to or to stay away from, or how to dial in the new device a better way than what the manufacturers have configured, so this thread is indeed very much appreciated...at least by me, and I am sure others as well.
While you will be missed in the Energy thread, I'm glad I have someone familiar to work with the new OS so should the time come, I will be versed as well as can be on what to expect, and do or not do...thank you for all you did for us with the Rhodium, and thank you in advance for all you will do for the WP7 community...you better the community here wherever you go or whichever thread you are posting in ....
Now for my first WP7 noob question...can the live tiles color be changed...and are there alternatives on this device to the live tiles?
GT247 said:
... Now for my first WP7 noob question...can the live tiles color be changed...and are there alternatives on this device to the live tiles?
Click to expand...
Click to collapse
Yes. They can be changed, but you get to change them all from 1 color to another.
slide the panels to the left. This now shows a list. Slide down to settings.
In the section titled Theme, tap it and pick a different color.
Other tiles, like music and video, and pictures get the image from what you have played or viewed.
The Me tile gets it's image from Facebook.
And apps can choose to follow the theme or provide their own image.
For the pictures tile, you can manually set it, by: "Open the Picture hub and tap and hold on an empty space and you'll get the option to select the picture you want." source of quote
End of day 2
Realizing that I do not dislike the phone or Windows Phone 7. This is very hard to admit.
With Windows Mobile 6.5 and 6.5.3 and Sense 2.5 with Cookie 2.0. It was fun figuring out all the ways to make the phone do what it should just do. With Windows phone 7. It just does them the way it is supposed to do it. It might not do it how you are used to it doing it, but it does it and it does it well. It can't do everything you're used to it doing, but it does what you actually need it to do and want it to do.
I was expecting to be extremely disappointed in the phone. But I'm not. Things work. You rotate to landscape. They still work. Energy Roms are much prettierand NRGZ28 did a fantastic job at making it do what it should do.
But Windows Phone 7 does a great job.
The things it falls short on will soon be corrected with Mango.
And no M$ did not pay me anything for this post. I am totally surprised that I would feel this way after just 2 days.
I suspected this would be the case....when everything runs faster and smoother and better without having to tweak it to do so, and the initial worry of not being able to tweak to your hearts content to make something you want to work work...when that worry wears off because you dont have to tweak it...well...when any worry wears off and you realize the new phone with the new OS actually really does improve a lot of things.. when everything opens up as your finger is leaving the screen and just starts doing what it's supposed to do...really...how can that be beat?
I'm glad you're giving us positive feedback, as I knew everything would run butter smooth, like yourself, I had reservations about liking the new platform and the new appearance and other changes you're going through with the new device could be overcome by functionality (lol)....
Yep....Mango should come out and lock you in my friend...I imagine after that you'll be glad that usb port died (just please, if you do end up happy about it, don't tell me so...cuz I'm bummed it happened still lol)
I'm curious as you explore...if there will be little things wp7 doesn't have, that the old winmo did...as I have two android devices and the tilt2, I'm finding some things lacking in "the other OS"...little settings (that are sort of kinda actually big deals, to me) are missing...one is...on the tilt2 I can select to show my caller ID to everyone, noone, or just to contacts...can you do that on the Quantum? Have you noticed a need to wonder how ram is controlled? Have you tried opening a zip?.....I'm happy you're on wp7 now (kinda)....I will want to buy a wp7 if someone I trust tells me theye tested it out, put it through it's paces and that it's a solid performer that's user friendly that I can count on to keep me connected to my customers and employees calls and messages and navigates me through my day and gives me awesome browsing and streaming media over the net between my appointments...yep...I'm paying attention to your thread my friend...my usb could go any day too....lol
Thought I found something that I could not do
Thought I could not accept an appointment from Outlook.
In the email, there is a link that takes you to your calender. You accept it from the tentative meeting. I like this better, because you can actually see what your day looks like when accepting it.
Have not found a free twitter program with a live tile.
For weather, the only free one with a live tile update seems to be The Weather Channel. Weather bug does not show anything on the tile. AccuWeather is not updated live.
As plain as the tiles look, they are clear too read. And everything scrolls so fast and smooth. I'll take plain with function for that responsiveness any day.
GT247 said:
I suspected this would be the case....when everything runs faster and smoother and better without having to tweak it to do so, and the initial worry of not being able to tweak to your hearts content to make something you want to work work...when that worry wears off because you dont have to tweak it...well...when any worry wears off and you realize the new phone with the new OS actually really does improve a lot of things.. when everything opens up as your finger is leaving the screen and just starts doing what it's supposed to do...really...how can that be beat?
I'm glad you're giving us positive feedback, as I knew everything would run butter smooth, like yourself, I had reservations about liking the new platform and the new appearance and other changes you're going through with the new device could be overcome by functionality (lol)....
Yep....Mango should come out and lock you in my friend...I imagine after that you'll be glad that usb port died (just please, if you do end up happy about it, don't tell me so...cuz I'm bummed it happened still lol)
I'm curious as you explore...if there will be little things wp7 doesn't have, that the old winmo did...as I have two android devices and the tilt2, I'm finding some things lacking in "the other OS"...little settings (that are sort of kinda actually big deals, to me) are missing...one is...on the tilt2 I can select to show my caller ID to everyone, noone, or just to contacts...can you do that on the Quantum? Have you noticed a need to wonder how ram is controlled? Have you tried opening a zip?.....I'm happy you're on wp7 now (kinda)....I will want to buy a wp7 if someone I trust tells me theye tested it out, put it through it's paces and that it's a solid performer that's user friendly that I can count on to keep me connected to my customers and employees calls and messages and navigates me through my day and gives me awesome browsing and streaming media over the net between my appointments...yep...I'm paying attention to your thread my friend...my usb could go any day too....lol
Click to expand...
Click to collapse
I had no idea that you could control the caller id being sent on a per contact basis with the Tilt 2. I imagine it was just inserting *82 or something before dialing. Ultimately the carrier needs to handle the *82 since they do know your number when sending from the tower to the rest of the phone network.
Still early in the testing.
I don't know WP7 settings, on the tilt2, to control caller id setting, I go to start menu>settings>personal>phone>services and then from there I can select "call barring" "caller id" "call forwarding" "call waiting" and "voicemail and text messages"....once an item is highlighted I can click "get settings"...once "get settings" is selected it checks the network settings and then displays the current setting on the network...on the TP2 caller id settings they can be changed on the network from the device...I'm hoping this is possible on WP7
Another question I have is if pinch to zoom works in emails and other apps, not just the browser
GT247 said:
I don't know WP7 settings, on the tilt2, to control caller id setting, I go to start menu>settings>personal>phone>services and then from there I can select "call barring" "caller id" "call forwarding" "call waiting" and "voicemail and text messages"....once an item is highlighted I can click "get settings"...once "get settings" is selected it checks the network settings and then displays the current setting on the network...on the TP2 caller id settings they can be changed on the network from the device...I'm hoping this is possible on WP7
Click to expand...
Click to collapse
GT247 said:
Another question I have is if pinch to zoom works in emails and other apps, not just the browser
Click to expand...
Click to collapse
pinch to zoom works when reading emails, but not when replying or text messaging.
found the setting about sending caller id on the Quantum
Settings - Apps - Phone. You can pick send to everyone, no one, only contacts
when the device is on a call does the lockscreen lock the buttons and touchscreen? ie: is it a waste of time to try to lock the device while on a call? lol
GT247 said:
when the device is on a call does the lockscreen lock the buttons and touchscreen? ie: is it a waste of time to try to lock the device while on a call? lol
Click to expand...
Click to collapse
The exchange server that I use for work pushes a policy forcing the phone to lock.
Pressing the power button on the top not only shuts off the screen but it also locks it.
When I answer the phone, it is easy to unlock, if I want. Just slide up, and enter the code. Then I can do anything while on the call.
The proximity sensor disables the touch screen when you have it by your ear, so you don't actidentally hang up.
Something the phone does not have is physical talk and end buttons. But, I honestly have not had a need for them.
Custom Ringtones and Alert Sounds
Although it's real eay for a developer add ringtones to their device or for anyone that has unlocked it. It is annoying that they have locked this down.
Mango is supposed to allow custom ringtones, so just need to wait.
Supposed to be on September 15th.
Wow...ringtones are locked down? Amazing....really. Please don't think I'm knocking them for doing it, I'm sure there's a reason for it, I just find it surprising is all. Have you examined the GPS Capabilities?
GT247 said:
Wow...ringtones are locked down? Amazing....really. Please don't think I'm knocking them for doing it, I'm sure there's a reason for it, I just find it surprising is all. Have you examined the GPS Capabilities?
Click to expand...
Click to collapse
GPS works great.
Good news is that the LG Quantum has a built in reg editor. Kind of clunky. Nothing like the good old Total Commander or Dot Fred Reg Editor.
And the location of there is an app the runs on your computer to make a xap files for ringtones.
And you can then sideload the xap onto the device and the ringtone remains.
First you need to unlock the device.
I have not unlocked mine yet. I should be able to unlock with just a few reg ediits. Haven't done it yet though.
On the 15th Mango officially will be available, and that allows custom ringtones without any hacks.
Some Good threads
Use your Windows Phone as a thumb drive.
Registry mods for WP7 - NoDo
Custom Ringtones
mp3 files work just fine, at least with the NoDo 7392 update.
All the built in ringtones seem to be mp3 as well
Lot of good links here
Hi. Here's the deal...my elderly parents are travelling this winter in another country. International roaming is expensive, as is international travel, and we're looking for as many ways as we can to save money. One of the ways we've considered to deal with both of these problems is to buy a sim card where they are at, rather than bringing their phone from home and paying outrageous international roaming charges. This is where Hero comes in...I have an unlocked HTC Hero that I could let them use. The problem is, they are intimidated by technology, and having a capable phone with lots of features is overwhelming to them. I was wondering if there's a way I can lock the phone down so it goes to the dialer and nowhere else. No lock screen, no email, no Android market, no text messages sent or received, none of that, just the dialer to make and receive calls. Ideally, I'd like to be able to return it to normal functionality when I get it back, but if this is a one-way thing, that's OK, too. It is currently running Elelinux-7.1-Hero-v3.6-Light.
I apologize profusely if this is a silly question...I'm new at all of this.
Tired_ said:
Hi. Here's the deal...my elderly parents are travelling this winter in another country. International roaming is expensive, as is international travel, and we're looking for as many ways as we can to save money. One of the ways we've considered to deal with both of these problems is to buy a sim card where they are at, rather than bringing their phone from home and paying outrageous international roaming charges. This is where Hero comes in...I have an unlocked HTC Hero that I could let them use. The problem is, they are intimidated by technology, and having a capable phone with lots of features is overwhelming to them. I was wondering if there's a way I can lock the phone down so it goes to the dialer and nowhere else. No lock screen, no email, no Android market, no text messages sent or received, none of that, just the dialer to make and receive calls. Ideally, I'd like to be able to return it to normal functionality when I get it back, but if this is a one-way thing, that's OK, too. It is currently running Elelinux-7.1-Hero-v3.6-Light.
I apologize profusely if this is a silly question...I'm new at all of this.
Click to expand...
Click to collapse
It's kind of easy what you want...but not every thing can be erased
1ownload eles ROM
2. Open the archive with WinRar or other app that you use
3. Go to /system/apps and you will find all the app there with the extension .apk
4. Delete what you think that they won't use (but be very careful): for example market.apk (you said that they don't need it)
4. Close the program and you will see that the rom is more lighter
5. Flash the rom
6. Enjoy
For the part with the lock screen i don't think i can help you...
Hope you get work done
Stefan
The lock screen part is really the important part. The other apps can still be installed, just abstracted away from my parent's eyes, if they're locked into the dialer. I guess I wasn't clear enough when I described what I was looking for. I want to make it so that the dialer program is the only program accessible to the user...when they press the home button, I want it to go to the dialer rather than to a launcher. When the screen goes off due to inactivity, I want it to go to the dialer right away when any button is pressed rather than showing a lock screen. On iPhone (sorry, it's a platform I'm more familiar with), there's a jailbreak app called IncarcerApp that can do this...is there anything similar for Hero?
Lockscreen
Hi there! If you want to get rid of the lock screen what you can do is go into settings on the phone then Cyanogen mod settings then tablet tweaks and in there, there is a tick box or similar that you can press to disable the lock screen!
Hope that Helped
Thanks for the tip, PP337, but that's still not what I am looking for. I did some Googling last night, and I found a lot of developers refer to what I am looking for as 'Kiosk Mode'. Unfortunately, everything I found on that is in the context of creating a new app, rather than using an existing one.
I'm obviously not making myself clear enough, but I'm not sure how I can phrase it more clearly. I really hope we won't have to go buy a junky SIMlocked Nokia phone that we'll have to throw out in three months when they come home.
i can't understand one think....why is it so hard to unlock a phone??? especially when it's so simple...
Stefan
Unlocking a phone is indeed simple, for you and I. But for an elderly person, particularly one who is unfamiliar with technology, being confronted with a screen full of app icons can be intimidating. I tried to get my mom to use the Android phone as it is, and she is terrified of breaking something or doing something wrong, to the point where she won't use it for those fears.
I have to say, I hadn't expected it would be this difficult to make this 'open platform' do what I want it to. If it were iPhone, I'd be done by now. Disappointing.
Could you not just remove all the homescreen icons? Can't remember which launcher comes with that ROM, but if you install launcher pro for example, you can remove all the icons even the dock. You can then choose to have just one homescreen and just the dialer icon. Or you could leave it blank to just select the dialer button to make calls. Then disable the lock screen as described above. Would that be ok for them ?
Tired_ said:
I have to say, I hadn't expected it would be this difficult to make this 'open platform' do what I want it to. If it were iPhone, I'd be done by now. Disappointing.
Click to expand...
Click to collapse
how old are your parents that you say that they "can't unlock" a phone... Both my parents use android on their phones and don't have any problems....
Don't want to be rude or things like that but it's easy on android...
Stefan
stefpaul said:
how old are your parents that you say that they "can't unlock" a phone... Both my parents use android on their phones and don't have any problems....
Click to expand...
Click to collapse
She's 72, and in the early stages of Alzheimer's. He's 70 and has a severe learning disability.
I tried the suggestion someone posted about LauncherPro with only one icon. She accidentally long-pressed an empty space and the menu came up and she didn't know what to do. I was able to tell her what to do because I am here now, but if that had happened when I wasn't around she wouldn't have been able to cope at all, for fear it was dialing some 1-900 number or doing something else she didn't want. I'm shocked that it isn't possible to lock Hero into a single app, but it seems it simply isn't. Thanks anyways for all your help.
Tired_ said:
She's 72, and in the early stages of Alzheimer's. He's 70 and has a severe learning disability.
I tried the suggestion someone posted about LauncherPro with only one icon. She accidentally long-pressed an empty space and the menu came up and she didn't know what to do. I was able to tell her what to do because I am here now, but if that had happened when I wasn't around she wouldn't have been able to cope at all, for fear it was dialing some 1-900 number or doing something else she didn't want. I'm shocked that it isn't possible to lock Hero into a single app, but it seems it simply isn't. Thanks anyways for all your help.
Click to expand...
Click to collapse
Are they traveling alone? That sounds like something you should worry about more then just having a phone for them
You could use adw and lock the desktop by pressing menu and choosing 'lock desktop'. That would prevent any accidental menus popping up. You could also hide the status bar from adw settings and disable the lockscreen from cm tweaks menu. You could also download a dialer widget (https://market.android.com/details?id=dialer.impact) and set that as a widget on a single homescreen and lock the desktop on adw launcher.
Hope that helped
Car Home may help
I was looking forward to install apps, develop apps and use apps on the android wear. When I installed the android wear sdk, and ran the emulator, it didn't seem very "huge". Not much can be done!
http://developer.android.com/wear/notifications/creating.html
As linked above, Google tells us to that we can add support for wear in a few lines of code. What can be done, is limited to the buttons that can be added when swiping to the right page.
No other documentation suggest that we can make Android Wear specific apps. It's not possible to add controls and widgets (Editabletext, button, spinner etc.) like it's possible in full android. Now i know that the screen is small, and limitations has to apply..
But the limitations are counted. Imagine receiving an email, swipe right, theres a reply button, click on it, voice will be activated, speak your message, and it will send it. That's pretty cool, but not cool enough..
What if i would like to add someone to cc?, not possible using the sdk, what if i would like to add a different signature? not possible.
The idea is fine, and it's awesome to see something new, i could really see it's potential, but as of right now, i am kinda disappointed.
I was noticing this also from the non developer point of view. All the marketing of the product it's based on notifications, at least the Gear was able to support the installation of apk's and i was excited since Android was about to release his own watch it was going to unleash all the real power of the smartwatches, but getting notifications from my mom telling me to buy milk does not sound like very awesome to me.
When Android Wear was first announced, I also heard that it was only for notifications. If that is really the case, I'm not interested and will keep my Gear 2 for now.
I think notifications are one of the obvious benefits, but there's going to be a lot more that we figure out how to do with them.
Sure, the interface is restrictive, but that's kinda the idea. The real benefit will be adding that little extra special sauce to the notifications in the context of whatever else is going on. And notifications don't need to just be a note from Dear Old Mom... geolocation, sensors, and other things may come into play.
After reading most of the AD site I sorta feel like you do when you know in about a hour and and a half you're going to have to have a seat on the pot - I know I've got a potential big idea in there somewhere, but it's just not ready to come out yet.
johdaxx said:
I think notifications are one of the obvious benefits, but there's going to be a lot more that we figure out how to do with them.
Sure, the interface is restrictive, but that's kinda the idea. The real benefit will be adding that little extra special sauce to the notifications in the context of whatever else is going on. And notifications don't need to just be a note from Dear Old Mom... geolocation, sensors, and other things may come into play.
After reading most of the AD site I sorta feel like you do when you know in about a hour and and a half you're going to have to have a seat on the pot - I know I've got a potential big idea in there somewhere, but it's just not ready to come out yet.
Click to expand...
Click to collapse
The only potential scenario i see working, is having a service, on the phone. That service will have created a notification, showing relevant information, let's say it's showing when sunrise and sunset (depending on the time of the day), if you swipe to the right, you can click on "Show someother info". When you tap that, it will start showing some other information, the service will then have altered the text on the notification.
Thats a potential and very possible scenario. Then again.. Is it really optimal? Apps that need to show this kind of information will take up all the notification space on the phone.