Anyway to passcode text messages and photo album? - Tilt, TyTN II, MDA Vario III General

I've done some searching but I haven't really found anything too relevant to what I'm looking for.
I am looking for some sort of add-on what will lock out certain programs, pictures or text messages. I noticed that the some of the newer Samsung slide phones have it so that you can actually have passwords on certain areas of the phone, whether it be individual pictures or the whole SMS section all together.
I was just wondering if there was anything like that for the Tilt/Kaiser? Only thing I was able to find were SMS encryption programs.

Dude, I wish I could know the same thing. I just never searched or asked for it. Yesterday my girlfriend found my hidden stash of xxx pictures from my ex girlfriend in my phone, not to mention 2 panties in my glovebox in the car. I managed to lie my way out of an ass whooping. I would want a program like this. Actually a program that can stealth it so you'd have to go to some folder on your phone. If my girlfriend sees a password on my phone she'll flip. You guys will wonder what happened to gqstatus0685.

yup i need a same thing too been looking for way to password protect my messages and pictures but havnt found anything. There gotta be way to do this. please someone help

See, I have a password lock on my phone but sometimes it doesn't activate. It has a mind of its own. If i don't set it to 1 minute, then it seems like it never wants to lock and I don't want to have to hold my phone out to make sure its password protected before i put it down, ya know?

its time to develop

if you access your storage card through a windows pc or total com or something similar you can set it to hidden meaning you can only view the folder on your phone through file explorer.. thats one workaround!
for messages there isnt anything out there at the moment (that ive seen anyway)

why dont you guys just use hidden file or folder... and then when you want to see it then just unhide it.
i am pretty sure someone that is loooking through your phone wopnt think to look for hidden files, unless they are very computer savy

This might help...........
http://www.soft32.com/download_150598.html

at a whopping $50!

Isaygarcia said:
its time to develop
Click to expand...
Click to collapse
I'm willing to donate a few bucks to someone to develop something like this. Its a shame that Samsung of all people have this feature and we don't.

stop cheating.

An Idea
Maby someone could make something based on True Crypt, since it's open source. http://www.truecrypt.org/

I imagine, for those who want a cheap and dirty solution, one could write a mortscript which kills the SMS and picture viewer when it comes to the foreground, unless a password is supplied.
Would take about 10 minutes to write, and when placed in the startup folder should always be running.
Surur

gqstatus0685 said:
Dude, I wish I could know the same thing. I just never searched or asked for it. Yesterday my girlfriend found my hidden stash of xxx pictures from my ex girlfriend in my phone, not to mention 2 panties in my glovebox in the car. I managed to lie my way out of an ass whooping. I would want a program like this. Actually a program that can stealth it so you'd have to go to some folder on your phone. If my girlfriend sees a password on my phone she'll flip. You guys will wonder what happened to gqstatus0685.
Click to expand...
Click to collapse
hahaha had the same prob but on my laptop. The missus never found panties in my vehicle though. Guess they are kinda hard to hide on a motorbike

OK, I whipped up 2 crude mortscripts which seem to do the trick. They work together
The first one is called closesms.mscr
Code:
Rexist= RegValueExists( "HKCU", "Software\HideApp", "Hide")
if (Rexist=0)
RegWriteDWord( "HKCU", "Software\HideApp", "Hide", 0 )
endif
hide = RegRead( "HKCU", "Software\HideApp", "Hide")
hideexit = RegRead( "HKCU", "Software\HideApp", "HideExit")
while (hideexit=1)
if (hide=1)
frontwin = Activewindow ()
if (frontwin eq "SMS \ MMS")
minimize (frontwin)
endif
endif
sleep (500)
hide = RegRead( "HKCU", "Software\HideApp", "Hide")
hideexit = RegRead( "HKCU", "Software\HideApp", "HideExit")
endwhile
The second one is called hideapp.mscr
Code:
Rexist= RegValueExists( "HKCU", "Software\HideApp", "Hide")
if (Rexist=0)
RegWriteDWord( "HKCU", "Software\HideApp", "Hide", "0" )
RegWriteDWord( "HKCU", "Software\HideApp", "HideExit", "0" )
endif
if (ScriptProcExists( "closesms.mscr" )=false)
RegWriteDWord( "HKCU", "Software\HideApp", "Hide", "1" )
RegWriteDWord( "HKCU", "Software\HideApp", "HideExit", "1" )
Run( "\Program Files\MortScript\Scripts\closesms.mscr" )
endif
hide = RegRead( "HKCU", "Software\HideApp", "Hide")
hideexit = RegRead( "HKCU", "Software\HideApp", "HideExit")
Response = Question( "Hide SMS")
if (response)
RegWriteDWord( "HKCU", "Software\HideApp", "Hide", "1" )
RegWriteDWord( "HKCU", "Software\HideApp", "HideExit", "1" )
else
RegWriteDWord( "HKCU", "Software\HideApp", "Hide", "0" )
RegWriteDWord( "HKCU", "Software\HideApp", "HideExit", "0" )
endif
They are hard coded to live in \program files\mortscript\Scripts
A link to closesms.mscr may be placed in the \windows\startup directory.
To use, install mortscript, make a \program files\mortscript\Scripts directory and copy the scripts over there, place a link to closesms.mscr in your startup directory, and then run hideapp.mscr.
closesms will check every 0.5 seconds if the sms /mms window is uppermost, and then minimise it. To stop this behaviour run hideapp.mscr and chose not to hide SMS.
This script can easily be extended to include the pictures and video or any other app really.
Surur
Edit: You may download the text files and rename the extension from .txt to .mscr. HideApp.mscr can be placed anywhere, but closesms.mscr must be in "\Program Files\MortScript\Scripts"

surur said:
OK, I whipped up 2 crude mortscripts which seem to do the trick. They work together
The first one is called closesms.mscr
Code:
Rexist= RegValueExists( "HKCU", "Software\HideApp", "Hide")
if (Rexist=0)
RegWriteDWord( "HKCU", "Software\HideApp", "Hide", "0" )
RegWriteDWord( "HKCU", "Software\HideApp", "HideExit", "0" )
endif
if (ScriptProcExists( "closesms.mscr" )=false)
RegWriteDWord( "HKCU", "Software\HideApp", "Hide", "1" )
RegWriteDWord( "HKCU", "Software\HideApp", "HideExit", "1" )
Run( "\Program Files\MortScript\Scripts\closesms.mscr" )
endif
hide = RegRead( "HKCU", "Software\HideApp", "Hide")
hideexit = RegRead( "HKCU", "Software\HideApp", "HideExit")
Response = Question( "Hide SMS")
if (response)
RegWriteDWord( "HKCU", "Software\HideApp", "Hide", "1" )
RegWriteDWord( "HKCU", "Software\HideApp", "HideExit", "1" )
else
RegWriteDWord( "HKCU", "Software\HideApp", "Hide", "0" )
RegWriteDWord( "HKCU", "Software\HideApp", "HideExit", "0" )
endif
The second one is called hideapp.mscr
Code:
Rexist= RegValueExists( "HKCU", "Software\HideApp", "Hide")
if (Rexist=0)
RegWriteDWord( "HKCU", "Software\HideApp", "Hide", "0" )
RegWriteDWord( "HKCU", "Software\HideApp", "HideExit", "0" )
endif
if (ScriptProcExists( "closesms.mscr" )=false)
RegWriteDWord( "HKCU", "Software\HideApp", "Hide", "1" )
RegWriteDWord( "HKCU", "Software\HideApp", "HideExit", "1" )
Run( "\Program Files\MortScript\Scripts\closesms.mscr" )
endif
hide = RegRead( "HKCU", "Software\HideApp", "Hide")
hideexit = RegRead( "HKCU", "Software\HideApp", "HideExit")
Response = Question( "Hide SMS")
if (response)
RegWriteDWord( "HKCU", "Software\HideApp", "Hide", "1" )
RegWriteDWord( "HKCU", "Software\HideApp", "HideExit", "1" )
else
RegWriteDWord( "HKCU", "Software\HideApp", "Hide", "0" )
RegWriteDWord( "HKCU", "Software\HideApp", "HideExit", "0" )
endif
They are hard coded to live in \program files\mortscript\Scripts
A link to closesms.mscr may be placed in the \windows\startup directory.
To use, install mortscript, make a \program files\mortscript\Scripts directory and copy the scripts over there, place a link to closesms.mscr in your startup directory, and then run hideapp.mscr.
closesms will check every 0.5 seconds if the sms /mms window is uppermost, and then minimise it. To stop this behaviour run hideapp.mscr and chose not to hide SMS.
This script can easily be extended to include the pictures and video or any other app really.
Surur
Click to expand...
Click to collapse
Nice work!!
Except I am script illiterate and I haven't the foggiest of what it does or how to use it. But I'm going to do some research and figure out how to read, modify and apply that script.

Anyone have a mortscript cab? Upload it to this site or 4shared/rapidshare it. Thanks.
I installed mortscript a while back but I don't think it was the program. It was something else.

Mort script is freely downloadable from here.
http://www.sto-helit.de/index.php?module=download&action=view&entry=65
Just a note - I posted the same code twice - fixed now in my original post (but not the quoted ones)
Surur

gqstatus0685 said:
Anyone have a mortscript cab? Upload it to this site or 4shared/rapidshare it. Thanks.
I installed mortscript a while back but I don't think it was the program. It was something else.
Click to expand...
Click to collapse
GQ, let me know how it works. I'm going to try it when I get home from work.

SBZRO said:
GQ, let me know how it works. I'm going to try it when I get home from work.
Click to expand...
Click to collapse
Deal. I'm installing and setting it up now.

Related

Help with smartskey and the Cingular 8125

I just "installed" smartskey onto my Cingular 8125 and I get the soft keys to work (holding the left softkey activates the start menu) but I can't get any other functions to work, mainly the volume/jog and the dpad launcher.
Can someone tell me what's missing? Thanks!
This is my config (pretty much the default):
; INI FILE MUST BE SAVED IN UNICODE, PLEASE USE NOTEPAD TO EDIT IT
[MAIN]
; set LSKEY to 1 if you want to override Left Soft Key (DEFAULT 1)
LSKEY=1
; set RSKEY to 1 if you want to override Right Soft Key (DEFAULT 1)
RSKEY=1
; set VOLKEY to 1 if you want to override Volume Key (DEFAULT 1)
VOLKEY=1
; set DPAD to 1 if you want to use dpad to launch call log, contacts in phone app (DEFAULT 1)
DPAD=1
; set CLOSEAPP to 1 if you want to close app instead of hide (DEFAULT 0)
CLOSEAPP=1
; set STARTONREBOOT=1 to 1 if you the program to be start automatically during
; reboot, use with RSKEY (DEFAULT 0)
STARTONREBOOT=1
; set VOLUMEONPHONE=1 if you want to set volume using volume key in phone app
; use with VOLKEY (DEFAULT 1)
VOLUMEONPHONE=1
; set VOLUMEONTODAY=1 if you want to set volume using volume key in today
; use with VOLKEY (DEFAULT 1)
VOLUMEONTODAY=1
; use with lskey, rskey (DEFAULT 1)
PAGEONEXPLORE=0
; set OMAPCLOCK to the clock if you want to use omapclock and automatically
; set the clock speed after wakeup, you should put OmapClock.exe in the same
; directory of smartskey.exe
; REMEMBER TO REMOVE ';' BEFORE THE LINE TO ENABLE IT
;OMAPCLOCK=264
;REMOVEDUPSDDAEMON=0
;STARTMENUMETHOD=0
DUP=2
DDOWN=3
DRIGHT=1
DLEFT=4
; if you set CLOSEAPP to 1, the program will hide the following
; apps (by title) instead of closing. Other apps will be closed.
; maximum can set 16 apps
[EXCEPTIONLIST]
APP00=Text Messages
APP01=Outlook E-mail
APP02=Hotmail
APP04=MMS
APP05=Contacts
APP06=Calendar
APP07=Camera
Jason_Wilkerson said:
I just "installed" smartskey onto my Cingular 8125 and I get the soft keys to work (holding the left softkey activates the start menu) but I can't get any other functions to work, mainly the volume/jog and the dpad launcher.
Can someone tell me what's missing? Thanks!
This is my config (pretty much the default):
; INI FILE MUST BE SAVED IN UNICODE, PLEASE USE NOTEPAD TO EDIT IT
[MAIN]
; set LSKEY to 1 if you want to override Left Soft Key (DEFAULT 1)
LSKEY=1
; set RSKEY to 1 if you want to override Right Soft Key (DEFAULT 1)
RSKEY=1
; set VOLKEY to 1 if you want to override Volume Key (DEFAULT 1)
VOLKEY=1
; set DPAD to 1 if you want to use dpad to launch call log, contacts in phone app (DEFAULT 1)
DPAD=1
; set CLOSEAPP to 1 if you want to close app instead of hide (DEFAULT 0)
CLOSEAPP=1
; set STARTONREBOOT=1 to 1 if you the program to be start automatically during
; reboot, use with RSKEY (DEFAULT 0)
STARTONREBOOT=1
; set VOLUMEONPHONE=1 if you want to set volume using volume key in phone app
; use with VOLKEY (DEFAULT 1)
VOLUMEONPHONE=1
; set VOLUMEONTODAY=1 if you want to set volume using volume key in today
; use with VOLKEY (DEFAULT 1)
VOLUMEONTODAY=1
; use with lskey, rskey (DEFAULT 1)
PAGEONEXPLORE=0
; set OMAPCLOCK to the clock if you want to use omapclock and automatically
; set the clock speed after wakeup, you should put OmapClock.exe in the same
; directory of smartskey.exe
; REMEMBER TO REMOVE ';' BEFORE THE LINE TO ENABLE IT
;OMAPCLOCK=264
;REMOVEDUPSDDAEMON=0
;STARTMENUMETHOD=0
DUP=2
DDOWN=3
DRIGHT=1
DLEFT=4
; if you set CLOSEAPP to 1, the program will hide the following
; apps (by title) instead of closing. Other apps will be closed.
; maximum can set 16 apps
[EXCEPTIONLIST]
APP00=Text Messages
APP01=Outlook E-mail
APP02=Hotmail
APP04=MMS
APP05=Contacts
APP06=Calendar
APP07=Camera
Click to expand...
Click to collapse
To use the Volume slider as a "Jog Wheel" yo need "PAGEONEXPLORE=1" not "PAGEONEXPLORE=0" as you currently have set. Make this change and soft reset, or tap the shortcut to "Launch" smartskeys. this will present a dialog window to close it, do so, then relaunch using the shortcut.
Thanks! That corrected the "jog wheel" but any suggestions on the DPad problem?
Jason
I'm not sure I understand the question. What are you trying to do with the DPad?
The documentation says that you can use the dpad to launch 4 different applications, depending on the direction:
DUP=x
DDOWN=x
DLEFT=x
DRIGHT=x
x =
0: Do nothing
1: Call Log
2: Quick Dial
3: Contacts
4: Messaging
Nevermind - I just figured it out... I thought this would work from the Today screen, but you have to be in the Phone Application.
Thanks for the help though!
Jason
Dpad problem
Jason_Wilkerson said:
Nevermind - I just figured it out... I thought this would work from the Today screen, but you have to be in the Phone Application.
Click to expand...
Click to collapse
Well, but dpad is not working for me (details)
Nobody has an idea?

[REF][UPDATED 09/08]List of Diamond Tweaks

This is a summary of Diamond tweaks collected from various threads on XDA and from people's contributions. Thanks to all who discovered the Tweaks (not mentioning by name because there's too many to mention and all I did is aggregate). This is a collective effort so let's keep the list growing!
thread. Let's keep the comments in the Warning: Be sure you know what you're doing and read around the Diamond forums to see where others have run into trouble and with which tweaks on which ROMs. Many people have had to Hard Reset their devices while others have had no problems so read up!
1. Boost TFL3D Performance --> Using Advanced Config, change File system cache to 8mb and file system filter cache to 131072
2. Boost TFL3D Performance --> HKLM\System\Storagemanager\Fatfs and change key Cachesize from 16384 to 32768
3. Wake Up on New SMS --> HKLM\Drivers\BuiltIn\RIL : DisableSMSWakeUpEvent <-- set to "1" by default. Change value to "0"
4. Switch Mute Call on phone flipped face down: HKLM\Software\HTC\PHONE : FaceDownMuteRing: change value to "1" (FIXED: thanks KuKuRiKu and everyone)
5. Change CallWaiting Tone --> HKLM\Software\HTC\PHONE : by default set to \windows\waitingtone.wav by default. change to anything else
6. Boost TFL3D Scrolling Speed --> - HKLM\SYSTEM\GDI\GLYPHCACHE\limit = 16384 or 32768 (DWORD decimal)
- To change it back to the default: - HKLM\SYSTEM\GDI\GLYPHCACHE\limit = 8192 (DWORD decimal)
7. To do a Hard Reset, with the phone ON, hold down the Volume Down and Enter (round navigation) keys and press soft reset while they are pressed
8. Prevent screen switching off during phone call --> HKEY_Local_Machine\Drivers\BuiltIn\RIL\EnableFastDormantDisplayDuringCall to 0 (Note: does not work on all ROMs)
AND (tested and works on EU ROMs thanks to Rod65)
HKCU\ControlPanel\Phone\Sleep switch value from 1 to 0
9. Downlod original CONTENT folder (Wallpaper, VIDEO, MUSIC) here http://rapidshare.com/files/121271047/CONTENT_Internal_storage.rar.html
10. Set HTC Album X button to close not minimize:ok_minimize change value to 0
11. Disable Enlarged Title bar (when you click on a notification) to the default WM behavior: HKLM->Software->HTC->EnlargeTitleBar - and change "Enable" from 1 to 0.
12. Turn off startup aninmation and sound: HKEY_Local_Machine\Software\HTC\HTCAnimation\ -> rename both "StartupGif" and "StartupWav" to other names
13. Enable GPS photo: HKEY_LOCAL_MACHINE\SOFTWARE\HTC\Camera\P10 -> change the value "enabled" from 0 to 1
15. Another supposed TFL3D tweak for better performance: HKLM\Software\OEM\TFLOSettings:
SpeedHigh: default value (25) <-- Change to (5) / SpeedLow : default value (70) <-- Chnge to (14) save and soft reset
16. Adjust screen sensitivity: HKEY_LOCAL_MACHINE\Drivers\TouchPanel
Value = PressureThreshold
Change from the default dword:00000027 or 34 to dword:000000f0 or 240 in decimal
17. Lightsensor Switching the Screen off- realised by yelitterulez, confirmed by pietrucci and tested by myself. When making a call the screen stays on if you leave the phone lying flat on a table. If you wait 10 seconds into the call, you can pick it up to your ear and the screen stays on.
BUT if you make a call with the phone slightly tilted/ slanted (you get the idea), the screen turns off as soon as the call gets connected!
The moment you hold the phone to your head the blacklight turns off. In fact: the moment you hide the screen with anything it turns off! (try your hand...).
This might be the reason why everybody's complaining about the screen turning off during a call: you hold the phone to your head! When you turn the screen back on manually, it stays on no matter if you hold your hand or head...
18. Automatically lock your Diamond --> HKEY_CURRENT_USER\ControlPanel\BackLight\AutoDevic eLockEnable from 0 to 1 and everytime your backlight goes off the device is locked
19. More Camera Modes:
To Enable 'Burst': HKEY_LOCAL_MACHINE\SOFTWARE\HTC\Camera\P6 -> change the value "enabled" from 0 to 1
To Enable 'Sport': HKEY_LOCAL_MACHINE\SOFTWARE\HTC\Camera\P8 -> change the value "enabled" from 0 to 1
To Enable 'Video Share': HKEY_LOCAL_MACHINE\SOFTWARE\HTC\Camera\P9 -> change the value "enabled" from 0 to 1
20. Delay device autolock: HKEY_CURRENT_USER\ControlPanel\BackLight\AutoDeviceLockTimeout -> Change the Dword value (30 = 30 seconds, etc)
21. Enable Manual Screen Rotation (Portrait/Landscape): HKLM - System - GDI - Rotation - HideOrientationUI (change from 1 to 0)
22. Hide SIM Contacts: HKCU\ControlPanel\Phone - create a new DWORD value named "ShowSim" and set it to 0
23. Show Weekday in TFL3D (thanks to pulp) - download and install http://rapidshare.com/files/127174792/weekday.cab
24. Enable HSUPA:
HKLM\Software\HTC\AdvancedNetwork\SupportHSUPA =change it to 1
25. Enable Audio Booster without headset-->HKLM/System/State/Hardware/Headset set the value to 1 (soft reset will bring it back to 0)
26. Add a Call History tab to TF3D (discovered by sushilange, spread by Fabliv) --> http://forum.xda-developers.com/showthread.php?t=410180
27. Add new Cities to TF3D http://forum.xda-developers.com/showthread.php?t=408918 - thanks to R. DevilR
28. Remove orphan icons and shortcuts - http://forum.xda-developers.com/showpost.php?p=2461697&postcount=3
29. Four icons in a row in WM Programs/Settings screens - http://forum.xda-developers.com/showpost.php?p=2462244&postcount=16
30. Remove Vertical and Horizontal Scrollbars
For the horizontal (bottom) scrollbar:
HKLM\System\GWE\cyHScr = 0 (DWORD decimal)
For the vertical (right) scrollbar:
HKLM\System\GWE\cxVScr = 0 (DWORD decimal)
31. Remap Manila softkeys:
HKLM/Software/HTC/manila/
HomeLSKPath, which is the left softkey (Standard = Phonepad)
And
HomeRSKPath, which is the right softkey.
If you change these with the location of the programs you want to link to, and simultaneous change the names:
HomeLSKText = Left softkey text
And
HomeRSKText = Right softkey text.
HKEY_LOCAL_MACHINE\Software\HTC\HTCAlbum :
32. Change system and context menu font size:
HKEY_LOCAL_MACHINE\system\gwe\menu\popfnt
and change the value for the "Ht" entry to "1000" decimal (from 1200)
33. Increase maximum picture size when shooting in Burst and Sports mode:When activating "burst" and "sport" the max size of the pictures is "L" but if you change:
HKLM\SOFTWARE\HTC\Camera\P8\MainCamCaptSize value to 1024
and
HKLM\SOFTWARE\HTC\Camera\P8\MainCamSupportCaptSize to 1744Do the same for P6 and you can now shoot in these modes up to 3M and not just L - thanks to nnevynn for
34. Get Blackberry Connect working on your Diamond!! (thanks to cybertech99)
http://rapidshare.com/files/114522380/BBConnect_WM6_Profession.cab
35. Disable Diamond Phonepad Skin
HKLM -> Security -> Phone -> Skin -> Enable (set 1 to 0), then reset.
36. Enable Better Power Management
HKLM\Drivers\SDCARD\ClientDrivers\Class\SIM_Class
Set DisablePowerManagement = 0 (default=1)
HKLM\Drivers\SDCARD\ClientDrivers\Class\MMC_Class
Set DisablePowerManagement = 0 (default=1)
HKLM\Drivers\SDCARD\ClientDrivers\Class\NAND_Class
Set DisablePowerManagement = 0 (default=1)
nice one on the sms wake. We should expand the list! THanks!
Update:
Thanks for updating the list!
Since I don't see a tweak for Disabling SMS Conversation (The costly SMS Chat) I will post it here!
Disable SMS Conversation in WM 6.X
In Registry Editor: Create a folder named "OEM" in "HKEY_CURRENT_USER\Software\Microsoft\Inbox\Settings"
In the new "OEM" folder, make a new DWORD key called "SMSInboxThreadingDisabled" and give it a value of "1"
That will disable the SMS conversation. When you click on the messages on the SMS tab on TF3D, it will take you to the normal SMS inbox instead.
Hope it helps
thanks a lot, keep going please
Great!
This is very useful and it helps solve a lot of problem. Will the cache size change make the D unstable?
For some they say it has...but for me, my device is running great!
mkhattab said:
This is a summary of the proven tweaks taken from the Diamond Tweaks thread. Let's keep the comments in the Diamond Tweaks thread and keep this one as a list of the actual tweaks only to be an easily accessible summary. Thanks to all who discovered the Tweaks
1. Boost TFL3D Performance --> Using Advanced Config, change File system cache to 8mb and file system filter cache to 131072
2. Boost TFL3D Performance --> HKLM\System\Storagemanager\Fatfs and change key Cachesize from 16384 to 32768
3. Wake Up on New SMS --> HKLM\Drivers\BuiltIn\RIL : DisableSMSWakeUpEvent <-- set to "1" by default. Change value to "0"
4. Switch Mute Call on phone flipped face down: HKLM\Software\HTC\PHONE : FaceDownMuteRing: change value to "0"
5. Change CallWaiting Tone --> HKLM\Software\HTC\PHONE : by default set to \windows\waitingtone.wav by default. change to anything else
Click to expand...
Click to collapse
I have had a real issue with number 2, I had to do a hard reset after changing the Cachesize to 32768. During startup the device hanged and wouldn't load up the touch flow, nothing worked.
saveferris said:
I have had a real issue with number 2, I had to do a hard reset after changing the Cachesize to 32768. During startup the device hanged and wouldn't load up the touch flow, nothing worked.
Click to expand...
Click to collapse
I had the exact same problem, wouldn't recommend this one.
saveferris said:
I have had a real issue with number 2, I had to do a hard reset after changing the Cachesize to 32768. During startup the device hanged and wouldn't load up the touch flow, nothing worked.
Click to expand...
Click to collapse
Yes, I had same problem.
Hmm afaik 'File system cache' in 1) is the same as the key HKLM\System\Storagemanager\Fatfs\cachsize in 2).
So tip 1 sets it to 8mb, and tip 2 changes it from 16mb to 32mb. So that suggests its 16m to start with?
Sounds like the file system filter cache is whats making the main difference. Thats this key:
HKLM\System\StorageManager\Filters\fsreplxfilt\Rep lStoreCacheSize
Can someone maybe post the original values of these two keys?
someone1234 said:
Hmm afaik 'File system cache' in 1) is the same as the key HKLM\System\Storagemanager\Fatfs\cachsize in 2).
So tip 1 sets it to 8mb, and tip 2 changes it from 16mb to 32mb. So that suggests its 16m to start with?
Sounds like the file system filter cache is whats making the main difference. Thats this key:
HKLM\System\StorageManager\Filters\fsreplxfilt\Rep lStoreCacheSize
Can someone maybe post the original values of these two keys?
Click to expand...
Click to collapse
There are 3 values to be changed.
1. The Icon Cache which is suggested to be changed to 131072. The registry setting is:
[HKEY_LOCAL_MACHINE\System\GDI\GLYPHCACHE]
"limit"=dword:00020000
The value is shown as hexadecimal, which is equivalent to 131072 in decimal.
2. The second value is to be changed in FAT File System cache.
3. The third value is to be changed is Filters File System cache.
The cache sizes in #2 and #3 are usually kept same, for example 32768 decimal (32MB). Though, this eats up a lot of memory, but makes the system very fast. Lately, I have seen in KaiSer and Universal that these values are set as dynamic values.
Hope this is helpful.
KOR!
anyone know which registry key can make the phone not blank the screen when answering call?
lwclam said:
anyone know which registry key can make the phone not blank the screen when answering call?
Click to expand...
Click to collapse
Yeah, people do know. Search for it.
Just read about a 'tweak' in another thread. It seems disabling "GPRS auto attach" in Advanced Configuration Tool helps in preserving battery live.
Read about it here: http://forum.xda-developers.com/showthread.php?t=395301
For me turning that option to off would be best solution as well. Even more so if it really helps save the battery.
Since I don't have a Diamond yet I havent gotten a chance to actually test this tweak.
Another thing I've found eats up a lot of battery life is the schedule to check email. I have my Direct Push set to an Exchange account and a second Internet Email account. Changing the frequency of checking the second account really makes a difference.
mkhattab said:
Another thing I've found eats up a lot of battery life is the schedule to check email. I have my Direct Push set to an Exchange account and a second Internet Email account. Changing the frequency of checking the second account really makes a difference.
Click to expand...
Click to collapse
agree. my setup is similar to you. i was using 10 mins to check my second IMAP account, i have only around 9-10 hrs standby time. Now, i changed that IMAP account to check in every 60 mins, now, standby time is extended to more than 12 hrs.
what was the previous default File system cache and file system filter cache setting, cause my phone has slowed down since i have changed it. please reply back to me as soon as possible. thank you
http://forum.xda-developers.com/showthread.php?t=397935&page=8
posts 75 and 76
Thanks alot for the fast reply, and just one other question did any one arabize the diamond cause i have tried but it says installation not done. Thanks again man
sorry guys...noob question
to get the SMS to wake up the phone,
where is the HKLM folder in registry?
wishmaker738 said:
sorry guys...noob question
to get the SMS to wake up the phone,
where is the HKLM folder in registry?
Click to expand...
Click to collapse
Read the first post in this thread!

Stopping Txt msg tone with key press?

when some one calls if u press a button the sound ringtone stops. With text msg it does not, is there a way or software replacement that will do this? Sorry i offer no help.
you could use a Mortscript
ive seen and heard alot about mortscript but dont really know what it is? How would i use it? sorry...
you can automate almost everything with Mortscript. My scripst have been very simple. This one toggles the "Play Sound" for Incoming text messages (defined by the big GUID reg key - at least on my stock 6.1 Kaiser ROM)
currentstate=Regread ( "HKCU", "ControlPanel\Notifications\{A877D65B-239C-47a7-9304-0D347F580408}", "options")
If (currentstate=0)
RegWriteDWord ( "HKCU", "ControlPanel\Notifications\{A877D65B-239C-47a7-9304-0D347F580408}", "options",1 )
RegWriteDWord ( "HKLM", "Software\Microsoft\Color", "Basehue",123 )
Else
RegWriteDWord ( "HKCU", "ControlPanel\Notifications\{A877D65B-239C-47a7-9304-0D347F580408}", "options",0 )
RegWriteDWord ( "HKLM", "Software\Microsoft\Color", "Basehue",417 )
endif

diamond registry question

sorry for this stupid question but for these tweaks
Code:
1. Boost TFL3D Performance --> Using Advanced Config, change File system cache to 8mb and file system filter cache to 131072
2. Boost TFL3D Performance --> HKLM\System\Storagemanager\Fatfs and change key Cachesize from 16384 to 32768
3. Wake Up on New SMS --> HKLM\Drivers\BuiltIn\RIL : DisableSMSWakeUpEvent <-- set to "1" by default. Change value to "0"
4. Switch Mute Call on phone flipped face down: HKLM\Software\HTC\PHONE : FaceDownMuteRing: change value to "1" (FIXED: thanks KuKuRiKu and everyone)
5. Change CallWaiting Tone --> HKLM\Software\HTC\PHONE : by default set to \windows\waitingtone.wav by default. change to anything else
6. Boost TFL3D Scrolling Speed --> - HKLM\SYSTEM\GDI\GLYPHCACHE\limit = 16384 or 32768 (DWORD decimal)
- To change it back to the default: - HKLM\SYSTEM\GDI\GLYPHCACHE\limit = 8192 (DWORD decimal)
and others I don't know how to open registry editor. Can somebody explane me ?
first get a registry editor
total commander
or
PHM Registry Editor
will do fine
Big thanks.
I installed total commander , but i couldnt find HKLM, theres only 4 roots of HKEY_XXXXXXXX
anyone can help, im new at this
falcon212 said:
I installed total commander , but i couldnt find HKLM, theres only 4 roots of HKEY_XXXXXXXX
anyone can help, im new at this
Click to expand...
Click to collapse
HKLM = shortcut for HKEY LOCAL MACHINE
omg... im moron... LOL

Turning on bluetooth

Is there a fast way to turn on bluetooth on the Diamond? Whenever I want to use my headset, I have to go to Settings, Communications, bluetooth and its a bit too slow.
Any suggestions or tips?
Thanks,
Jon
I use QuickMenu (search the forum) which provides a nice little menu pick for this. Granted you need to select Start: Quick Menu: BlueTooth but then it's right there. It's not like you are selecting some application that will then occupy your screen so that you can toggle something on and then you have to get rid of the application/screen. Plus QuickMenu is a much better start menu anyway!
I use this, set to a soft key with softkey manager. One touch toggle, can't get much quicker!!
thanks for the program - does anyone know a way to hook this exe into an event? Perhaps such as turning on bluetooth when I plug in a USB cable?
-Mike
Download and install mortscript from here http://www.sto-helit.de/index.php?module=page&entry=ms_overview&action=view
Create script as follows:
Code:
VariableValue = 0
While (1)
USBState = RegRead("HKLM", "System\State\Hardware", "Cradled")
If (USBState = 1 && VariableValue = 0)
Run "\Windows\Start Menu\Programs\ToggleBTh.exe"
VariableValue = 1
EndIf
If (USBState = 0 && VariableValue = 1)
Run "\Windows\Start Menu\Programs\ToggleBTh.exe"
VariableValue = 0
EndIf
Sleep 2000
EndWhile
Save in Windows\Startup folder.
use advanced config to map one of the soft keys to run the Comm Manger and use the 10 buttons comm manager. this will give you easy access to all communications
What is a softkey?

Categories

Resources