[WM6.5] [Programs] JML.... tools (02-Nov-2010) - Windows Mobile Apps and Games

Programs Used in JMLToday <= 5.92​
Post#2 : Programs Informations
JMLPicture.exe See Post#3
Build a picture from multiple images/texts
JMLMenu.exe
Displays a context popup menu.
JMLComm.exe
Phone on/flight-mode, Wifi on/off, BT on/off/discoverable, Data on/off
JMLCalendar.exe
Saves the next appointments in registry
JMLSms.exe
Saves SMS in registry
JMLContacts.exe
Saves the next birthdays/anniversaries AND Favorites contacts in registry
JMLMeteo.exe
Saves the MSN or ACCU or GOOGLE weather informations in registry
JMLTasks.exe
Saves the next tasks in registry

Programs Informations ​
JMLMenu v1.80
The menu is configurable via a .mnu file :
- The main menu is [Menu]
- One element per line of menu : label= program;parameters
- One section per submenu : use [] -> label=[mysubmenu]
- External submenu (.mnu file) : use {} -> label={filesubmenu.mnu}
- Separator : sepX=SEPARATOR (X=unique number)
Parameters :
Code:
[b][color=red]-execute[/color][/b] if menu as once choice, it execute it immediately (menu not show)
[b]-x:[/b]X = X coordinate (X clic per default)
[b]-y:[/b]Y = Y coordinate (Y clic per default)
[b]-timeout:[/b]N = timeout in seconds to hide menu (10s per default)
Example : JMLAction.mnu
Code:
[Menu]
Restart Titanium=%JMLTODAY%\JMLToday.exe;-refresh
Update=%JMLTODAY%\JMLToday.exe;-update
Weather=%JMLTODAY%\JMLMeteo.exe;-jmltoday
Configuration=[color=blue][b][Config][/b][/color]
Parameters=[color=blue][b]{JMLParameters.mnu}[/b][/color]
[color=blue][b][Config][/b][/color]
Clock=%WINDOWS%\ctlpnl.exe;cplmain.cpl,16,0
Skin=%JMLTODAY%\JMLTodaySkins.mscr
City=%JMLTODAY%\JMLTodayVille.mscr
Language=%JMLTODAY%\JMLLang.mscr
To Launch :
- in a .pnx file : %JMLTODAY%\JMLMenu.exe;JMLAction.mnu
- in a .mscr script : Run(instPath&"\JMLMenu.exe","JMLAction.mnu")
---------------------------------------------------------------------------------
JMLComm v1.98
Parameters :
Code:
[color=red]-vibrate:duration[/color] = make a vibration (duration=25ms per default)
[color=red]-volume[/color] = toggle vibrate/mute/normal mode[color=red]
-volume:mode[/color] = volume mode : [b]vibrate,mute, normal[/b]
[color=red]-volume:level[/color] = volume level : [b]silent,verylow,low,medium,high,loud[/b]
[color=red]-backlight[/color] = toggle auto/manual mode
[color=red]-backlight:mode[/color] = backlight mode : [b]auto,manual[/b]
[color=red]-backlight:level[/color] = backlight level : [b]mini,low,medium,high,maxi[/b]
[color=red]-gps:timeout[/color] = store latitude/longitude in HKCU\\Software\\JML\\Comm (timeout=60s per defaut)
[color=red]-status[/color] = store some informations in HKCU\\Software\\JML\\Comm
-data = toggle on/off data-connection
-data:on = switch ON data-connection
-data:off = switch OFF data-connection
-phone = toggle on/off phone
-phone:on = switch ON phone
-phone:off = switch OFF phone
-flight = toggle on/off flight-mode
-flight:on = switch OFF phone, wifi, bluetooth
-flight:off = switch ON phone
-bt = toggle 3 states bluetooth
-bt:on = switch ON bluetooth
-bt:discoverable = switch ON with discoverable mode bluetooth
-bt:off = switch OFF bluetooth
-bt2 = toggle on/off bluetooth
-bt2:on = switch ON bluetooth
-bt2:off = switch OFF bluetooth
-wifi = toggle on/off wifi
-wifi:on = switch ON wifi
-wifi:off = switch OFF wifi
Example : turn OFF bluetooth
Code:
instPath = SystemPath( "ScriptPath" )
RunWait(instPath&"\JMLComm.exe", "-bt:off")
exit
---------------------------------------------------------------------------------
JMLCalendar v2.45
Registry structure:
Code:
[HKEY_CURRENT_USER\Software\JML\[color=green][b]Calendar[/b][/color]]
"total" = dword: number of appointments found
[HKEY_CURRENT_USER Software\JML\[b]Calendar[/b]\Cal[color=orange][b]N[/b][/color]]
"oid" = oid item in poom database
"allday" = 0=FALSE, 1=TRUE
"categories" = list of categories
...
"subject" = subject
Parameters for searching :
Code:
-max:N = maximum number wanted (5 per default)
-days:N = number of days involved (5 per default)
-reg:key = registry key to store ("[color=green][b]Calendar[/b][/color]" per default)
Parameters for appointment :
Code:
-dateview:[color=orange][b]N[/b][/color] = open poutlook.exe to view the appointment number N
-deleteall:end = delete all [b]ended[/b] appointments (except reccurring appointments)
-deleteoid:oid = delete an appointment identified by his oid
-notifyoid:oid = show an appointment identified by his oid
---------------------------------------------------------------------------------
JMLSms v1.80
Registry structure:
Code:
[HKEY_CURRENT_USER\Software\JML\[b]Sms[/b]]
"total" = dword: number of SMS found
[HKEY_CURRENT_USER Software\JML\[b]Sms[/b]\Sms[color=orange][b]N[/b][/color]]
"oid" = oid item in SMS in database
"unread" = 1 if unread SMS, 0 otherwise
...
"subject"= subject
Parameters for searching :
Code:
-max:N = maximum number wanted (5 per default)
-read:all = last all type SMS (last unread per default)
-reg:key = registry key to store ("[color=green]Sms[/color]" per default)
Parameters for sms :
Code:
[color=red]-phone:phone-number[/color] = Call a phone number
-reply:[color=orange][b]N[/b][/color] = Send a response SMS
-reply:[color=orange][b]N[/b][/color] = [color=red]-text:"my text"[/color] = Send a pre-defined text response SMS
-mark:[color=orange][b]N[/b][/color] = Mark as read the SMS
-mark:all = Mark as read all SMS
-markid:oid = Mark as read the SMS identified by his oid
-delete:[color=orange][b]N[/b][/color] = Delete the SMS
-delete:all = Delete all SMS
-delete:unread = Delete all Unread SMS
-deleteid:oid = Delete the SMS identified by his oid
-call:[color=orange][b]N[/b][/color] = Call in response to SMS (in order if exist : sender, mobilePhone, homePhone)
-notify:[color=orange][b]N[/b][/color] = show the SMS
-notifyid:oid = show the SMS identified by his oid
-sms:phone-number = Send a response SMS
-sms:phone-number = [color=red]-text:"my text"[/color] = Send a pre-defined text response SMS
---------------------------------------------------------------------------------
JMLContacts v1.95
Registry structure :
Code:
[HKEY_CURRENT_USER\Software\JML\[b]Contacts[/b]\Anniversaries]
"total" = dword: number of contacts found
[HKEY_CURRENT_USER Software\JML\[b]Contacts[/b]\Anniversary[color=orange][b]N[/b][/color]]
"oid" = oid of Contact in database
...
[b][/b]
"picture"= full path of picture file name (in \My Documents\My Pictures...)
Idem for Favorites : in [HKEY_CURRENT_USER\Software\JML\Contacts\Favorites]
Parameters for searching :
Code:
-max:N = maximum number wanted (5 per default)
-days:N = number of days involved (30 per default)
-reg:key = registry key to store ("[color=green][b]Contacts[/b][/color]" per default)
-anniversaries = search in 'Anniversary' field of contact
-birthdays = search in 'Birthday' field of contact
-anniversaries -birthdays are per default
Parameters for contact :
Code:
[color=red]-call:N[/color] = Call a contact
[color=red]-email:address -account:account[/color] = Send a email from an account-name (Outlook per default)
[color=red]-addfavorite:N[/color] = Add a new favorite contact
[color=red]-removefavorite:N[/color] = Remove a favorite contact
[color=red]-callfavorite:N[/color] = Call a favorite contact
-phone:phone-number = Call phone number
-sms:phone-number = Send SMS to phone number
-smsoid:oid = Send SMS to phone number to contact identified by his oid
---------------------------------------------------------------------------------
JMLMeteo v2.55
Registry structure:
Code:
[HKEY_CURRENT_USER\Software\JML\Meteo]
"total" = dword: number of days found
...
[HKEY_CURRENT_USER Software\JML\Meteo\Current]
...
[HKEY_CURRENT_USER Software\JML\Meteo\DayN]
...
Parameters :
Code:
[color=red]-gps[/color] : acquire gps location (as JMLComm.exe)
-msn:code = city code (ex. : [b]FRXX0016[/b])
-lang:ll-ll = language (en-en per default)
-degree:C = C or F (C per default)
-map:m = number of map to download
-accu:code = city code (ex. : [b]EUR|FR|FR002|BORDEAUX[/b])
-metric: = 1 or 0 (1 per default)
-google:code = city code (ex. : [b]Bordeaux[/b])
-lang:ll = language (en per default)
-degree:C = C or F (C per default)
GPS location with built-in jmlPosition:
Code:
-gps
-accu:[b]jmlPosition[/b]
-metric: = 1 or 0 (1 per default)
OR Acquire GPS-location with JMLComm.exe and next call JMLMeteo with :
Code:
-accu:[b]jmlPosition[/b]
-metric: = 1 or 0 (1 per default)
GPS location with Sleuth's myLocation Service :
- first, install http://forum.xda-developers.com/showthread.php?t=607102
- use it to update Latitude/Longitude coordinates
- next, call JMLMeteo.exe with these parameters :
Code:
-accu:[b]myLocation[/b]
-metric: = 1 or 0 (1 per default)
GPS location with Google Latitude:
- first, copy your googleLatitude account in google.ID file.
- next, call JMLMeteo.exe with these parameters :
Code:
-accu:[b]googleLatitude[/b]
-metric: = 1 or 0 (1 per default)
---------------------------------------------------------------------------------
JMLTasks v1.40
Registry structure:
Code:
[HKEY_CURRENT_USER\Software\JML\[color=green][b]Tasks[/b][/color]]
"total" = dword: number of tasks found
[HKEY_CURRENT_USER Software\JML\[b]Tasks[/b]\Task[color=orange][b]N[/b][/color]]
"oid" = oid item in poom database
"categories" = list of categories
...
"subject" = subject
Parameters for searching :
Code:
-max:N = maximum number wanted (5 per default)
-days:N = number of days involved (5 per default)
-reg:key = registry key to store ("[color=green][b]Tasks[/b]][/color]" per default)
-withCompleted = show all tasks
-sort:due = sort by due tasks
-sort:start = sort by date (per default)
manila = store all tasks in HKEY_LOCAL_MACHINE\Software\HTC\\Manila
Parameters for task :
Code:
-view:[color=orange][b]N[/b][/color] = open poutlook.exe to view the task number N
-delete:[color=orange][b]N[/b][/color] = delete the task number N
-complete:[color=orange][b]N[/b][/color] = complete the task number N
-deleteall:due = delete all [b]due[/b] tasks
-deleteall:completed = delete all [b]completed[/b] tasks
-deleteoid:oid = delete the task identified by his oid
-completeoid:oid = complete the task identified by his oid
---------------------------------------------------------------------------------
JMLFavorites v1.00 (SOON)
Registry structure :
Code:
[HKEY_CURRENT_USER\Software\JML\[b]Favorites[/b]]
[HKEY_CURRENT_USER Software\JML\[b]Favorites[/b]\Favorite[color=orange][b]N[/b][/color]]
"type" = type of favorite : '[color=orange]contact[/color]' or '[color=orange]program[/color]'
"picture"= full path of picture file name
"label"= fistname for contact, filename for program
...
Parameters for favorite :
Code:
-call:N = CALL a contact or RUN a program
-add:N = Add a new favorite (contact per default)
-type:contact = with -add parameter, add a '[color=orange]contact[/color]'
-type:program = with -add parameter, add a '[color=orange]program[/color]'
-remove:N = Remove a favorite
---------------------------------------------------------------------------------

JMLPicture Thank you for offering me a beer. All donations (3€, 5$, +) are appreciated !
Build a picture from multiple images/texts (see picture below).
<Picture...> Parameters :
Code:
[b]Width[/b] result picture with
[b]Height[/b] result picture height
[b]Bkg[/b] initial background color (RGB format)
[b]Transparent[/b] set one color of result picture as transparent (RGB format)
[b]Target[/b] png file name of result picture
[b]Source[/b] png file name of background picture
<Image...> Parameters :
Code:
[b]Left[/b] left-coordinate
[b]Top[/b] top-coordinate
[b]Width[/b] with of displaying picture (with of picture per default)
[b]Height[/b] height of displaying picture (heigh of picture per default)
[b]ScaleStyle[/b]
[b]Alignment[/b]
[b]ID[/b] JMLToday ID ITEM (Page is required)
[b]Page[/b] JMLToday Page ITEM (ID is required)
<Text...> Parameters :
Code:
[b]Left[/b] left-coordinate
[b]Top[/b] top-coordinate
[b]Width[/b] with of displaying text
[b]Height[/b] height of displaying text
[b]Value[/b] text value
[b]FontFamily[/b] font name
[b]FontSize[/b] font size
[b]FontStyle[/b] font style : 'italic', 'bold'
[b]Color[/b] text color (RGB format)
[b]Alignment[/b] 'center', 'right' or 'left' (per default)
[b]ID[/b] JMLToday ID ITEM (Page is required)
[b]Page[/b] JMLToday Page ITEM (ID is required)
Example : ClockText.xml
Code:
<Picture Width="400" Height="200" Bkg="192,192,192" Target="%APPDIR%/ClockText.png">
<Image Left="0" Top="0" ID="BGAMPMALARM" Page="Page1" />
<Image Left="20" Top="40" ID="H1" Page="Page1" />
<Image Left="100" Top="40" ID="H2" Page="Page1" />
<Image Left="225" Top="40" ID="M1" Page="Page1" />
<Image Left="305" Top="40" ID="M2" Page="Page1" />
<Text Left="15" Top="140" Value="AM" Color="128,0,0" FontFamily="Tahoma" FontSize="8" FontStyle="Bold,Italic" />
<Text Left="15" Top="160" ID="City" Page="Page1" FontFamily="Tahoma" FontSize="6" FontStyle="Italic" />
</Picture>

@all : add some program informations ..... in Post#2
A++

Hi.
I sure do love command-line tools! I added them to the Mortscript Source Compendium's list.
And to facilitate my testing them to see if magically they will work with wm5 smartphones, I added a Command-Line tester to The Mortifier. So we can browse to the exe and enter our command line parameters. Keeps the old exe and parameters in memory so you can re-test them easily.
Thanks for these.

Hi.
So i was using Message2reg.exe. It seems with wm653 m2reg gives an error.
I am trying to use jmlsms.exe to see if that can work.
Code:
RunWait(SystemPath("ScriptPath") \ "\Utility\JMLSms.exe","-read:all")
MsgSender = RegRead(HKCU, "\Software\JML\Sms\Sms1", "sender")
MsgBody = RegRead( HKCU,"\Software\JML\Sms\Sms1", "subject")
Think that looks good?

@howdykeith : Yes I think it should work.

StatusTicker and JML...
Hi,
So i incorporated JMLsms.exe and JMLcomm.exe into the StatusTicker.
Works super great!
In future version I will include more of you apps infos... I also will make sure to include the URL to your apps as well.
Thanks much!

Hello,
I'm trying to use JMLContacts.exe to have birthdays on my WAD2 Skin.
I've installed JMLToday and everything worked fine and registry was filled by next 5 birthdays information.
Now I'm trying to update information outside of Titanium/JMLToday and to do it I'm using a mortscript.
Inside script I wrote the following line:
RunWait("\Storage Card\Program Files\UtilsExe\JML\JMLContacts.exe", "-max:3")
Unfortunately it seems not working, at least registry values are not updated. I double checked path and it appears absolutely correct.
More I tried to simply launching JMLContacts.exe directly from TCMD, and I expected it worked with all default values, but of course it didn't... Is my supposition a wrong one?
Meanwhile, thanks a lot to let available for us those little but great tools

@dagosjt :
you must use also -days (0 per default), -birthdays (and /or -anniversaries) parameters
example :
-max:3 -days:365 -birthdays
Ok ? thanks for feedback.
A++
PS : i think i 'll change the default parameters values in a next version...

JMHL said:
@dagosjt :
you must use also -days (0 per default), -birthdays (and /or -anniversaries) parameters
example :
-max:3 -days:365 -birthdays
Ok ? thanks for feedback.
A++
PS : i think i 'll change the default parameters values in a next version...
Click to expand...
Click to collapse
Yes!
Works perfect now I thought days:0 meaning was "all days", sometime it happens in software

HI JMHL
I want to know if JMLMeteo can search for a location based on latitude and longitude

@saeli : not for the moment. Next feature perhaps if more people are interested and if it's easy to hard-coded.
A++

@jmhl: perhaps ypu can use this for location awareness:
forum.xda-developers.com/showthread.php?t=607102
then it could work
Salut
Micha

@Micha : thanks, i look ....

@saeli : ok, weather location based on latitude and longitude certainly in next version.
@micha : thanks for the tips.
A++

JMHL,
Still no HD2 ?

@Zepiii : no. waiting more operator points to change....
A++

@saeli & @all : location based on latitude and longitude in next version of JMLMeteo (in next JMLToday v5.80).
2 ways :
- Sleuth's myLocation Service
- google Latitude
A++

JMHL said:
@saeli & @all : location based on latitude and longitude in next version of JMLMeteo (in next JMLToday v5.80).
2 ways :
- Sleuth's myLocation Service
- google Latitude
A++
Click to expand...
Click to collapse
this is a wery fantastic news
when you think to release new version ?

Related

Change the display of the clock in the taskbar

i have tried this hack and it does not work for me. i have the htc x7500
does it work for you
thanks
Change the display of the clock in the taskbar
The clock in the taskbar can be changed to show not only the time, but also the date, or just the date, or nothing at all.
To show nothing:
HKLM\Software\Microsoft\Shell\TBOpt = 0 (DWORD decimal)
To show just the clock:
HKLM\Software\Microsoft\Shell\TBOpt = 1 (DWORD decimal)
To show just the date:
HKLM\Software\Microsoft\Shell\TBOpt = 2 (DWORD decimal)
To show both the date and the clock:
HKLM\Software\Microsoft\Shell\TBOpt = 3 (DWORD decimal)
date and time on the tb
for me following cab works ok, but I have other problem - when keyboard is closed on the visible bar I see only full hours - instead of 22:36 I see only 22:00 till 23. Anyone has a clue how to change it?
try moving the volume button up when the mini display is on
irus said:
try moving the volume button up when the mini display is on
Click to expand...
Click to collapse
Wow, I didn't even know that the mini display changed! I didn't have any problems showing the minutes, but I did not know about the volume button changing the display
thanks for the suggestion.
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shell\
Create a binary value named "TBOpt" and set its value to "13 00 00 00
then
1) Open ur registry editor (either PHM Registry Editor or Resco Explorer 2003).
2) Go to HKEY_LOCAL_MACHINE\nls\overrides
3) Create 1st String Value: Name = S1159 & String = Am
4) Create 2nd String Value: Name = S2359 & String = Pm
5) Create 3rd String Value: Name = STFmt & String = hh:mm t'M '
6) Soft-reset.

UPdate album art directly from your device (HELLO S2P users!)

I have a script which will look for album art from albumart.org and place it in the proper folder. This is great if you use S2P.
The script assumes a couple things:
- you music is in \storage card\music\$artist\$album
-YOu will need GSFinder
-the folder view dropdown is visible (I scrape the path in the top dropdown to get the artist and album.
-You need to be able to execute the script from within GSFinder. (map script to button, or use a cascading menu that allows you to select the script file)
THe script basically sends the artist and album to the website,
parses the page
then pulls the image that has atag that matches the album
I get about 70% success rate....which is FINE WITH ME!
---------------------------------------------------------
musicroot = "\Storage Card\Music\"
d = windowtext(30,30)
message(d)
d = replace(d,musicroot,"")
arrMusic = split(d,"\")
theartist = arrMusic[1]
thealbum = arrMusic[2]
#message (theartist)
#message (thealbum)
thepath = "\Program Files\MortScripts\"
thefile = "dl1.html"
#connect("Data Network Connect")
connect("The Internet")
Download ("http://albumart.org/index.php?srchkey=" & theartist & "+" & thealbum & "&itempage=1&newsearch=1&searchindex=Music",thepath & thefile)
strParse = ReadFile(thepath&thefile)
mainleft = find(strParse,"main_left")
#message(mainleft)
arttitle = find(strParse, "title=", mainleft)
#message(arttitle)
if (arttitle>0)
srcstart=find(strParse, "src=", arttitle)
imagestart = srcstart + 5
#message("imagestart:" & imagestart)
imageend = find(strParse, ".jpg", imagestart) + 4
#message("imageend:" & imageend)
imagepath=substr(strParse,imagestart,imageend-imagestart)
message(imagepath)
Download (imagepath,musicroot&theartist & "\" & thealbum & "\folder.jpg")
message("refresh folder")
endif
--------------------------------------------------
Hope you enjoy it....I LOVE IT!

to all the .cab specialists ;)

i've absolutely no experience about creating .cab-files, so is it maybe possible to anyone of you creating me one or more .cab's containing a few settings and altering a few reg-keys? i would appreciate beeing able to use this in my sd-config further on an maybe it could be useful for some other german located people using wwe-roms...
so here we go:
first i need a .cab switching my regional settings to german, and activating the connection-wizard using the param's "deutschland" and "Vodafone" , if possible.
second i have some reg tweaks, as there are (i post the altered values only):
HKCU/ControlPanel/Phone/ShowSim : DWORD = 0
HKLM/Software/HTC/Biotouch/ActionScreen/APP_0 : Name = Neue Email
HKLM/Software/HTC/Biotouch/ActionScreen/APP_1 : Name = Neue SMS
HKLM/Software/HTC/Biotouch/ActionScreen/APP_2 : Name = Neue MMS
HKLM/Software/HTC/Biotouch/ActionScreen/APP_3 : Name = Neuer Termin
HKLM/Software/HTC/Biotouch/ActionScreen/APP_4 : Name = Neue Aufgabe
HKLM/Software/HTC/Biotouch/ActionScreen/APP_5 : Name = Neue Notiz
HKLM/Software/HTC/Biotouch/ActionScreen/APP_6 : Name = Neuer Kontakt
HKLM/Software/HTC/Biotouch/APLauncher/App2_2 : Name = Aufgaben
HKLM/Software/HTC/Biotouch/APLauncher/App2_3 : Name = Termine
HKLM/Software/HTC/Biotouch/MediaHubMini/App1_1 : Name = Musik
HKLM/Software/HTC/Biotouch/MediaHubMini/App1_2 : Name = Fotos
HKLM/Software/HTC/Biotouch/MediaHubMini/App1_3 : Name = Videos
would be very great when sombody could do this for me! many many thanks in advance.....
you can use a cab manager to create cabs.
cabs can contain only reg settings while no other files in it.
you can find a 30 day trial one here:
http://www.ocpsoftware.com/download.php?nm=cecabmgr
i don't know any other freeware if there is..
here is a cab containing the reg entries in your post..
didn't test it but it should work,
u can backup those entries before, but i think it's not necessary..
hay, thank you very much for your quick support!!!
i will have a look at the cab-manager right now but allthough anybody can have a look at the regional- and connection-wizard settings? thans to all!
malsehn said:
hay, thank you very much for your quick support!!!
i will have a look at the cab-manager right now but allthough anybody can have a look at the regional- and connection-wizard settings? thans to all!
Click to expand...
Click to collapse
I don't think you can activate the connection-wizard by using a cab. perhaps you can change the default settings, but you will still have to run the Wizard (mannually or by a sort of scripting). If I knew how, I would help you out but unfortunally ... I don't...
You could create a cab that creates a shortcut to the Wizard so that on start up it will be loaded... (It may also be possible using a setup.dll file, but I have no idea how to implement this kind of functionality)
hi folks, sorry for diggin' out this old thread once more
i owned myself an artemis now and so i need a little modification on this settings- cab file once made for my old prophet..
so i asked myself, if one of you would be so kind again...
here are the reg tweaks that i would appreciate to have in one cab for usage in my sdconfig:
HKCU/ControlPanel/Phone/ShowSim : DWORD = 0
HKLM/Software/HTC/Biotouch/ActionScreen/APP_0 : Name = Neue Email
HKLM/Software/HTC/Biotouch/ActionScreen/APP_1 : Name = Neue SMS
HKLM/Software/HTC/Biotouch/ActionScreen/APP_2 : Name = Neue MMS
HKLM/Software/HTC/Biotouch/ActionScreen/APP_3 : Name = Neuer Termin
HKLM/Software/HTC/Biotouch/ActionScreen/APP_4 : Name = Neue Aufgabe
HKLM/Software/HTC/Biotouch/ActionScreen/APP_5 : Name = Neue Notiz
HKLM/Software/HTC/Biotouch/ActionScreen/APP_6 : Name = Neuer Kontakt
HKLM/Software/HTC/Biotouch/APLauncher/App4 : Name = Aufgaben
HKLM/Software/HTC/Biotouch/APLauncher/App5 : Name = Termine
HKLM/Software/HTC/Biotouch/CustAPLauncher/App1 : Name = Rechner
HKLM/Software/HTC/Biotouch/CustAPLauncher/App11 : Name = Softreset
HKLM/Software/HTC/Biotouch/CustAPLauncher/App2 : Name = Radio
HKLM/Software/HTC/Biotouch/CustAPLauncher/App5 : Name = Dateien
HKLM/Software/HTC/Biotouch/CustAPLauncher/App6 : Name = Livesuche
HKLM/Software/HTC/Biotouch/CustAPLauncher/App8 : Name = Notizen
HKLM/Software/HTC/Biotouch/MediaHubMini/App1_1 : Name = Musik
HKLM/Software/HTC/Biotouch/MediaHubMini/App1_2 : Name = Fotos
HKLM/Software/HTC/Biotouch/MediaHubMini/App1_3 : Name = Videos
i've made my changes to the previous version in red, so maby you only have to modify the old cab attached above...
many many thanks in advise to that, i never get through to making cab files myself..
Here is the new cab modified with settings in RED based on the old.
thank you for your very quick support!!! this is a cab now with all the old settings and with the red ones changed respectively added on it, to get you right? wow, that's great!!! many many thanks!!! im very happy now and so the next hardreset can come for me...
For networkwizard setting;
Put new on the registry:
\HKLM\Software\Microsoft\RIL\OperatorNames
new key such as:
xxxyy and the value of the Brand of your GSM operator
where xxx is MCC and yy is MNC (Five digit number)
And for Vodafone there are three Vodafone operator on Germany so you could put the key such as:
"26202"="deutschland" (or "Vodafone" which ever you like)
"26204"="deutschland" (or "Vodafone" which ever you like)
"26209"="deutschland" (or "Vodafone" which ever you like)
Then tap networkwizard.
Hope this will help you.

[HowTo][JMLToday] How to create a skin for JMLToday v6.00

<<< How to create your own Skin for JMLToday v6.00 >>>​!!! UNDER CONSTRUCTION !!!​
Intro:
Hello World - You like the funktions of JMLToday, but you would like to chance its appearance?
Then you are at the right Thread! Here you can learn how to change Icons, their function, add some new Funtions, change languages and much more!
JMLToday is concepted to be FULL CUSTOMIZEABLE as far as Windows Titanium allows you
Take some time (you will need to have some) and a lot of Ideas and mix them together with your learnt Basics here out of this thread to create YOUR OWN SKIN!
Feel free to Post your Ideas / Questions / Screenshots / Thanks / and other useful stuff!
So let's start customizing!
Overview:
This Post: Basics about JMLToday
2nd Post: How to change Background / WeatherIcons / TodayIcons / JMLPictures
3rd Post: How to change Positions of Icons
4th Post: How to change the Action of Icons / Buttons / Softkeys
5th Post: Commands / available Attributes / aso. for creating a new skin
6th Post: Creating a brand new skin
Basic Folder Structure of JMLToday:
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Here is an explanation of folders and their functions:
JMLToday:
Here you can find all Tools (JML[...].exe) which make JMLToday possible. They all are doing the work (like updating registry / building pictures / aso.) for JMLToday and are running in Backgound.
For more Information about JMLTools you schould read this Post: >>> JMLTools <<<
In this Folder there are also all .mnu and .xmu files stored.
.mnu files are "old styled" Menus if you click a defined Icon of JMLToday
.xmu files are "new Sense styled" Menus if you click a defined Icon of JMLToday
Read more about JMLMenuSense and how to create custom Menus here: >>> JMLMenuSense <<<
The last file of this folder you should heard about is JMLToday.ini
Code:
[SIZE="3"]
[RunAt]
enable=1
time=07:00
every=120
endTime=21:00
pgm=%JMLTODAY%\JMLMeteo.exe;-jmltoday
[Email]
account=ActiveSync
[Hook]
Screen=1
[Offsets]
New York=-6:00
Moscou=3:30
[/SIZE]
This .ini file controls: AutoUpdate [RunAt]; defaultEmailAccount ; FullscreenMode [Hook] and Time Offsets [Offsets]
[B][U]lang:[/U][/B]
[IMG]http://img132.imageshack.us/img132/9964/contentlangfolder.png[/IMG]
Here are all language translation files stored. One .ini for each language. You can add one in your language if you want - you only have to translate like this:
[CODE][SIZE="3"]
[...]
Parameters=Parameters
CONTACTS=Translation of "CONTACTS" in your preferred language
TASKS=And the same here for "TASKS"
Program=...
[... and so on ...]
[/SIZE][/CODE]
[QUOTE]
[!] Don't change the english description before "=" or correct capital Letters - If you change those the translation won't work!
[!] If you have created a new lang.ini in your language please send it to JMLToday_Team so it can be implemented in updated Versions!
[/QUOTE]
In folder lang is also a [B]Ephemeride2011.fr[/B] existent. This file has to end with your language shoutcut like Ephemeride2011.de or Ephemeride2011.it.
Here you can enter all your birthdays / events / aso. for the whole year. They will be displayed in the left top Corner of JMLToday View under the current date.
[CODE][SIZE="3"]
31/12 New Year's Eve
30/12 Mom
29/12 Dad
28/12 ...
[... and so on ...]
[/SIZE][/CODE]
[QUOTE]
[!] One day per line!
[!] Keep format: Day/Month Event (there's a Tab between Month and Event)!
[!] You have to make a list for every new year!
[/QUOTE]
[B][U]skin:[/U][/B]
In this folder there are all available skins of JMLToday stored (in this Tutorial only "default")
Content of default:
[IMG]http://img715.imageshack.us/img715/2016/contentdefaultfolder.png[/IMG]
In all folders of default there are the needed .png files stored. (The foldernames are explanation enough)
JMLToday_Bkg.png = your current JMLBackground
JMLLang.ini = Translation for right Softkey
JMLSkin.ini = Installation file for new Skins (read more in following Posts)
JMLToday[...].ini = Update files / Registry for you current skin (read more in following Posts)
default.plg = Icon Placement (read more in following Posts)
default.pnx = Icon Action (read more in following Posts)
.xml = Files for JMLPicture (Read JMLTools Thread for more Infos)
[B][U]Basic Registry Structure of JMLToday:[/U][/B]
[U]HKCU:[/U]
All your Data and Settings you need for JMLToday is mainly stored in your Registry under:
[QUOTE]HKCU > Software > JML[/QUOTE]
Here you will find some Keys called:
[QUOTE]Calendar = Subkeys (Cal1 - 5) containing Data of your 5 current Appointments
Comm = Data for your Connections
Contacts = Subkeys (Anniversaries1 - 2) containing Data for your next two BirthdayFavorites
Date = Data for Date
Favorites = Subkeys (Favorite1 - 12) containing Data for your Favorite Program or Contact
Meteo = Subkeys (Current; Day1 - 5) containing Weather Data
Sms = Subkeys (Sms1 - 5) containing last received SMS with according Contactinfo
System = Data of battery / RAM / ROM
Tasks = Subkeys (Task1 - 5) containing your next 5 Tasks
Tel = Telephone Data
Time = Time Data
Total = Missed Calls / eMail / SMS / VoiceMail
[/QUOTE]
All this RegKeys are automatically updated if some Value is changed or created.
Example (not the exactly way but understandable): You enable Bluetooth
Click BLTH.png => JMLComm.exe enables BLTH => JMLComm.exe updates HKCU => JMLComm.exe calls JMLTodayComm.ini => JMLTodayComm.ini updates HKLM => JMLToday displayes new BLTHenabled.png
[U]HKLM:[/U]
While your RawData is stored in HKCU, your needed Data for JMLToday is stored in HKLM.
This has the advantage that you can control (by JMLToday[...].ini files) which Items and Values should be displayed in JMLToday (read more in following Posts)
All Data is stored under:
[QUOTE]HKLM > Software > Microsoft > CHome > JMLToday[/QUOTE]
Here you will find some Keys (every Key is representating one Site of JMLToday) called:
[QUOTE]Calendar = Data for your CalendarPage
CondensedPage = Data for the Page if JMLToday is not active
Favorites = Data for your FavoritesPage
Home = Data for your HomePage
Meteo = Data for your WeatherPage
Param = Parameters for JMLToday
Sms = Data for your SMSPage
Tasks = Data for your TasksPage
[/QUOTE]
Every Value of this Keys is used as "ID" by JMLToday (Example: ID='Time') and this Values are displayed in JMLToday (Example: Here the current Time).
<<< How to change Background / WeatherIcons / TodayIcons / JMLPictures >>>​!!! UNDER CONSTRUCTION !!!​
Before you start:
- Copy folder "\JMLToday\skins\default" to your PC as a saving if something goes wrong or you would like to get back to default appearance!
Click to expand...
Click to collapse
Only changing Icons is the easiest way to get a new look of your skin.
Remember the folder structure of "\JMLToday\skins\default"
You can change / replace:
Background:
JMLToday_Bkg.png
This is the Background Picture of JMLToday. Just take another Picture you like and replace it on your DEVICE.
Then you have to change your Skin to "default" again to override the old Picture (Menu\Change Skin => default) and you are done.
[!] Don't change filename!
[!] Don't use another file format (.png)!
Click to expand...
Click to collapse
WeatherIcons:
accu = Accu Weather Icons
google = Google Weather Icons
msn = MSN Weather Icons
Just search for new weather Icons and compare them to the old one. Mostly you have to rename the new Icons to 1-X.png according your weather service.
If you compared them correctly (Example: Sun=1.png / Rain=14.png) simply replace them on your DEVICE.
After this do a weather update and you are done.
[!] Use Weather Icons with the same dimensions as the JMLToday ones to avoid distorsions!
[!] Take some time and compare correctly. If not, your weather could be displayed wrong (Sun is displayed at rainy days)
Click to expand...
Click to collapse
TodayIcons:
batt = Battery Icons
cal = Calendar Icons
clock = Digital Clock Icons
clockA = Analoge Clock Icons
programs = Here are all custom ProgramIcons (for your Favorites) stored
sys = Icons for JMLToday
zodiacs = All zodiac sign Icons
Here you can check what the original Icons display and simply replace them on your DEVICE.
Do a SkinChange to default and you are done.
[!] Don't change file names!
[!] Use Icons with the same dimensions to avoid distorsions!
Click to expand...
Click to collapse
JMLPictures:
JMLPicture is a simply way to create one Icon out of several Pictures and Texts. (More Infos: >>> JMLTools <<<)
Example:
To get this image:
you have to write an .xml file with this content:
Code:
[SIZE="3"]
<Picture Width="400" Height="200" Bkg="192,192,192" ID="XMLTime" Target="%APPDIR%/ClockText.png">
<Image Left="0" Top="0" ID="BGAMPMALARM" Page="Home" />
<Image Left="20" Top="40" ID="H1" Page="Home" />
<Image Left="100" Top="40" ID="H2" Page="Home" />
<Image Left="225" Top="40" ID="M1" Page="Home" />
<Image Left="305" Top="40" ID="M2" Page="Home" />
<Text Left="15" Top="140" Value="AM" Color="128,0,0" FontFamily="Tahoma" FontSize="8" FontStyle="Bold,Italic" />
<Text Left="15" Top="160" ID="City" Page="Meteo" FontFamily="Tahoma" FontSize="6" FontStyle="Italic" />
</Picture>
[/SIZE]
Short explanation:
<Picture> [...] </Picture> = Is MainTag you need for creating
=> Width & Height = Dimension of created Picture
=> Bkg = BackgroundColor in RGB-Format
=> ID = RegValue the Picture is saved in
=> Target = Place to save created Picture
<Image/> = Displaying an Image in your Picture
=> Left & Top = Pixels from Left 6 Top of Picture (not TodayScreen)
=> ID = RegValue of this Image you would like to implement in your Picture
=> Page = In which Page (see RegistryStructure) is the ID stored (here Home or Meteo)
<Text/> = Displaying a Text in your Picture
=> Left & Top = Pixels from Left 6 Top of Picture (not TodayScreen)
=> Value = Custom Text (not variable - its static)
=> ID = RegValue of this text you would like to implement
=> Rest = selfexplanatory
So feel free to adjust height / dimensions and places of the Icons which are used in .xml
[!] Don't change filename of .xml
[!] Don't change the content of <Picture> Line
[!] Check first if "ID" is existent under your Page in Registry
Click to expand...
Click to collapse
<<< How to change Positions of Icons >>>​!!! UNDER CONSTRUCTION !!!​
How to change your Icons you have learned already so: How to change their positions?
For this you have to know something about default.plg. This file consists the parameters of every item which is shown on your screen.
Basic Structure:
Code:
[SIZE="3"]
<?xml version="1.0" encoding="utf-8"?>
<plugin>
<name>JMLToday</name>
<position>0</position>
<layouts>
<layout screenWidth="240" screenHeight="320">
<Layer ID="JMLTodayExpanded" nil="False" Width="240" Height="82" Clip="False">
<Keypad ID="Buttons" Width="240" Height="170" Clip="False">
[...]
</Keypad>
<Layer ID="Page" Clip="False">
[...]
</Layer>
</Layer>
<Layer ID="JMLTodayCondensed" Visible="False" Width="240" Height="34">
<Layer ID="Page">
[...]
</Layer>
</Layer>
</layout>
<layout screenWidth="480" screenHeight="640">
<Layer ID="JMLTodayExpanded" nil="False" Width="480" Height="164" Clip="False">
<Keypad ID="Buttons" Width="480" Height="340" Clip="False">
[...]
</Keypad>
<Layer ID="Page" Clip="False">
[...]
</Layer>
</Layer>
<Layer ID="JMLTodayCondensed" Visible="False" Width="480" Height="68">
<Layer ID="Page">
[...]
</Layer>
</Layer>
</layout>
[... AND SO ON FOR ALL RESOLUTIONS YOUR SKIN SHOULD SUPPORT ...]
</layout>
</layouts>
</plugin>
[/SIZE]
Explanation of some Basics:
Code:
[SIZE="3"]
<?xml version="1.0" encoding="utf-8"?>
<plugin>
<name>JMLToday</name>
<position>0</position>
<layouts>
[...]
</layouts>
</plugin>
[/SIZE]
- This is the header Text which is essential for making Titanium - don't change anything!
Code:
[SIZE="3"]
<layout screenWidth="240" screenHeight="320">
<Layer ID="JMLTodayExpanded" nil="False" Width="240" Height="82" Clip="False">
<Keypad ID="Buttons" Width="240" Height="170" Clip="False">
[...]
</Keypad>
<Layer ID="Page" Clip="False">
[...]
</Layer>
</Layer>
<Layer ID="JMLTodayCondensed" Visible="False" Width="240" Height="34">
<Layer ID="Page">
[...]
</Layer>
</Layer>
</layout>
[/SIZE]
<layout screenWidth="240" screenHeight="320"> = This layout is for TodaySreens with a resolution of 240x320 (for 320x240 there is another layout in .plg)
<Layer ID="JMLTodayExpanded" nil="False" Width="240" Height="82" Clip="False"> = JMLToday will be displayed at 240x82
<Keypad ID="Buttons" Width="240" Height="170" Clip="False"> = The Dimension of JMLToday ClickArea will be 240x170. Here are your Parameters of your Background stored
<Layer ID="Page" Clip="False"> = Here are all your Item Parameter stored
<Layer ID="JMLTodayCondensed" Visible="False" Width="240" Height="34"> = This is the area if your JMLTodayPanel is not active
Click to expand...
Click to collapse
You don't have to know all of this .plg. Only concentrate on the area <Layer ID="Page" Clip="False"> of your Resolution
Don't mess up with starting and closing characters (<Layer> & </Layer>) - If you forget one (or accidentally deleted one) your skin won't work!
You will recognize that, if your Skin is not properly installed, or if you cannot click something or your right Softkey isn't working...
So now let's rearrange some Items!
[!] Save the original .plg first
Click to expand...
Click to collapse
Open your .plg under "\JMLToday\skins\default\default.plg" (on PC or PPC as you want and with any Editor you prefer) and scroll to your resolution you would like to change your Skin for.
In your <Layer ID="Page" Clip="False"> you will find two different part of Items: <Image/> & <Text/>
[!] < opens a line and /> close this one - don't forget or delete them
[!] Obey the code: value="parameter"
Click to expand...
Click to collapse
Possible Attributes for <image>:
Always use this line for displaying an Image:
Code:
[SIZE="3"]
<Image [...] />
[/SIZE]
ID = How the value is called in Registry - Don't change it! (Example: ID="Time")
Left = Position in Pixels from the left
Top = Position in Pixels from the top
Width = Width of your Image
Height = Height of your Image
ScaleStyle = Decide how your Image is displayed: "Stretch" or "Fit" For Stretch it will distored to the dimensions you declared with Width&Height and for Fit it will be rescaled to the biggest possible Image fitting in your With&Height
ScalingAlgorithm = No need to change it
HorizontalAlignment = Choose "Left", "Center" or "Right"
VerticalAlignment = Choose "Top", "Middle" or "Bottom"
Clip = no need to change it
Opacity = You wish transparency? 1.0 = full visible / 0.5 = partly visible (50%) / 0.0 = full invisible
Click to expand...
Click to collapse
Possible Attributes for <text>:
Always use this three lines for displaying a text:
Code:
[SIZE="3"]
<Text [...] >
<TextStage [...] />
</Text>
[/SIZE]
ID / Left / Top / With / Height = the same as <image/>
FontFamily = Decide which Font you would like to use (has to be installed before)
FontSize = what do you mean???
FontStyle = "Bold" / "Normal" / "Italic" (you can use all if you want (Example: FontStyle="Bold,Normal,Italic")
Wrap = "True": You text will be displayed in more lines if it is too long / "False": now it will be cut off
HorizontalAlignment / VerticalAlignment = the same as <image/>
Click to expand...
Click to collapse
[!] Don't forget that other users maybe don't have the same fonts (FontFamily) as you!
[!] VerticalAlignment="Middle" isn't available for Titanium (Yea, a bug!)
Click to expand...
Click to collapse
For: <TextStage/>
- TextOffsetType = "TextOffsetNone" is only Text - If you want to have an Offset (Shadow or something) read *1
- Color = Enter Hex Code for your Textcolor ([E] Color="#0064FF")
(R)ed=0 (G)reen=100 (B)lue=255 => #0064FF (use any better ImageApp than "Microsoft Paint" )
[!] Don't forget # before color code
Sometimes your color isn't displayed as you entered the code - It's simply "inverted"
=> Solution: instead of #0064FF you insert #FF6400 (or: instead of RGB you insert GBR)
Click to expand...
Click to collapse
*1:
Add the following line before <TextStage TextOffsetType="TextOffsetNone" [...] />:
Code:
[SIZE="3"]
<TextStage TextOffsetType="TextOffsetDropBottomRight" Color="#00000000" TextOffset="0" BlurFactor="0" Alpha="1.0"/>
[/SIZE]
TextOffsetDropBottomRight adds a Shadow with black Color and no Blur or additional Offset (full visible) to your text.
Experiment a little bit, to get satisfied!
With this knowledge you can adjust all those Items you want...
Save your new .plg (copy it back to your device in "\JMLToday\skins\default") and reinstall the default Skin.
Of course you have to experiment a lot to get this Items rearranged correctly and it can cost you alot of time - don't panic
<<< How to change the Action of Icons / Buttons / Softkeys >>>​!!! UNDER CONSTRUCTION !!!​
<<< Commands / available Attributes / aso. for creating a new skin >>>​!!! UNDER CONSTRUCTION !!!​
<<< Creating a brand new skin >>>​!!! UNDER CONSTRUCTION !!!​

galaxy ace secret codes and test codes

FIRMWARE VERSION INFORMATION
*#*#1234#*#* - PDA and Phone
*#*#1111#*#* - FTA SW Version
*#*#2222#*#* - FTA HW Version
*#*#44336#*#* - PDA, Phone, CSC, Build Time, Changelist number
*#*#4636#*#*-This code is used to get various information about your phone and battery. It shows following 4 menus on screen:
Phone information
Battery information
Battery history
Usage statistics
*#*#7780#*#*-Factory data reset.It REMOVES:
Google account settings
System and application data and settings
Downloaded applications
It DOES NOT REMOVE:
system software and bundled applications
SD card files
*2767*3855#-WARNING:Factory Reset.This code is used for factory format. It'll remove all files and settings including the internal memory storage. It'll also reinstall the phone firmware.
*#*#273283*255*663282*#*#*-This code opens a File copy screen where you can backup your media files e.g. Images, Sound, Video and Voice memo.
*#*#8255#*#*-This code can be used to launch GTalk Service Monitor.
WLAN, GPS and Bluetooth Test Codes:
*#*#232339#*#* OR *#*#526#*#* OR *#*#528#*#* - WLAN test (Use "Menu" button to start various tests)
*#*#232338#*#* - Shows WiFi MAC address
*#*#1472365#*#* - GPS test
*#*#1575#*#* - Another GPS test
*#*#232331#*#* - Bluetooth test
*#*#232337#*# - Shows Bluetooth device address
VARIOUS FACTORY TESTS
*#*#0283#*#* - Packet Loopback
*#*#0*#*#* - LCD test
*#*#0673#*#* OR *#*#0289#*#* - Melody test
*#*#0842#*#* - Device test (Vibration test and BackLight test)
*#*#2663#*#* - Touch screen version
*#*#2664#*#* - Touch screen test
*#*#0588#*#* - Proximity sensor test
*#*#3264#*#* - RAM version
UPDATE 18/06/2012
ALL SAMSUNG UNLOCK CODE....
---------------------------
*2767*688# = Unlocking Code
*#8999*8378# = All in one Code
*#4777*8665# = GPSR Tool
*#8999*523# = LCD Brightness
*#8999*3825523# = External Display
*#8999*377# = Errors
#*5737425# = JAVA Something{I choose 2 and it chrashed}][/b]
*#2255# = Call List
#*536961# = Java Status Code
#*536962# = Java Status Code
#*536963# = Java Status Code
#*53696# = Java Status Code
#*1200# = AFC DAC Val
#*1300# = IMEI
#*1400# = IMSI
#*2562# = ??? White for 15 secs than restarts.
#*2565# = Check Blocking
#*3353# = Check Code
#*3837# = ??? White for 15 secs than restarts.
#*3849# = ??? White for 15 secs than restarts.
#*3851# = ??? White for 15 secs than restarts.
#*3876# = ??? White for 15 secs than restarts.
#*7222# = Operation Typ (Class C GSM)
#*7224# = I Got !! ERROR !!
#*7252# = Operation Typ (Class B GPRS)
#*7271# = Multi Slot (Class 1 GPRS)
#*7274# = Multi Slot (Class 4 GPRS)
#*7276# = Dunno
#*7337# = EEPROM Reset (Unlock and Resets Wap Settings)
#*2787# = CRTP ON/OFF
#*3737# = L1 Dbg data
#*5133# = L1 Dbg data
#*7288# = GPRS Attached
#*7287# = GPRS Detached
#*7666# = SrCell Data
#*7693# = Sleep Act/DeAct (Enable or Disable the Black screen after doing nothing for a while)
#*7284# = Class : B,C or GPRS
#*2256# = Calibration Info
#*2286# = Battery Data
#*2527# = GPRS Switching (set to: class 4, class 8, class 9 or class 10)
#*2679# = Copycat feature (Activate or Deactivate)
#*3940# = External loop test 9600 bps
#*4263# = Handsfree mode (Activate or Deactivate)
#*4700# = Half Rate (Activate or Deactivate)
#*7352# = BVMC Reg value
#*8462# = Sleeptime
#*2558# = Time ON
#*3370# = EFR (Activate or Deactivate)
#*3941# = External looptest 115200 bps
#*5176# = L1 Sleep
#*7462# = SIM phase
#*7983# = Voltage/Frequenci (Activate or Deactivate)
#*7986# = Voltage (Activate or Deactivate)
#*8466# = Old time
#*2255# = Call ???
#*5187# = L1C2G trace (Activate or Deactivate)
#*5376# = ??? White for 15 secs than restarts.
#*6837# = Official Software Version
#*7524# = KCGPRS
#*7562# = LOCI GPRS
#*7638# = RLC allways open ended TBF (Activate or Deactivate)
#*7632# = Sleep mode Debug
#*7673# = Sleep mode RESET
#*2337# = Permanent Registration Beep
#*2474# = ???
#*2834# = Audio Path
#*3270# = DCS support (Activate or Deactivate)
#*3282# = Data (Activate or Deactivate)
#*3476# = EGSM (Activate or Deactivate)
#*3676# = Flash volume formated
#*4760# = GSM (Activate or Deactivate)
#*5171# = L1P1
#*5172# = L1P2
#*5173# = L1P3
#*7326# = Accessory (I got Vibrator)
#*7683# = Sleep variable (8)
#*7762# = SMS Brearer CS (Activate or Deactivate)
#*8465# = Time in L1
#*9795# = wtls key
#*2252# = Current CAL
#*2836# = AVDDSS Management (Activate or Deactivate)
#*3877# = Dump of SPY trace
#*7728# = RSAV done# (Everything went to standart but nothing was deleted)
#*2677# = ARM State (None or Full Rate)
*#8999*636# = Have no clue what it is, i see 20 lines
*#9999# = Software version
*#8999*8376263# = HW ver, SW ver and Build Date
*#8888# = HW version
*#8377466# = Same HW/SW version thing
*#7465625# = Check the locks
*7465625*638*Code# = Enables Network lock
#7465625*638*Code# = Disables Network lock
*7465625*782*Code# = Enables Subset lock
#7465625*782*Code# = Disables Subset lock
*7465625*77*Code# = Enables SP lock
#7465625*77*Code# = Disables SP lock
*7465625*27*Code# = Enables CP lock
#7465625*27*Code# = Disables CP lock
*7465625*746*Code# = Enables SIM lock
#7465625*746*Code# = Disables SIM lock
*7465625*228# = Activa lock ON
#7465625*228# = Activa lock OFF
*7465625*28638# = Auto Network lock ON
#7465625*28638# = Auto Network lock OFF
*7465625*28782# = Auto subset lock ON
#7465625*28782# = Auto subset lock OFF
*7465625*2877# = Auto SP lock ON
#7465625*2877# = Auto SP lock OFF
*7465625*2827# = Auto CP lock ON
#7465625*2827# = Auto CP lock OFF
*7465625*28746# = Auto SIM lock ON
#7465625*28746# = Auto SIM lock OFF
*2767*3855# = E2P Full Reset
*2767*2878# = E2P Custom Reset
*2767*927# = E2P Wap Reset
*2767*226372# = E2P Camera Reset
#*6420# = MIC Off
#*6421# = MIC On
#*6422# = MIC Data
#*6428# = MIC Measurement
#*3230# = Trace enable and DCD disable
#*3231# = Trace disable and DCD enable
#*3232# = Current Mode
#7263867# = RAM Dump (On or Off)
*2767*49927# = Germany WAP Settings
*2767*44927# = UK WAP Settings
*2767*31927# = Netherlands WAP Settings
*2767*420927# = Czech WAP Settings
*2767*43927# = Austria WAP Settings
*2767*39927# = Italy WAP Settings
*2767*33927# = France WAP Settings
*2767*351927# = Portugal WAP Settings
*2767*34927# = Spain WAP Settings
*2767*46927# = Sweden WAP Settings
*2767*380927# = Ukraine WAP Settings
*2767*7927# = Russia WAP Settings
*2767*30927# = GREECE WAP Settings
*2767*73738927# = WAP Settings Reset
*2767*49667# = Germany MMS Settings
*2767*44667# = UK MMS Settings
*2767*31667# = Netherlands MMS Settings
*2767*420667# = Czech MMS Settings
*2767*43667# = Austria MMS Settings
*2767*39667# = Italy MMS Settings
*2767*33667# = France MMS Settings
*2767*351667# = Portugal MMS Settings
*2767*34667# = Spain MMS Settings
*2767*46667# = Sweden MMS Settings
*2767*380667# = Ukraine MMS Settings
*2767*7667#. = Russia MMS Settings
*2767*30667# = GREECE MMS Settings
*335# = Delete all MMS Messages
*663867# = Dump Mm file
#*536961# = WAPSAR enable / HTTP disable
#*536962# = WAPSAR disable / HTTP enable
#*536963# = Serial eable / Others disable
#*53696# = Java Download Mode
#*5663351# = Wap Model ID [Your Model]
#*5663352# = Wap Model ID [SEC-SGHXXXX/1.0]
#*566335# = Wap Model ID [SEC-SGHXXXX/1.0]
*2767*66335# = Check on which model it is
*2767*7100# = SEC-SGHS100/1.0
*2767*8200# = SEC-SGHV200/1.0
*2767*7300# = SEC-SGHS300/1.0
*2767*7650# = Nokia7650/1.0
*2767*2877368# = Reset WAP Model ID to standart
I hope you enjoy it
DO ANYTHING AT YOUR OWN RISK!
IF YOU DO NOT KNOW WHAT YOU ARE DOING PLS DO NOT DO IT!
I never knew there were so many codes!
Thanks!
Sent from my GT-S5830 using Tapatalk 2
i will update it as soon as i find some more working
i have a file full of codes but i have to tes them before post
in 1 or 2 days it will be updated
thankyou brother
do you know how to change regional with a screet code?
sorry for my bad english
what do you mean by regional?
you need sim unlock code?or something else?
stealthware said:
thankyou brother
do you know how to change regional with a screet code?
sorry for my bad english
Click to expand...
Click to collapse
*272*yourimeinumber#
You cam find your imei with this code.
*#06#
Sent from my GT-S5830 using Tapatalk 2
Awesome
Thanks
kumicho said:
what do you mean by regional?
you need sim unlock code?or something else?
Click to expand...
Click to collapse
not sim unlock code, but the regional restore for readability if there is an update on Kies
for example the base regional ddkq8 is indan firmware, i want to regional indonesian is xse. without replacing the firmware can be used a screet code
sorry for bad english
---------- Post added at 03:24 PM ---------- Previous post was at 03:21 PM ----------
galaxyace152 said:
*272*yourimeinumber#
You cam find your imei with this code.
*#06#
Sent from my GT-S5830 using Tapatalk 2
Click to expand...
Click to collapse
thankyou brother for info
like it
great
thanks for that thorough list of codes, this might come in handy sometime!
Thanks for the huge collection.
Sent from my GT-S5830 using Tapatalk 2
factory data reset
It is an awesome list you gave us. Thanx
I just want to know...if i type *#*#7780#*#* it will leave my cell phone as when i took it out of the box??
or is it the one with *2767*3855#? and will it restore apps i erased with root superuser??
thanks
Great...but
These codes posted are definitely a great collection, wonderful I would say. But beware, some websites may utilise these code to hack your phone. Like for example, the website may just dial one of the reset codes and reset the entire phone. This is definitely not a very great experience. There is a solution thou, by installing a third party dialer to prevent these codes from executing.
stevenkyk said:
These codes posted are definitely a great collection, wonderful I would say. But beware, some websites may utilise these code to hack your phone. Like for example, the website may just dial one of the reset codes and reset the entire phone. This is definitely not a very great experience. There is a solution thou, by installing a third party dialer to prevent these codes from executing.
Click to expand...
Click to collapse
Elaborate on how we can protect ourselves from said threat.
Sent from my GT-S5830 using xda app-developers app

Categories

Resources