SMS sent confirmation - Touch Diamond, MDA Compact IV Themes and Apps

One thing I miss about my old phone is the "sms sent" confirmation I used to get after sending a message. (also with a little animation).
It's really annoying to have to go round the houses to get to the sent folder to see if a message has been sent or not.
I had a whole day with a load of messages unknowingly sat in the outbox thinking they'd been sent which really annoyed me. It was only after I checked at the end of the day I found out they hadn't
Does such a thing exist for the diamond or is it too dependant on windows mobile.
Also still have not found a decent lock program that locks EVERY button (including the power) and stops me answering calls getting my phone out my pocket and the sleeve. Tied s2u2 and touchlockpro but they are still unreliable
What was wrong with "menu - star" like on the nokias. - Worked a treat !!!
Any help would be appreciated
ROM Dutty 3.1 WWE
Radio 1.0.25.16

Alright mate.
Can't help with the locking problem, but here's what you need to do to get notification of SMS sent...
Go to the "messages" tab in TouchFlo and click "all messages". Then click "menu", "tools" and "options". Click "* SMS\MMS" and make sure "Request delivery notifications" is checked.
I don't use this myself, but I just tested it and it works for me.
Hope this helps you out.
John.

I use the following tip:
Use any Registry Editor, such as freeware CeRegEditor or PHM Registry Editor, and navigate to the following registry key:
HKEY_LOCAL_MACHINE\Software\Microsoft\Inbox\Settings\
If “Settings” branch does not exist, create a New Key with name as Settings. Then highlight Settings, and then create a new String Value key with value name as SMSNoSentMsg, with its value data as 1.

phreaq said:
I use the following tip:
Use any Registry Editor, such as freeware CeRegEditor or PHM Registry Editor, and navigate to the following registry key:
HKEY_LOCAL_MACHINE\Software\Microsoft\Inbox\Settings\
If “Settings” branch does not exist, create a New Key with name as Settings. Then highlight Settings, and then create a new String Value key with value name as SMSNoSentMsg, with its value data as 1.
Click to expand...
Click to collapse
... you're nearly right. You need to set the value to '0' if you wish to receive a notification that the SMS has been sent. If you set it to '1', you will not receive the notification (this is the default).

Nice one thanks guys. Went for the reg edit as didn't fancy getting a text back from operator every time I send one.
Just for the record yes the value of "SMSNoSentMsg" needs to be 0.
Again cheers for your help

Resurrecting this thread
I discovered this one earlier today, so far I'm liking it.
SMS Retry Notification
Enables/Disables a notification when an SMS message failed to be delivered. The phone will display a Popup displaying a summary of the message, to whom it was sent and when, and ask if you would like to try again.
[HKCU\ControlPanel\PhoneExtendFunction\CDMA] change PhoneExt_SmsRetry
0 - Disable (Default)
1 - Enable
My phone is a Sprint CDMA phone (hence the registry address) but hopefully it's not a Sprint setting and other CDMA phones and maybe GSM phones have a similar location.

Retry Notification
smotrs said:
I discovered this one earlier today, so far I'm liking it.
SMS Retry Notification
Enables/Disables a notification when an SMS message failed to be delivered. The phone will display a Popup displaying a summary of the message, to whom it was sent and when, and ask if you would like to try again.
[HKCU\ControlPanel\PhoneExtendFunction\CDMA] change PhoneExt_SmsRetry
0 - Disable (Default)
1 - Enable
My phone is a Sprint CDMA phone (hence the registry address) but hopefully it's not a Sprint setting and other CDMA phones and maybe GSM phones have a similar location.
Click to expand...
Click to collapse
Sweet. I also like the original setting in this thread. I like to know when my text is sent. I don't use text that ofte, s this is not an inconvenience to me.

Related

Scripting a text message for London Congestion Charge

Hi there,
Is it possible (or could any kind developper!) to script a text message that would always have the same text.
Basically to pay the London Congestion Charge (£5 for driving into Central London), one needs to send a text message to the number 81099 containing the last four digits of their credit card.
As the message is always the same, I thought it might be easy to script such a message to make it easy to pay the charge.
Thanks!
isn't that easy? set up your pre set messages as the words and numbers u need so then u create a new text and click my text chose the one u want and send it!
Hi,
Thanks for your reply. I see what you mean, but that is still several clicks more than I have in mind. With a script/batch file, it would literally be a one button (through a shortcut) click which could even be assigned to a hardware button. Lazy ... maybe! I guess it all really depends on whether the function to send a text message can be accessed from the command line.
no kidding ur lazy!
You can write smssender.html which will include a javascript, that will redirect you to:
mailto:123456789 body="Send me a taxi!" - I'm not sure about the syntax...
Everytime you execute this webpage, you will only have to confirm SMS sending and close IE (I don't know if window-terminating scripts work in PocketIE) :idea:
(!)
I don't know if you're willing to pay for it, but there is a utility called Cell Profiler found here
You can pre-define an SMS to be sent to a particular number when you drive through a particular point.
Download the trial and see if it fits in with your requirements.
You can use the scripting utility called nscriptm to automate your screen taps etc. Give it a go. Its fairly simple and there is a good sample that shows you how to work with screen taps.
Thanks for your replies. I will try each and see what works best for me.
Thanks again!
XDA2-owner said:
Hi there,
Is it possible (or could any kind developper!) to script a text message that would always have the same text.
Basically to pay the London Congestion Charge (£5 for driving into Central London), one needs to send a text message to the number 81099 containing the last four digits of their credit card.
As the message is always the same, I thought it might be easy to script such a message to make it easy to pay the charge.
Thanks!
Click to expand...
Click to collapse
I wonder if I understand you correctly. In my SMS messaging on the XDAII I have something called My Text as a menychoise. The predefined messages in there can be added/amended in the Edit menu...You could do it easily there...?
Hi,
Yeah - someone mentioned that earlier. What I was really looking for though was a literally one-button way to pay my congestion charge - basically a shortcut to a batch-file/script that creates the SMS, enters the text and addresses it correctly.
Does anyone know if the mailto: command that you can use to create an e-mail would work for an SMS? If so, that would be fine as within the mailto: command you can specify the recipient (81099 in this case) and the text (credit card digits).
Thanks for all the responses.
1. PPCs don't make any difference between e-mails and short messages - you have same dialog, same options and same mailto: command...
2. JavaScript in HTML page is probably the fastest way to perform actions you need (if you dont want to write it in C++ of coz!)
3. If I'm not too drunk today I'll have probably posted an example of such page by tomorrow - I finished with school today, so I have something to celebrate! 8)
Would be great to see a javascript sample if you could be bothered/sober enough to put one together.
Thanks very much indeed.
So, that's what it looks like:
<html><body>
<script language="JavaScript">
window.location="mailto:81099?body=Here's my creditcard number!"
</script>
</body></html>
mailto: - where
body: - what
You can also add subject: (don't forget to divide it with "?" :!: )
It looks like Pocket IE does not support close() function. Can anyone confirm? Any way, even if you will have to close IE manually, executing this file (possibly from Today screen) and pressing SEND is still faster than going to New>SMS>MyText>choose>enter number>confirm... 8)
That worked just great! Thank you so much.
I used the PHM Pocket PC PowerToys's TrayLaunch program to put a shortcut to the .htm file onto the bottom bar of the Today screen.
I still need to press the Send button (is there a way to automate that?) and close IE but it's still MUCH quicker than doing it through a manual SMS.
Thanks again for all comments and help.
Compose new text message from shortcut
Hi there,
I'm a total newbie (NOT a programmer at all), just a Qtek 9090 addict. I 've been looking for something similar to your request: I wanted a way to go straight to the "compose text message" window from the today screen or a hardware button. I finally found a way to do this (maybe not the best way, but I can't find a site that lists all the possible parameters for tmail.exe).
If you're still looking for a better way to automatically launch your message, try this:
Copy the "Messaging" shortcut from Windows/Start Menu and put the copy somewhere you can work on it. Rename it to something like "London Congestion".
If you have Resco file explorer on your device, select your new shortcut and view its properties. On the second tab ("shortcut"), you should see the line "\Windows\tmail.exe". Change it to this:
"\Windows\tmail.exe" -service "text" -to "81099" -body "your credit card number"
Then tap "ok".
Move your new shortcut to Windows/Start Menu/Programs. Now you should be able to access it with your Today screen launcher or Button launcher.
If you don't have Resco file explorer, copy your shortcut to your desktop and open it with Notepad. You'll see something like 43#"\Windows\tmail.exe"; just leave the number at the front, make the adjustments I described and save the file. Then put it in Windows/Start Menu/Programs on your device.
I tested this and it worked for me, so I hope it does for you too!
To simply go to the "compose" window from a shortcut, I use this line:
"\Windows\tmail.exe" -service "text" -to ""
Robrecht.
Thanks a lot Robrecht,
I was actually going to re-open this issue because I have a Blueangel now - and I don't know if it's because it is WM2003 Second Edition or not, but the javascript that was written for me in the above post no longer works, so I needed a new method.
A very timely reply and I will try it over the weekend.
Thanks a lot,
Jimmy
I think you should add "I hope it chokes you bunch of rip off bastards" We pay road tax, we pay huge tax on fuel, we sit for hours in jams and they want money :?:
Well, XDA2-owner, you're very welcome!!!
I have a Blue Angel too and it works for me, except....... I discovered a flaw.
I thought the
-service "text"
parameter made sure the automatically created message was always a text (SMS) message, but instead it turns out that the format of the new message (SMS, e-mail, MMS...) changes according to the last viewed folder in Pocket Outlook. So if you were checking your e-mail account just before you use my shortcut, it wil create an e-mail instead of a text message.
This sucks! And I was so happy I'd been able to help someone!
Does anyone know a way to make sure the new message is always a text message?
Hi again,
This issue was one I was also having with the Javascript - I got used to the fact that if I was using the e-mail part of Messaging, I would switch it back to SMS before closing it.
One issue I am having though - and it might just be to do with my setup - is that when I run the shortcut from Start-->Programs-->Congestion, it works fine. When I try and launch it from my Today screen though, using BatteryPackPro, it doesn't seem to create the text message, and just stays on the Today screen.
Any ideas?
Thanks again for your help and ideas.

Phone alarm and SMS problems

Installed PhoneAlarm 1.22, used it, nice not useful for me, therefor i uninstalled it,
but since i did that whenever i send SMS messege and litte windows that used to come every time that says "MESSENGE SENT" has stopped from comming!!
How can i bring this windows back? (NOT SMS DELIVERY) but SMS SENT.
so i will know the SMS is now on the sent items folder.
Thanks.
Without sounding rude i would suggest the best place for this post is the forums over at www.pocketmax.net
you didnt understand, i uninstalled the Phonealarm.
now the SMS Send window disappeard.
i want it back.
I do understand....they are the application developer and you will get better help directly from them in their forums.......it might need a regedit to get it back.
Exactly the same for me after installing and removing on my Qtek 9090 - as well as messing up the order of Today Items, which I can't now change back (or rather can change but changes aren't effective!)
It seems that this setting writes to
HKLM\SOFTWARE\Microsoft\Inbox\Settings the string value "SMSNoSentMsg" and sets it to 0 or 1 according to the checkbox.
As long as I understand, the value is not relevant - the sms sent notification is disabled by the presence of the string, not by its value.
phoneAlarm should delete the string when the box is checked, and add it when the box is unchecked.
Until it will be fixed, to get the sent notification back, delete the "SMSNoSentMsg" from the registry.
Cheers for temporarily!!
Nice one.
Now can you sort why my Today Items won't display in the right order ?
Thanks a lot.
Rick
What do you mean by right orders? and what should be the right order?
I arrange my Today Screen Items thus ;
Date, Messages, Tasks, Calendar, Spb Pocket Plus, Sprite Back-Up and Battery Bar. Since installing and deleting Phone Alarm, I can't get this order on the Today Screen. START/SETTINGS/TODAY/ITEMS and then move items up/down but Calendar (for example) moves up when I'm setting the positions, but doesn't ACTUALLY go to the position on the Today Screen. When I go back to the up/down screen it shows dropped back down. ??????
THANKS it workS!!!!!!!!!!!!!! :lol: :lol:
double_ofour.
Found this fix from "tekguru" on their forum.
HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Today/Items
and check that the 'Order' value against each today applet is unique. The problem is caused by at least two applets sharing the same ID . Simply changed the values so that no 2 were the same and all is OK.
Still no idea why Phone Alarm changed them though !

How to disable USSD notification balloon?

Hi all
I'm trying to develop a windows mobile 5 managed application on AT&T 8525 smart phone, and on a prepaid plan from AT&T.
Unfortunately, the prepaid plan sim generates notification messages about the current balance preriodically, and this happens even if my application is running!!!
Is there anyway to trap, disable, or surpress system notification through managed code, phone settings, or registry hack?
I spent some time playing around with the registry settings, especially those under: HKEY_CURRENT_USER\ControlPanel\Notifications. However, I was not able to get it to work.
Note that the notification comes from the network as a USSD message.
I have been trying to find a solution for this problem for a while, so any help would be greatly appreciated.
Stanley
I have been looking for a way to disable ignore get rid of etc etc of that annoying USSD message. If you come up with anything please shoot me an e-mail.
However... I have a nokia 5500 that I use with a prepaid sim sometimes and it does something wierd. Usually it will start ignoring the balance notification message. If I have the MP3 player going and I send and recieve texts through the nokia suite it will eventually stop showing the messages. Not sure why and my Nokia friend didn't know why either. It has to go through the whole thing again if you reboot the phone though. I'm afraid to upgrade the firmware as I might loos this really great feature.
But if you come across something let me know as I have been digging all over for a solution and there is almost no info on it out there other than frustrated customers.
hklm\services\ussd
Notification balloon suppression SOLVED
After much searching and tinkering I finally found a simple way to disable the annoying balance notification message that arrives after every data connection on the AT&T Pay As You Go service with a data package. This fix involves adding a single registry entry and it suppresses all USSD messages that originate from the carrier, even those that you might request manually.
Here is the registry change:
HLKM/ControlPanel/Phone
New value: SuppressUSSD := DWORD(1)
Add this value and (probably after a soft-reset) you will not be bothered with the $0.00 change notification messages.
-Kevin
Samsung Sync
I have this same problem with my Samsung Sync it is also prepaid. How do i disable the notifacation using Bitpim? or what is the program you used to disable it with.. Sorry I'm new to this and don't really understand what I'm doing.
Thanks
sdkevin said:
Here is the registry change:
HLKM/ControlPanel/Phone
New value: SuppressUSSD := DWORD(1)
Add this value and (probably after a soft-reset) you will not be bothered with the $0.00 change notification messages.
-Kevin
Click to expand...
Click to collapse
Thank you!! Worked like a charm
Thanks
Many thank yous, worked for me as well. I called ATT before finding this and they told me there was no way to turn them off, looks like I have to spread the word now.
HLKM/ControlPanel/Phone
New value: SuppressUSSD := DWORD(1)
-Kevin[/QUOTE]
I am new to registry editing. I am going into the phone folder (using PHM), Selecting "New DWORD value," typing "SuppressUSSD" in the value name field, entering 1 in the value data field, and selecting decimal. I am still getting the popup notifications.
Sorry to ask such a newbie question, but what am I doing wrong?
help please.
sdkevin said:
After much searching and tinkering I finally found a simple way to disable the annoying balance notification message that arrives after every data connection on the AT&T Pay As You Go service with a data package. This fix involves adding a single registry entry and it suppresses all USSD messages that originate from the carrier, even those that you might request manually.
Here is the registry change:
HLKM/ControlPanel/Phone
New value: SuppressUSSD := DWORD(1)
Add this value and (probably after a soft-reset) you will not be bothered with the $0.00 change notification messages.
-Kevin
Click to expand...
Click to collapse
is this something i have to do on the computer or on the phone? i need your help with this step by step. please reply asap. email at [email protected] if need be.
This would be on the Hermes. You can find a regedit tool by using the search function or just check in your programs directory (check all folders too, especially tools) as it may have been cooked in.
Cheers...
sdkevin said:
After much searching and tinkering I finally found a simple way to disable the annoying balance notification message that arrives after every data connection on the AT&T Pay As You Go service with a data package. This fix involves adding a single registry entry and it suppresses all USSD messages that originate from the carrier, even those that you might request manually.
Here is the registry change:
HLKM/ControlPanel/Phone
New value: SuppressUSSD := DWORD(1)
Add this value and (probably after a soft-reset) you will not be bothered with the $0.00 change notification messages.
-Kevin
Click to expand...
Click to collapse
Thanks a lot, you made my day.
hello
could somebody explain this step by step please
i need it baaaaaad!
at &t notification
I have a blackberry curve 8310. I am on the go phone plan and i am tired of getting these notifications after every thing i do. Can somebody walk me through on how to get this off.
for wm6 users, i have written a walk through in my blog, hope this helps
http://www.xanga.com/ewcy/692252173...nnoying-att-gophone-balance-reminder-message/
sweet
awesome. just used this to help a friend of mine who has uses prepaid cingular with his 8525. worked great!
thank you!!!
sdkevin said:
After much searching and tinkering I finally found a simple way to disable the annoying balance notification message that arrives after every data connection on the AT&T Pay As You Go service with a data package. This fix involves adding a single registry entry and it suppresses all USSD messages that originate from the carrier, even those that you might request manually.
Here is the registry change:
HLKM/ControlPanel/Phone
New value: SuppressUSSD := DWORD(1)
Add this value and (probably after a soft-reset) you will not be bothered with the $0.00 change notification messages.
-Kevin
Click to expand...
Click to collapse
worked like a charm for the wizard
just got at&t today and it already started to bug me
ww2250 said:
hklm\services\ussd
Click to expand...
Click to collapse
once here what do u do
what do you turn off
Thank you so much for the info.. i disable that annoying pop up on my HTC touch viva.

Repeat notification sound- HTC Pure

How to enable "play sound/repeat" in Sound & Notifications audio settings?
If I missed a notification (email or reminder) I'd like to hear a beep or other sound at selected intervals.
Thanks,
Andy
SMS Notification repeat
Since we are noobs and not real, I thought I might share my searching results. First the search only returns results with "sms repeat", and not much with the Topaz. I had the same problem with my old Kaiser, and there was a great little program on Modaco (http://www.modaco.com/downloads-file2400.html) that I think was more about led notification but worked for my need to get repeat SMS notification. (I am a network engineer that is on call a lot)
I did a bunch of registry hacks on the Kaiser but nothing that worked very well and ended up using Phils program above, but not on my Topaz yet. It is still stock ATT rom.
I did find references to 3 other programs:
MissedCallReminder
PhoneAlarm
spb phone suite
The Phone Alarm (http://www.pocketmax.net/phoneAlarm.html) has a couple of varients, and looks like it might be easy to install, and has a small footprint piece called AlarmPal that has a feature of turning on and off bluetooth that might be helpful if battery life is an issue.
Phone Alarm supposedly works on 6.5. AlarmPal looks like just 6.1 and below, but there are posts about Diamond with a WM 6.5 ROM.(less than $12.00US)
Missed Call Reminder is from here (xda-developers) and looks like one of the moderators might be using it but the post is from Nov, 2008. He has updated it and the files in the cab are from April of 2009. It uses 236K of memory. Not sure if that is alot or little.
I do not have time today to try these out, but should have a little time later in the week.
I too would like this feature enabled. There has got to be reg tweak that will enable the "repeat" box to be checked under sounds & notifications. I will search around as well.
I found this in another forum so I will post it here too. It is over a year old post so I'm not sure if it works yet but I will try it out and post my findings if you all want to wait for confirmation if it works or not on WM6.5. Thanks to Jackalz for this find (http://forums.techarena.in/tips-tweaks/992968.htm).
In Registry Editor, navigate to the following registry key branch:
HKEY_CURRENT_USER\ControlPanel\Notifications
There is a lot of registry sub-key inside the Notifications folder. Search through one by one to find and locate a registry entry that has its Default (REG_SZ) value as the name of the event. For example, Messaging: New e-mail message, Messaging: New text message, Messaging: New MMS message, Phone: Missed call and etc.
Once found the correct registry sub-key that represents the event that you want to enable the “Repeat” option, edit the value data for Options value name. Change the value to 1073741835 (in Decimal base) or 4000000B (in Hexadecimal HEX base format). Save and exit from registry editor.
Now the Repeat check box is enabled, and user should be able to set repetitive and recurring event notifications.
EDIT: I have just verified that these registry settings worked. I was able to enable the repeat option for New emails, new text and new mms message. CHEERS!
Edited post: I did the above registry tweak and as in the kaiser, It would not stop repeating after reading the sms. I deselected the repeat option and set the registry key back to 0000000b. back happy again..
Old post:
I will try that one.. On the old Kaiser, it would repeat, but unable to turn it off. It kept repeating, no matter what I did to turn it off.. Thanks,
Jack
SMS repeat notification
AlarmPal worked... and even quit "reminding" me after I turned it off..
SMS repeat notification program testing results
Missed Call Reminder: looks like low footprint but repeated Voicemail notification even when I did not have voice or voicemail notification on. Only way to turn off the voicemail notification was to actually listen to the voicemail, just acknowledging it would not turn off the alert. Also after opening it up once, have to reboot the phone to get back into the configuration. Not a problem if I was able to turn off the voicemail alerts.
Alarm Pal worked as advertised but memory usage climbed from 72% to 82% in 14hrs. Will reinstall and continue monitoring.
ramseyjack said:
Missed Call Reminder: looks like low footprint but repeated Voicemail notification even when I did not have voice or voicemail notification on. Only way to turn off the voicemail notification was to actually listen to the voicemail, just acknowledging it would not turn off the alert. Also after opening it up once, have to reboot the phone to get back into the configuration. Not a problem if I was able to turn off the voicemail alerts.
Alarm Pal worked as advertised but memory usage climbed from 72% to 82% in 14hrs. Will reinstall and continue monitoring.
Click to expand...
Click to collapse
ah, maybe that's why they disabled it in the first place. haven't experienced that issue with email's or text messages on mine.
Repeat Notification SMS
Have been using Alarm Pal for a few weeks, and it works quite well. I still have the memory usage pump up to above 80% pretty quickly (8-16hrs) but I am a real heavy user of both email, text, alarms and phone. Any others using something different with a smaller memory footprint?
ramseyjack said:
Have been using Alarm Pal for a few weeks, and it works quite well. I still have the memory usage pump up to above 80% pretty quickly (8-16hrs) but I am a real heavy user of both email, text, alarms and phone. Any others using something different with a smaller memory footprint?
Click to expand...
Click to collapse
I used MSentinel, you could try that! (after installing you should check the settings - mine checked the status every 1s and drained the battery very fast)
http://forum.xda-developers.com/showthread.php?t=529227
On my Typhoon I used an modified version of MortScript-based reminder - it does not stay in memory, uses wm-s notifications system and executes itself after given time (made also a full hour bell from it ). Its even possible to create a custom scheduled task with it - for example run pim backup every saturday night.. The original script came with a rom from xda-dev. - dont remember the name of it
MortScript:
http://www.sto-helit.de/index.php?module=page&entry=ms_overview&action=view&menu=29
Something like that:
http://discussion.treocentral.com/showpost.php?p=1184745&postcount=17

SMS Status!!!

Dears,
How can i know my sent SMS status on my HTC Diamond 2 mobile??
(Sent - Received,...)
is there anyway to know that?
When writing the SMS, go to options- there is the option for a delivery report.
Sorry to hijack this post.
But I have just updated my phone with the official windows mobile 6.5 from the HTC website. For some reason I now can not set the LED to stay on until I have read the message like I used to be able to. The tick box is greyed out. Does anyone know a way around this?
SQueal. there is a regedit to fix this. get a regeditor,if you dont already have one and navigate to HKCU\Controlpanel\Notifications and find entry A877D65B…
change AvailableOptions value to 15.
hello. I have tcm and as I understand, i can edit the registry. Where do i find it? Thanks for your time
codhunter said:
SQueal. there is a regedit to fix this. get a regeditor,if you dont already have one and navigate to HKCU\Controlpanel\Notifications and find entry A877D65B…
change AvailableOptions value to 15.
Click to expand...
Click to collapse
Thanks codhunter, is there a registry editor on the phone, or can I access it through a PC one when its hooked up via active sync?
While I am in there, is it also possible to change the text message alert to something I want, I notice that they have removed this on the updates as well which is quite irritating.

Categories

Resources