Add "(" and ")" to Phone Keypad "1" when writing a SMS??? - Touch Diamond, MDA Compact IV Themes and Apps

Add "(" and ")" to Phone Keypad "1" when writing a SMS???
Is it possible to add the "()" signs to the "1" in the keypad when writing a SMS. Would that would give me the option of making a "" ???
Thanks
Lasse
Edit "On a diamond" with Dutty 2.9 RTM

the smilies are saved in the symbol list on page 12/13...
if you want to write a " , :-( " or stuff like that, just press "symbol" and go to page 12/13

Related

Need helps on MiniS keyboard

Hi there,
I have problems with my MiniS's keyboard (the real one - I do not know what's called). The character keys work fine except for symbol keys. It gives me some wrong symbols. For instance, when I pressed "●" key then "S", it should give me "@" symbol; however "!" symbol was what I got !
Any helps are appreciated!
Have you set the right regional settings?
Solution Worked on mine!
You need to modify 3 settings in the registry, i had to change my keyboard to uk layout after flashing, to do this i:
1) Downloaded and installed PHM Registry editor
2) Change the following settings: HKCU >> ControlPanel >> Keybd
create or change string named Locale and enter this code 0809
2. HKCU >> keyboard layout >> Preload >> 1 >> Default
change value of last 4 digits to 0809
3. HKCU >> keyboard layout >> Preload >> Default
change value of last 4 digits to 0809
Then use your minis for 5 minutes then do a soft reset, this should then change the keyboard layout, i have had a problem in the past were i have had to do the above 2 or 3 times before it worked, but that is just probally my phone being weird.
Just altering the setting: HKCU >> ControlPanel >> Keybd >> Locale to 0809 should do the trick.
If the other two reg keys are changed I find that when I send a text message, the contacts don't auto complete after entering the first letter(s) of a contact. Leave them as 0409 7 they do.
Thanks all in advance!

[Howto] Open Dialer on Slide-Open with SlideActions in TouchFlo/Manila2D only

How to make Phone Dialer pop up when using slider from TouchFlo/M2D home
I am a big fan of the SlideActions application here, but when you use a cooked ROM with TouchFlo2D / Manila2D the "Open Dialer when on homescreen" as Slide-Open-Action does not do due to a different process running in foreground.
The options discussed in the SlideAction thread are not really cool, they open the dialer application always - even if you're in writing a new mail just want to use the keypad to type text.
Not a clean solution, but a temporary workaround (until SlideActions will be updated?) will be using a tiny MortScript as helper:
Step 1:
Install MortScript on your phone and copy a new script (textfile with .mscr extension) on your phone containing these lines:
Code:
x = ActiveProcess()
If (x eq "Manila2D.exe")
Run( "\windows\vtkey.exe" )
EndIf
Step 2:
In SlideAction's "Advanced" tab, add MortScript.exe as custom action with the dropdown and type the full path and name of your newly created .mscr file in the Param field. Now in the Event dropdpwn select the On Open field and chose the Run radio. Finally change the On Close Event to Null.
Here we go: Now, everytime you open the slider, the script checks if Manila2D is in foreground, and if, opens the dialing application. When opening slider while writing an email or text message, nothing happens!
Enjoy!
MoritzN you are a genious!!! i had the same problem!!! now it's fixed and runs perfect!!! thank you for your help!!!

Fail to sync text messages (Microsoft Myphone) on build 28014

the item (text messages) is grey and i was unable to tick it
tried 2 roms here and got same result.
Edit the following using your reg editor:
HKLM\Software\Microsoft\My Phone, change the registry value "DisableSMSDataType" from "1" to "0"
ClydeB1 said:
Edit the following using your reg editor:
HKLM\Software\Microsoft\My Phone, change the registry value "DisableSMSDataType" from "1" to "0"
Click to expand...
Click to collapse
Thank for the help I was just about to post the same question.

[Q] lock button on home screen?

hi guys
i have the us model, t-mobile hd2 with original rom.
could someone tell me please if it is possible to change the left softkey "phone" button to a "lock" button, same as the left softkey on the start screen?
it might be like what is done here:
74. Add All Contacts to Home Screen Left Softkey
By default the left softkey on the the Sense home tab is coded to Phone which is pointless and a waste because you can get to the same Phone page by pressing the Send hardware key. Change it to the All People page (eliminating 2 taps) by using the following reg entry:
HKLM/Software/HTC/Manila
HomeLSKPath = !"\Windows\manila.exe" --switchtopage Manila://people\browserlayer\?.page
HomeLSKText = Contacts
but instead of going to the contacts page it would preform lock.
does anyone know if this is possible and if so what reg. changes i would make?
thanks very much
maybe if you change the path to \Windows\DeviceLock.exe?
like this:
HomeLSKPath = !"\Windows\DeviceLock.exe"
HomeLSKText = Lock
i had tried that and i got this error popup:
"The file 'DeviceLock' cannot be opened. Either it is not signed with a trusted certificate, or one of its complenents cannot be found. You might need to reinstall
or restore this file."
thanks
does the file DeviceLock.exe exist in your windows folder? maybe it has a different name. alternatively, try this:
Code:
HomeLSKPath = !"\Windows\Lock.lnk"
edit: just tried it myself, it works
DeviceLock.exe seems to be a ROM file (on my device it is), so this could cause that problem.
if that does not work, install BSBTweaks, in the "General" section activate "policies: allow unsigned apps". (<-- should not be necessary, as i am sure that all executables by microsoft are digitally signed )
thanks much for the ideas wergor
i do have the devicelock.exe, its lockdevice.exe on this phone.
i tried all combinations without any working. keep getting the error message.
im giving up.
thanks anyway
by the way, Graz looks fantastic.
hmmm....this shouldn't be such a problem...
1- have you tried (no ! or " " ):
Code:
HomeLSKPath =\Windows\DeviceLock.exe
HomeLSKText = Contacts
2- try this Lock.exe (extract the zip and place in the \Windows folder) -- totally safe; took it from Johcos' endkey and use it on my phone -- with the following:
Code:
HomeLSKPath =\Windows\Lock.exe
HomeLSKText = Contacts
i have tried all, with nothing working.
i believe its time for a hard reset.
thanks for all ideas

textview

*** sory for bad English***
hey ,
i have this code
"
Sequnce=(TextView)findViewById(R.id.textView3); "
after that i have a button ' in the botton action(onclicklitner)
i have that
"
for(int i =1; i<100 ; i++){
Sequnce.setText(i +" ");
}
"
when it print "i" i see only 99
how can i see 1,2,3,4,5,6,7......89,99 ?
thx!!!!!
setText merly replaces the text existing text in the textview. So you only see 99. To make the textview show numbers from 1-99, use append instead of setText.
Code:
Sequnce.append(i + ",");
tnx
vijai2011 said:
setText merly replaces the text existing text in the textview. So you only see 99. To make the textview show numbers from 1-99, use append instead of setText.
Code:
Sequnce.append(i + ",");
Click to expand...
Click to collapse
thx!!!
1. what code do i need thet aftter the bottun press it can not be press again ?
2. i wanna have a boutton that re start the progrem , bring it to the beginig or restart the activity .... what cose to put in the on click listner .
tnx!!!!
liadliad5 said:
thx!!!
1. what code do i need thet aftter the bottun press it can not be press again ?
2. i wanna have a boutton that re start the progrem , bring it to the beginig or restart the activity .... what cose to put in the on click listner .
tnx!!!!
Click to expand...
Click to collapse
1:
Use setEnabled():
Code:
myButton.setEnabled(false);
sorry. The internet is bugging me from this morning. I suppose you got the answer for your 1st question from nikwen. For the 2nd one, You can call
Code:
onCreate(null);
to restart the activity.
nikwen said:
1:
Use setEnabled():
Code:
myButton.setEnabled(false);
Click to expand...
Click to collapse
vijai2011 said:
sorry. The internet is bugging me from this morning. I suppose you got the answer for your 1st question from nikwen. For the 2nd one, You can call
Code:
onCreate(null);
to restart the activity.
Click to expand...
Click to collapse
tnx !!!!!
i have more questions
i have a string whit text in my string.xml file i want only 2 words from the string became blod
if i aplly style from my stelys.xml i get all of the string is bold
explain i want
text - " djaisjgidsjfodsjgfds text more text "
tnx for help
liadliad5 said:
tnx !!!!!
i have more questions
i have a string whit text in my string.xml file i want only 2 words from the string became blod
if i aplly style from my stelys.xml i get all of the string is bold
explain i want
text - " djaisjgidsjfodsjgfds text more text "
tnx for help
Click to expand...
Click to collapse
Use html for that. You need to modify one line for that: http://stackoverflow.com/questions/2116162/how-to-display-html-in-textview

Categories

Resources