Hay guys and gals...
I have a question, regarding the PDA sound of the Wizard(so not the phone sound) it's the left bar on your volume shortcut...
I imagine this is a question which is on a lot of TomTom 6 users by now...
Is there a way, to increase this sound automatically only when a certain program is active, and to decrease it to standard when the program is terminated?
Tomtom 5.21 used to take over this slider, and the sound would be loud enough...after tt5.21 terminated, it would return to it's original value.
Now in TT6, the sound is related to the pda sound bar....so it's either turn up your PDA volume for all time(which I don't want to do, because all the sounds are so loud then...) or choose to not hear the voices of TomTom6 when you drive, even with the TomTom volume turned to 100%...
Hope someone has the solution for me...pretty please
Greetings!!!
maybe Mortscript???HELP PLEASE!!!
maybe Mortscript can do this for me?
But unfotunately I have no idea what strings I should use..
Could someone help me create a .mscr file to launch TOMTOM with max volume and to restore volume te previous, or set value after TOMTOM exit?
Prettyplease with cherry's on top???
got going...
Okay..
I got this far with mortscript:
run (aplication)
setvolume 255
This string turns up the volume all the way when you run the app.
Now only, I want it to go back to a preset value when I exit the program..
I tried:
Run (application)
While procexists (aplication.exe)
Setvolume 255
endwhile
Setvolume 70
But this imediately sets the volume to value 70...
even tried it with sleep 10000 between the run and the while, to make sure the app was running, no luck
Anyone gotten an idea???
No idea??
Is there no one with an idea on this???
Turning volume up is no problem, turnig it down again after closing app is what I can't seem to manage....
Maybe there's a program which does this???
:?: :roll: :?:
ANYONE????
Got the answer from Mort himself::::
Here's the solution...worked for me!!
Needs mortscript and a text editor(notepad)
My question to him on his support forum:
Haia...
I'm looking for a way to turn up the PDA volume during a program, and turn it down after the program terminates...
I tries to do this with Mortscript, using
run (aplication)
while (aplication)
setvolume 255
endwhile
setvolume 80
Even tried it with a sleep before the while...to ensure the app is up and running
This script however doesn't turn the volume up, but goes directly to volume 80...
The ap is Tomtom 6...the volume is now coupled on your PDA volume, so I have either very loud PDA sounds, or a very silent TomTom voice...this bugs me...
Is there a way to turn up the volume during the aplication, and turn it down again automatically after app exits.
Turning the volume up before the app starts is of course no problem using mortscript....but the turning it down after app ends is what's keeping me awake at night...
Hope someone has the answer....
Thu Sep 07, 2006 9:32 am
Morts reply:
Probably the window name in "While wndExists ..." is wrong. Try to get it with GetActiveWindow and Message, and be sure to use correct upper/lower case (i.e. "Tomtom" won't find "TomTom"!).
Another way might be to use RunWait, i.e.
SetVolume 255
RunWait \...\tomtom.exe
SetVolume 80
This wouldn't reset the volume all the time, but also won't require as much CPU time. If you prefer the while loop (or RunWait doesn't work with TomTom), you should add a Sleep in the loop, so the check and volume change doesn't happen all the time. Sleep is far more CPU friendly.
Tutorial....
Okay, here goes....
Firstly download and install Mortscript, to be found at:
http://www.sto-helit.de/modules/edito/content.php?id=38
Then put the file attached to this post on your device..
Very important :!: :!: to change the extension of the file from .txt to .mscr :!: :!:
For some reason .mscr extensions are not allowed on this forum.
You can put the file anywhere you like...
Then click it to make TomTom run, The script will be executed and TomTom will start automatically..
If you find the sound too loud, take a text editor, open the file and change the value at Setvolume 255 to something less...
Same with the return sound..If you find that to much or to less, change the value at Setvolume 90...
You just have to tweak those two to your own desired volumes.
For people with devices in different languages, you should open the file with a text editor and change the value of \Program Files\Navigator\ to the value where you've gotten TomTom installed...
Good luck!!!
Works great, thanks!!
Now I have just put this script file in my "\Windows\Start Menu" folder and use this to launch TT6.
Fantastic.
BTW, 60 is the first "notch" of volume, which is where I normally have my phone.
Can anyone test the backlight function? I want to see if i can solve the iguidance problem of the battery light going off. this is what i have sucessfully working:
SetBacklight External 100, Battery 100
just found out about mortscript recently. very nice. found this thread doing some searches for solutions to my ttn6 problems. here's the script i use which gets the current volume first before setting to max.
# ace_ttn_start.mscr
# launch tomtom and keep active, set volume to max
# initialize values
ErrorLevel("syntax")
ttn_exe = "\Program Files\Navigator\TomTom Navigator.exe"
ttn_ttl = "TomTom Navigator"
intrval = 2000
# turn off connection established notification
mem_conn = RegRead("HKCU","ControlPanel\Notifications\{8ddf46e7-56ed-4750-9e58-afc6ce486d03}","options")
RegWriteDWord("HKCU","ControlPanel\Notifications\{8ddf46e7-56ed-4750-9e58-afc6ce486d03}","options",0)
# adjust volume
mem_vol = RegRead("HKCU","ControlPanel\Volume","Volume") * 255 / 4294967295
SetVolume(255)
# launch tomtom
Run(ttn_exe)
WaitFor(ttn_ttl, 30)
# keep tomtom active
While(WndExists(ttn_ttl))
If (NOT WndActive(ttn_ttl))
Show(ttn_ttl)
EndIf
Sleep(intrval)
EndWhile
# replace changed values
RegWriteDWord("HKCU","ControlPanel\Notifications\{8ddf46e7-56ed-4750-9e58-afc6ce486d03}","options",mem_conn)
SetVolume(mem_vol)
Click to expand...
Click to collapse
Related
Here are some registry tweaks for your Mini
Please make a backup of your REGISTRY and all the other stuff of your PDA before you apply the following tweaks
Install directory to your storage/storage card.
To install your application/program to storage memory or storage card memory. Whenever you are about to install, there will one screen appear to ask you where to install the program. But not to forget to change it back the default value to 0 after the installation or u might encounter weird situation when you want to change your today screen and etc..
Code:
HKEY_LOCAL_MACHINE\Software\Apps\Microsoft Application Installer
Default: 0
Changed: 1
Fast graphic but consume memory
It can fasten and smoothen your OS graphic movement, but it will eat some of your program memory, not that much. You also can change it to 32768 instead of 16384 for greater result.
Code:
HKEY_LOCAL_MACHINE\System\GDI\GLYPHCACHE
Default: 8192
Changed: 16384
To hide screen rotate icon
There is a small PDA icon at your bottom right corner of your screen to change ur screen orientation from patriot to landscape and other way round. For me, its unnecessary, so you can hide it.
Code:
HKEY_LOCAL_MACHINE\Service\ScreenRotate
ShowIcon value change to 0
Default: 1
Changed: 0
To turn off flashing LEDs and Vibration
It will turn off the blinking green/red/orange LED and the vibration mode. Some people will irritate by the blinking, especially when you're driving and sleep at night.
Code:
HKEY_LOCAL_MACHINE\Drivers\Builtin\AllLEDMgr
Default: 1
Changed: 0
Enable camera frame rate display
Camera frame rate will appear on the screen when u're using the camera
Code:
HKEY_LOCAL_MACHINE\SOFTWARE\HTC\CAMERA\AppDefSettings\General
Default: 0
Changed: 1
To set ur ringstones to run from Storage Card
Place all your downloaded ringtones from internal memory to storage card. Usefull for our small/ciput Mini memory.
Code:
HKEY_CURRENT_USER\ControlPanel\SoundCategories\Ring\Directory registry key
Default value: "\Windows\Rings\"
Change it to: "\Storage Card\<your preferred directory>\" (Note that "\" at the end is extremely important!!!)
Place those ringtones into \Storage Card\<your preferred directory>\
Enable hidden editor function in Album
This opens the additional hidden function in the ALBUM, allows u to edit ur photo, brightness, contrast, crop, etc. Album (opens Editor menu):
Code:
HKEY_LOCAL_MACHINE/SOFTWARE/HTC/Album/Disable Editor
Disable value changed to: 0
SPB Pocket Plus Storage Card Display
If u notice, there is no indicator available to display our storage memory capacity. This will add Storage Card display icon. PLEASE FOLLOW THE STEP CAREFULLY!!
1. Add icon/item Backup Battery Indicator
2. Regedit the key in
Code:
HKEY_LOCAL_MACHINE\SOFTWARE\Spb Software House\Pocket Plus\Today Items\Pannels\
3. Find key in directory 00000 or 00001 or 00002 or 00004; that have Name Action with value *backupbattery
4. Change the value to *storagecard
5. Soft reset
O2mini Camera Settings Configuration
Enhance you picture taken quality. It will remove your camera snow effect
Code:
HKEY_LOCAL_MACHINE/SOFTWARE/HTC/Camera/AppDefSettings/General
Set
Contrast: 5
Brightness: 6
Saturation: 3 or 4 (recommended by Doc)
Hue: 5
Sharpness: 3
Unlimited 3gp Recording for mms settings
This will allow you to take unlimited recording time
Code:
HKEY_LOCAL_MACHINE \ SOFTWARE\HTC\camera\AppDefSettings\P3
DWord Value called "EnableLimit", change it from 1 to 0.
To include both time and date in taskbar
You'll get time and short date on your right top of the screen, rather just displaying time. Meaning, you can remove your date item on your today screen.
Code:
Phase 1:
1) Go to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shell\
2) Create a binary value named "TBOpt" and set its value to "13 00 00 00".
3) Soft-reset
Note: If u ever get bored of the date display, rid it by deleting the TBOpt key.
Phase 2: IF U NEED THE CHANGE THE DATE FORMAT:
i) Just go to Settings>Regional Settings>Date>Short Date
ii) Choose "dd-MMMM-yy" or whichever format u prefer.
iii) Click "ok".
Disabling “Message Sent” notification bubble
For those who hates the "Message Sent" notification after sending an SMS, this is the steps to remove the bubble notification...this is the STEP by STEP method to do it in case some of you guys dont get it right...
1. First, you will need to download a Registry Editor to help you do it...
2. using the Registry Editor, navigate to:
Code:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Inbox
3. Next, click on Inbox (make sure the Inbox is highlighted) and select Edit, New Key
4. Name the New Key as "Settings"
5. Click on "Settings" (make sure the Settings is highlighted) and select Edit, New String Value
6. On "Value name:", key in SMSNoSentMsg and in "Value data", key in 1
7. Soft reset your device and test it with one SMS, and you will notice that the SMS Sent bubble is being disabled.
Audio Tweak
Audio Tweak enhances the speaker performance of the O2 Mini (some devices have this set to a lesser priority and by using this you get better sound, if your device is already set to a high level you have no need for this)
Code:
HKEY_LOCAL_MACHINE\Drivers\BuiltIn\WaveDev\Priority256
Default: 110
Changed to: 80
Disable start menu animation
This tweaking will eliminate the list of menu "drop-down animation" if u tab on Start/Flag icon.
Code:
HKEY_LOCAL_MACHINE\SYSTEM\GWE\Menu\
AniType value change from 6 to 0.
Looping Ringtones Delay
Ring tone has a standard 3 seconds delay before repeating. You can set the delay from 0 second to how many second that you want.
Code:
HKEY_CURRENT_USER\ControlPanel\Sounds\RingTone0
Change 'Script' from 'av0pw3r' to 'av0pr' and you'll get 0 sec delay.
OR change it to
av0pw1r = wait for 1 sec
av0pw2r = wait for 2 sec
and so on...
Plus..heres the code
a - stands for display
r - repeat/replay the script again
c - sets the volume C50, c150, c100
f - means flash .. f1 flash for 1 second and f0 stands for flash continuously
p -means play ringtone
v- vibrate then incorporate with number to state how many seconds it will vibrate example. v3 vibrate for 3seconds or v0 for continous
w - stands for wait or pause then specify how many seconds like w3(wait for 3 seconds)
heres the example
Flash - af1w60f0
Ring - apw3r
Ring Once - ap
Increasing Ring - c50apw3c150r
Vibrate Then Ring - v3w3apw3r
Vibrate - av3w3r
Short Vibrate - av1w3r
Vibrate Long Then Ring - v3w3v3w3apw3r
Vibrate And Ring - av0pw3r
Increasing Ring And Vibrate - c50apv3w3c150r
Fast Vibrate And Flash - af1v1w1f0r
Vibrate and Ring Continously without pausing - av0pr
SMS Notification On
This is different with message notification send, this will confirm you when message already recieve by receiver
Code:
[HKEY_CURRENT_USER\Software\Microsoft\Inbox\Settings]
SMSDeliveryNotify = dword:00000001 ->0 if off
How to:
Create new Dword value name SMSDeliveryNotify
with decimal value data 1
Wacth for capital letter
Changing the Message Sent Notification Message
Change the default "MessageSent". Example "Pesan sudah di kirim"
Code:
[c\SOFTWARE\Microsoft\Inbox\Svc\SMS]
Change the Value "MessageSent" to whatever you like.
Change the default input method
To change your input method, keyboard, letter recognizer, block recognizer as ur default, even you soft reset ur mini.
NOTE:
*for English ROM
*cannot set transcriber and Phatware Calligrapher with this trick.
Code:
HKEY_CURRENT_USER\ControlPanel\Sip
Change the "DefaultIm" value for:
To set keyboard as default SIP, change the "DefaultIm to
{42429667-ae04-11d0-a4f8-00aa00a749b9}
To set Character Recognizer as default SIP, change the "DefaultIm to
{42429690-ae04-11d0-a4f8-00aa00a749b9}
To set Block Recognizer as default SIP, change the "DefaultIm to
{42429691-ae04-11d0-a4f8-00aa00a749b9}
*change only the bold number will do. The rest are totally the same.
To set WordLogic as default SIP, change the "DefaultIm to
{4345EA53-B8A5-4E24-A14A-F7C34DD78077}
*No WordLogic in Xda O2 mini.
To Get The AM/PM on The Top Bar
Code:
HKEY_LOCAL_MACHINE\nls\overrides
1. Creat new String value with Name = S1159 & Data = Am
2. Creat new String value with name = S2359 & data = Pm
3. Creat new String value with name = STFmt & data = h:mm tM
- capital letters and small letters must be followed exactly or it may cause hard resets!
- you will get capital "AM/PM" on the top bar eventhough the registry data value above was entered as "Am/Pm"
Change The Date on The Top Bar
Code:
HKEY_LOCAL_MACHINE\nls\overrides
Look for String value SSDte (short date) and change the value data, some example of date formats i have used below:
- "7 May 05, Friday" by changing the String value SSDte data = d MMMM yy, dddd
- "07/05/2005, Fri" by changing String value SSDte data = dd/MM/yyyy, ddd
Clear Type on LandscapeDisplay
You'll get clear type font in landscape mode. made me dizzy though..not much functionality value..just some fun factor for us curious ones.
Code:
HKEY_LOCAL_MACHINE\System\GDI\ClearTypeSetting
1. Change value data of OffOnRotation from 1 to 0
2. Soft reset
Setting Cleartype Text in PIE
Code:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings
"ClearTypeText"<- Set 1 to Enable Cleartype in PIE, 0 to Disable
Setting ClearType Text in Pocket PC
Optionally, you can go to START>SETTINGS>SYSTEMS>SCREEN>CLEARTYPE
Code:
HKEY_LOCAL_MACHINE\System\GDI
Create a Subkey then Name it "CLEARTYPE"
Settings Screen Text Size
Optionally, you can go to START>SETTINGS>SYSTEMS>SCREEN>TEXT SIZE
Code:
HKEY_LOCAL_MACHINE\ControlPanel\Stylus\96DPI
"CurFont"= change to the ff value ..
dword:00000258 -> Smallest
dword:000002BC -> Smaller
dword:00000320 -> Normal/Default
dword:000003E8 -> Larger
dword:0000044C -> Largest
Thanks to [email protected] for the original post.
I have not tested all of these tweaks on my Mini. Please let me know if any of them are not working, or if you have any of your own tweaks which are not listed :roll:
I tryed Change The Date on The Top Bar now, and a Warning there, becouse when you done that i softreset, the phone wont start upp again.. =(( anyone have a solution? please help..
RanZor said:
I tryed Change The Date on The Top Bar now, and a Warning there, becouse when you done that i softreset, the phone wont start upp again.. =(( anyone have a solution? please help..
Click to expand...
Click to collapse
May be a hard reset would help :?
That is what i dont whant to do.. have no backup=((
Anyone know why it dident work?
Is the Mini the same as I-mate Jam and Qtek S100?
I dont know any other solution for you :? except for a hard reset.
Try SBP Pocket PC tips and tricks. Almost all of the mentioned tweaks are supported by this program & only softreset required to get them activated. Plus no hacking in the registry by hand, just set an option . I got my time & date in the top bar for instance working flawless.
Got two extra hacks for speeding up file browsing:
HKEY_LOCAL_MACHINE\System\StorageManager\FATFS\CacheSize=4096
HKEY_LOCAL_MACHINE\System\StorageManager\FATFS\EnableCache=0x1(1)
Cheers, M
Nice work, bhai. Did some of the tweaks and they work well.
Thanks.
Disable Dialer Number Format
HKEY_LOCAL_MACHINE\SOFTWARE\HTC\IntelliDialer\bShowFormatChar
Value: 0 by default, Set to 1
nonentity said:
Disable Dialer Number Format
HKEY_LOCAL_MACHINE\SOFTWARE\HTC\IntelliDialer\bShowFormatChar
Value: 0 by default, Set to 1
Click to expand...
Click to collapse
What does this do?
get rid of the regional brackets and spaces in the dialer...
ex. <###> ### #### = ##########
cheers
the DELIVER NOTIFICATION doesnt work, i wish this one's working, i really need this kind of program specially here in philippines.
great tweak......most of them work, tnx :wink:
my mistake.....the SMS DELIVER NOTIFICATION.
What key should I change to 1? is it default?
and where can I see the frame rate? camera ? video?
Thanks
hitu said:
Enable camera frame rate display
Camera frame rate will appear on the screen when u're using the camera
Code:
HKEY_LOCAL_MACHINE\SOFTWARE\HTC\CAMERA\AppDefSettings\General
Default: 0
Changed: 1
Click to expand...
Click to collapse
televisi said:
What key should I change to 1? is it default?
and where can I see the frame rate? camera ? video?
Thanks
hitu said:
Enable camera frame rate display
Camera frame rate will appear on the screen when u're using the camera
Code:
HKEY_LOCAL_MACHINE\SOFTWARE\HTC\CAMERA\AppDefSettings\General
Default: 0
Changed: 1
Click to expand...
Click to collapse
Click to expand...
Click to collapse
I think i've changed the frame rate to 1... and it came up when i turn my camera on
i cant find the string value for Change The Date on The Top Bar tweaks... btw i have chinese rom not english one
guys, would you kindly guide me how to make change the registry? I've download the Total Commander (I've heard to make chabge the registry we need to install this program), but after Ive install the Total Commander, what next?
In Windows xp, to change the registry I only enter 'regedit' from start menu -> then Run, so how to enter the registry menu in the WM2003
(by the way I use the O2 mini)
many thanks for your guide.
Camrea "Save Folder" Tweak
check it out http://oldsap.blogspot.com/2006/04/ppc-camera-save-folder-tweak.html
Does anyone know of a tweak that can hide/remove the envelope when a sms message arrives?
do it with pockenzenphone, then find the reg key....
nurrochmat said:
guys, would you kindly guide me how to make change the registry? I've download the Total Commander (I've heard to make chabge the registry we need to install this program), but after Ive install the Total Commander, what next?
In Windows xp, to change the registry I only enter 'regedit' from start menu -> then Run, so how to enter the registry menu in the WM2003
(by the way I use the O2 mini)
many thanks for your guide.
Click to expand...
Click to collapse
Run totalcommander, tap on the root '\\' then select 'registry'. find ur key.
Due to recent problems my mda compact on t-mobile(most say best customer service i have encountered)well now its being replaced.
so what would you do if you had a fresh compact,anythign you do rom,etc etc?
Hi Jace,
Good thing you got a new one First thing I would do is BIG Storage & ditch some of the ext-rom cabs. Then install cabinstl, resco explorer, sprite backup, mortplayer, tcpmp, my reg hacks, some games, mp3's, spb plus & weather, some VIJ stuff, aebutton plus & vgs mail.
Have more fun with your new device
i`d do this:
mksbigstorage,
scary bear powerlevel and vijay toggle today, registry tweaks for time and date, dsp en, keyboard skin from buzz dev, autoinst. boot logo, microsoft net compact framework, mphoneschedule, autoinstaller mods, ozbt, mpeg pocket tv, cab instl,ringtones, background and dialer pit "lourd", tomtom 5.21 europe ... and sktools
(and radio 1.13.00)
&
be happy
thormdac said:
i`d do this:
.... autoinst. boot logo, microsoft net compact framework, mphoneschedule, autoinstaller mods, ozbt, ...
be happy
Click to expand...
Click to collapse
excuse me,what does microsoft net compact framework do? :roll: :?: :?: :?:
oltp said:
Hi Jace,
Good thing you got a new one First thing I would do is BIG Storage & ditch some of the ext-rom cabs. Then install cabinstl, resco explorer, sprite backup, mortplayer, tcpmp, my reg hacks, some games, mp3's, spb plus & weather, some VIJ stuff, aebutton plus & vgs mail.
Have more fun with your new device
Click to expand...
Click to collapse
where r ur reg hacks if they r urs u should add alink 2 ur signature..and what is vj stuff i mean exact namez plz...and can u tell what does vgs mail do
VJ stuffs, Vijay has got lotta cool stuffs done. Visit his site at www.vijay555.com
.net Compact framework is required for many Visual studio made programs to run. It requires the support files.
www.cartystudios.com
Carty said:
VJ stuffs, Vijay has got lotta cool stuffs done. Visit his site at www.vijay555.com
.net Compact framework is required for many Visual studio made programs to run. It requires the support files.
www.cartystudios.com
Click to expand...
Click to collapse
i know he is a graet programmer and he is doin alot 4 us but i want 2 know which of his creations 2 use?
Well its like a buffet there and your choice to choose whatever you would like, right? Try everything and keep the ones to impress you the most!
www.cartystudios.com
max414 said:
where r ur reg hacks if they r urs u should add alink 2 ur signature..and what is vj stuff i mean exact namez plz...and can u tell what does vgs mail do
Click to expand...
Click to collapse
Hi max414,
Pls don't make me reveal too much secrets ;-)
VGSMail is an imap e-mail client, so I receive my e-mail immediately on my magician when it arrives on the mailserver.
VJstuff well like Carty says: test some & keep some. I use them for one handed op. So VJOkButt for really closing app & VJKeyPress to simulate the StartMenu button, both assigned to a hardware button by AEButtonPlus.
Registry hacks? Well I patched it to have Camera, Album, Intellipad, MidletManager & many dll's in \Storage\Windows instead of \Windows which saves me well > 4MB RAM. & I use some of these patches, which I collected since June 2005 on the board I didn't invented them.
I ran across some extra registry tweaks at Aximsite for the X51v which seems to have improved performance on my BA. The extra reg settings are
HKEY_LOCAL_MACHINE\System\StorageManager\FATFS\CacheSize=4096
HKEY_LOCAL_MACHINE\System\StorageManager\FATFS\EnableCache=0x1(1)
HKEY_LOCAL_MACHINE\System\StorageManager\Filters\fsreplxfilt\ReplStoreCacheSize=4096
HKEY_LOCAL_MACHINE\System\StorageManager\Profiles\ MSFlash\FATFS\DataCacheSize=4096
HKEY_LOCAL_MACHINE\System\StorageManager\Profiles\ MSFlash\FATFS\Flags=40
The first two registry entries are already included in the wm5 fixes cab by mamaich but with a diferent value for the cache. I have been using the 4096 cache value myself already. I also tried the extra settings in bold and found it gave another boost to the PPC speed. Here is the original thread http://www.aximsite.com/boards/showthread.php?t=104366&page=1&pp=20 Anyone else like to try and post feedback on their results? If confirmed maybe it can be added to the wm5 cab file.
Edit: Can anyone try setting this reg key HKEY_LOCAL_MACHINE\System\StorageManager\Profiles\ MSFlash\FATFS\DataCacheSize=2048 instead of 4096 as above. For me it seems to work slightly better.
I also tried changing these two entries for PIE, unfortunately PIE runs so slow i cant tell if it has any positive effect
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings]
"MaxConnectionsPerServer"=dword:10(dec) - default 4
[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main]
"MaxRequestThreads"=dword:10(dec) - default 5
HKEY_LOCAL_MACHINE\Software\Apps\Microsoft Application Installer
Default: 0
Changed: 1
Fast graphic but consume memory
It can fasten and smoothen your OS graphic movement, but it will eat some of your program memory, not that much. You also can change it to 32768 instead of 16384 for greater result.
Code:
HKEY_LOCAL_MACHINE\System\GDI\GLYPHCACHE
Default: 8192
Changed: 16384
To hide screen rotate icon
There is a small PDA icon at your bottom right corner of your screen to change ur screen orientation from patriot to landscape and other way round.
Code:
HKEY_LOCAL_MACHINE\Service\ScreenRotate
ShowIcon value change to 0
Default: 1
Changed: 0
To turn off flashing LEDs and Vibration
It will turn off the blinking green/red/orange LED and the vibration mode. Some people will irritate by the blinking, especially when you're driving and sleep at night.
Code:
HKEY_LOCAL_MACHINE\Drivers\Builtin\AllLEDMgr
Default: 1
Changed: 0
Enable camera
frame rate display
Camera frame rate will appear on the screen when u're using the camera
Code:
HKEY_LOCAL_MACHINE\SOFTWARE\HTC\CAMERA\AppDefSettings\General
Default: 0
Changed: 1
To set ur ringstones to run from Storage Card
Place all your downloaded ringtones from internal memory to storage card. Usefull for our small/ciput Mini memory.
Code:
HKEY_CURRENT_USER\ControlPanel\SoundCategories\Ring\Directory registry key
Default value: "\Windows\Rings\"
Change it to: "\Storage Card\<your preferred directory>\" (Note that "\" at the end is extremely important!!!)
Place those ringtones into \Storage Card\<your preferred directory>\
Enable hidden editor function in Album
This opens the additional hidden function in the ALBUM, allows u to edit ur photo, brightness, contrast, crop, etc. Album (opens Editor menu):
Code:
HKEY_LOCAL_MACHINE/SOFTWARE/HTC/Album/Disable Editor
Disable value changed to: 0
SPB Pocket Plus Storage Card Display
If u notice, there is no indicator available to
display our storage memory capacity. This will add Storage Card display icon. PLEASE FOLLOW THE STEP CAREFULLY!!
1. Add icon/item Backup Battery Indicator
2. Regedit the key in
Code:
HKEY_LOCAL_MACHINE\SOFTWARE\Spb Software House\Pocket Plus\Today Items\Pannels\
3. Find key in directory 00000 or 00001 or 00002 or 00004; that have Name Action with value *backupbattery
4. Change the value to *storagecard
5. Soft reset
O2mini Camera Settings Configuration
Enhance you picture taken quality. It will remove your camera snow effect
Code:
HKEY_LOCAL_MACHINE/SOFTWARE/HTC/Camera/AppDefSettings/General
Set
Contrast: 5
Brightness: 6
Saturation: 3 or 4 (recommended by Doc)
Hue: 5
Sharpness: 3
Unlimited 3gp Recording for mms settings
This will allow you to take unlimited recording time
Code:
HKEY_LOCAL_MACHINE \ SOFTWARE\HTC\camera\AppDefSettings\P3
DWord Value called "EnableLimit", change it from 1 to 0.
To include both time and date in taskbar
You'll get time and short date on your
right top of the screen, rather just displaying time. Meaning, you can remove your date item on your today screen.
Code:
Phase 1:
1) Go to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shell\
2) Create a binary value named "TBOpt" and set its value to "13 00 00 00".
3) Soft-reset
Note: If u ever get bored of the date display, rid it by deleting the TBOpt key.
Phase 2: IF U NEED THE CHANGE THE DATE FORMAT:
i) Just go to Settings>Regional Settings>Date>Short Date
ii) Choose "dd-MMMM-yy" or whichever format u prefer.
iii) Click "ok".
Disabling “Message Sent” notification bubble
For those who hates the "Message Sent" notification after sending an SMS, this is the steps to remove the bubble notification...this is the STEP by STEP method to do it in case some of you guys dont get it right...
1. First, you will need to download a Registry Editor to help you do it...
2. using the Registry Editor, navigate to:
Code:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Inbox
3. Next, click on Inbox (make sure the Inbo
x is highlighted) and select Edit, New Key
4. Name the New Key as "Settings"
5. Click on "Settings" (make sure the Settings is highlighted) and select Edit, New String Value
6. On "Value name:", key in SMSNoSentMsg and in "Value data", key in 1
7. Soft reset your device and test it with one SMS, and you will notice that the SMS Sent bubble is being disabled.
Audio Tweak
Audio Tweak enhances the speaker performance of the O2 Mini (some devices have this set to a lesser priority and by using this you get better sound, if your device is already set to a high level you have no need for this)
Code:
HKEY_LOCAL_MACHINE\Drivers\BuiltIn\WaveDev\Priority256
Default: 110
Changed to: 80
Disable start menu animation
This tweaking will eliminate the list of menu "drop-down animation" if u tab on Start/Flag icon.
Code:
HKEY_LOCAL_MACHINE\SYSTEM\GWE\Menu\
AniType value change from 6 to 0.
Looping Ringtones Delay
Ring tone has a standard 3 seconds delay before repeating. You can set the delay from
0 second to how many second that you want.
Code:
HKEY_CURRENT_USER\ControlPanel\Sounds\RingTone0
Change 'Script' from 'av0pw3r' to 'av0pr' and you'll get 0 sec delay.
OR change it to
av0pw1r = wait for 1 sec
av0pw2r = wait for 2 sec
and so on...
Plus..heres the code
a - stands for display
r - repeat/replay the script again
c - sets the volume C50, c150, c100
f - means flash .. f1 flash for 1 second and f0 stands for flash continuously
p -means play ringtone
v- vibrate then incorporate with number to state how many seconds it will vibrate example. v3 vibrate for 3seconds or v0 for continous
w - stands for wait or pause then specify how many seconds like w3(wait for 3 seconds)
heres the example
Flash - af1w60f0
Ring - apw3r
Ring Once - ap
Increasing Ring - c50apw3c150r
Vibrate Then Ring - v3w3apw3r
Vibrate - av3w3r
Short Vibrate - av1w3r
Vibrate Long Then Ring - v3w3v3w3apw3r
Vibrate And Ring - av0pw3r
Increasing Ring And Vibrate - c50apv3w3c150r
Fast Vibrate And Flash - af1v1w1f
0r
Vibrate and Ring Continously without pausing - av0pr
SMS Notification On
This is different with message notification send, this will confirm you when message already recieve by receiver
Code:
[HKEY_CURRENT_USER\Software\Microsoft\Inbox\Settings]
SMSDeliveryNotify = dword:00000001 ->0 if off
How to:
Create new Dword value name SMSDeliveryNotify
with decimal value data 1
Wacth for capital letter
Changing the Message Sent Notification Message
Change the default "MessageSent". Example "Pesan sudah di kirim"
Code:
[c\SOFTWARE\Microsoft\Inbox\Svc\SMS]
Change the Value "MessageSent" to whatever you like.
Change the default input method
To change your input method, keyboard, letter recognizer, block recognizer as ur default, even you soft reset ur mini.
NOTE:
*for English ROM
*cannot set transcriber and Phatware Calligrapher with this trick.
Code:
HKEY_CURRENT_USER\ControlPanel\Sip
Change the "DefaultIm" value for:
To set keyboard as default SIP, change the "DefaultIm
to
{42429667-ae04-11d0-a4f8-00aa00a749b9}
To set Character Recognizer as default SIP, change the "DefaultIm to
{42429690-ae04-11d0-a4f8-00aa00a749b9}
To set Block Recognizer as default SIP, change the "DefaultIm to
{42429691-ae04-11d0-a4f8-00aa00a749b9}
*change only the bold number will do. The rest are totally the same.
To set WordLogic as default SIP, change the "DefaultIm to
{4345EA53-B8A5-4E24-A14A-F7C34DD78077}
*No WordLogic in Xda O2 mini.
To Get The AM/PM on The Top Bar
Code:
HKEY_LOCAL_MACHINE\nls\overrides
1. Creat new String value with Name = S1159 & Data = Am
2. Creat new String value with name = S2359 & data = Pm
3. Creat new String value with name = STFmt & data = h:mm tM
- capital letters and small letters must be followed exactly or it may cause hard resets!
- you will get capital "AM/PM" on the top bar eventhough the registry data value above was entered as "Am/Pm"
Change The Date on The Top Bar
Code:
HKEY_LOCAL_MACHINE\nls\overrides
Look for String value
SSDte (short date) and change the value data, some example of date formats i have used below:
- "7 May 05, Friday" by changing the String value SSDte data = d MMMM yy, dddd
- "07/05/2005, Fri" by changing String value SSDte data = dd/MM/yyyy, ddd
Clear Type on LandscapeDisplay
You'll get clear type font in landscape mode. made me dizzy though..not much functionality value..just some fun factor for us curious ones.
Code:
HKEY_LOCAL_MACHINE\System\GDI\ClearTypeSetting
1. Change value data of OffOnRotation from 1 to 0
2. Soft reset
Setting Cleartype Text in PIE
Code:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings
"ClearTypeText"<- Set 1 to Enable Cleartype in PIE, 0 to Disable
Setting ClearType Text in Pocket PC
Optionally, you can go to START>SETTINGS>SYSTEMS>SCREEN>CLEARTYPE
Code:
HKEY_LOCAL_MACHINE\System\GDI
Create a Subkey then Name it "CLEARTYPE"
Settings Screen Text Size
Optionally, you can go to START>SETTINGS>SYSTEMS>SCREEN>TEXT SIZE
Code:
HKEY_LOCAL_MACHINE\ControlPanel\Stylus\96DPI
"CurFont"= change to the ff value ..
dword:00000258 -> Smallest
dword:000002BC -> Smaller
dword:00000320 -> Normal/Default
dword:000003E8 -> Larger
dword:0000044C -> Largest
Cheers, M
I've searched the forums for a week and I've found things that are close but, this may be specific...
I have assigned my upper right button (the IE button) to do "Ok/Close" but, it never actually stops the program from running in memory. I've installed Magicbutton and that works for pressing the 'X'. I also installed "Smartkeys" and that works for pressing the 'X'. I trying not to use the touchscreen as much as possible. Does anyone know a way to do this have a button mapped where it actually stops the app from running in memory when pressed.
Thanks. :?:
smartskey does this, edit the .ini file :wink:
VJOkButt can also be used as a simple task closer.
smartskey is a great app though, much more versatility.
V
...'oxios closeapss' closes all programs, except the one currently in use, with only one button which you can easily assign to ie button...
fordcan said:
smartskey does this, edit the .ini file :wink:
Click to expand...
Click to collapse
Here is my .ini file. How do I do it? I've read it but, I'm not sure on all fo the commands.
Thanks.
; 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=1
; 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=0
;DDOWN=0
;DRIGHT=0
;DLEFT=0
; 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
By default SmartsKey will close all apps EXCEPT those listed at the bottom of the ini file:
[EXCEPTIONLIST]
APP00=Text Messages
APP01=Outlook E-mail
APP02=Hotmail
APP04=MMS
APP05=Contacts
APP06=Calendar
APP07=Camera
If you want to add an item to the list you would enter it using the syntax above (APP08='Window Name'" If you want, for example, the calendar to always close simply delete the calendar line (APP06=Calendar)
Exactly.. If u do not exlude in the list, all will be closed
I thought creating a thread that shows the various registry hacks might be helpful/useful/contructive/destructive.
I am still pretty new to all of this and would love to know what others have discovered to get 'more' from our PPCs.
Thanks in advance for the contributions!
I am using PHM Registry for my editor.
did you try searching? they are scattered all over this forum
Tregrad said:
did you try searching? they are scattered all over this forum
Click to expand...
Click to collapse
That is why I thought it might be nice to have one location for them.
Registry Hacks - List 1
You can download and install PHM Registry Editor on your phone to modify the registry.
http://www.phm.lu/Products/PocketPC/RegEdit/
Unlocking/Unhidding the extended_rom
\HKLM\System\StorageManager\Profiles\EXT_FLASHDRV \
then change the value (default at 1) to 0
Wait at least a minute before doing a soft reset.
----
Get rid of the voicemal icon on the '1' key (3.16+)
The 3.16 rom has added an voicemail icon to '1' key which also caused my skin to look messed up. You can disable it:
\HKEY_CURRENT_USER\ControlPanel\PhoneExtendFunctio n\CDMA\
set the DWORD value
"EnableVoicemailIcon" = "0"
by default it is set to 1.
---
Reserved - future use
Reserved - future use 2
Reserved - future use 3
i think this is a good idea as well... since ppcgeeks is down. just fyi, there are some listed on sprintmogul.net and a couple other sites.
Your really aught to just keep editing the FIRST post and as people find new reg hacks you can add them to teh first post.
Tregrad said:
Your really aught to just keep editing the FIRST post and as people find new reg hacks you can add them to teh first post.
Click to expand...
Click to collapse
Right -- that is what I basically plan on doing.
went over to geeks and got a PANT laod of them by doing a "search" in the Titan forum
You can download and install PHM Registry Editor on your phone to modify the registry.
http://www.phm.lu/Products/PocketPC/RegEdit/
1-Unlock Phone (certificate security disabled) rev.1
HKEY_LOCAL_MACHINE\Security\Policies\Policies\0000 1001 = 2
-> Change the value data from 2 to 1
HKEY_LOCAL_MACHINE\Security\Policies\Policies\0000 1005 = 16
-> Change the value data from 16 to 40
HKEY_LOCAL_MACHINE\Security\Policies\Policies\0000 1017 = 128
-> Change the value data from 128 to 144
HKEY_LOCAL_MACHINE \Security\Policies\Policies
-> Add new value "0000101b": Dword = 1
Close registry editor and soft reboot.
------------------------------------------------
2-Change Bluetooth headphones from mono (default) to stereo:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Bluetooth\A2 DP\Settings
UseJointStereo: change the DWORD from “1” TO “0” no quotes.
HKLM\Software\Microsoft\Bluetooth\A2DP\Settings\Bi tPool to 50
HKLM\Software\Microsoft\Bluetooth\A2DP\Settings\Ma xSupportedBitPool to 50,
------------------------------------------------
3-Today screen, Single line date
HKEY_LOCAL_MACHINE\SOFTWARE\MICROSOFT\TODAY
"Date"=dword:1
"AutoSingleLineDatePlugin"=dword:1
------------------------------------------------
4-Change Operator name
HKLM\System\State\Phone\Current Operator Name
------------------------------------------------
5-Disable the pop-up notification that says Message Sent rev.1
HKLM\SOFTWARE\Microsoft\Inbox
create a new key "Settings"
create a new string value "SMSNoSentMsg" and set the value to 1
Hit ok and select "Ok" to save and you are in business.
------------------------------------------------
6-Speed up
Using a registry editor such as PHM RegEdit lookup and change the following three values:
HKEY_LOCAL_MACHINE\System\StorageManager\FATFS\Cac heSize=0x1000(4096)
HKEY_LOCAL_MACHINE\System\StorageManager\FATFS\Ena bleCache=0x1(1)
HKEY_LOCAL_MACHINE\System\StorageManager\Filters\f sreplxfilt\ReplStoreCacheSize=0x1000(4096)
------------------------------------------------
7-Enable GPS icon in the Setting/System menu
HKLM\ControlPanel\GPS Settings
Change "Hide" to 0
------------------------------------------------
8-Enable Bluetooth and IrDA in Wmodem
HKEY_LOCAL_MACHINE\SOFTWARE\OEM\WModem
"Hide IrDA"=dword:00000000
"Hide Bluetooth"=dword:00000000
"Hide USB"=dword:00000000
-------------------------------------------------
9-Registry Hack Improvement of using bluetooth listen music
HKEY_LOCAL_MACHINE\Drivers\BuiltIn\BtA2dpSnd
Add "Priority256 "= dword:60 (Use Dword Value)
HKLM/SOFTWARE/Microsoft/Bluetooth/AudioGateway/Capability
(Dword:69)(Default is 37)
HKLM/SOFTWARE/Microsoft/Bluetooth/AD2P/Settings/BitPool
(Dword: 60)(Default is 30)
-------------------------------------------------
10-Unlocking/Locking Items into position on today screen
HKLM\Software\Microsoft\Today\Items\"Plugin you want to lock or Unlock"
change TYPE from 5 to 4
5=locked
4=unlock
-------------------------------------------------
11-Camera Flip Pictures Fix
HKEY_LOCAL_MACHINE\Software\HTC\Camera\Image
Change "EnableEncodePortrait" to 0
When you take a picture it is saved in the wrong configuration and you then have to rotate
it with a picture editor so its not sideways and save it again. This is the fix for it.
-------------------------------------------------
12-Disable Multi-NAI
HKEY_LOCAL_MACHINE\SOFTWARE\OEM\WModem\Multi-NAI default is 1, set to 0(00000000)
-------------------------------------------------
13-Put Date in Title Bar
[HKEY_LOCAL_MACHINE\Software\Microsoft\Shell]
"ShowTitleBarClock"=dword:00000001
"TBOpt"=dword:00000003
[HKEY_LOCAL_MACHINE\nls\overrides]
"SSDte"="M/d/yy "
***** 2 spaces needed aafter the yy ****
fyi no quotes on the sting values if using a reg edit.
--------------------------------------------------
14-battery, screen rotate, and CommManager icons down in your tray
see cab in this post
http://ppcgeeks.com/reg-tweaks-06-19...,60.html#57690
--------------------------------------------------
15-Change Vibrate Strength
HKLM\SOFTWARE\OEM\VIB
STRENGTH_LOW set to 1.
--------------------------------------------------
16-Disable Ambient Light Sensor
KEY_CURRENT_USER\CONTROL PANEL\BACKLIGHT set auto sensor from 1 to 0
--------------------------------------------------
17-how to get rid of some of thoes annoying sounds while on calls or making calls (or attempting), such as adjusting the volume,
go to HKEY_CURRENT_USER\ControlPanel\Sounds
Loudestincallvolume = the sound it makes when you turn the volume all the way up (that annoying little useless sound) delete this key to remove that
Quietestincallvolume = the same but for when you turn it all the way down
Networkdrop = the dropped call /w lost signal sound
Calldrop = caller hangs up before you do sound
---------------------------------------------------
18-Change ringtone/vibrate/LED flash characteristics
If you would like more control over how your device rings/vibrates/flashes its LEDs on events, you can can change the Script values of these events. For example, for an incoming call performing 'activate device, play ringtone, wait 3 seconds, repeat':
HKCU\ControlPanel\Sounds\RingTone0\Script = "apw3r" (REG_SZ string, no quotes)
For performing 'active device, set volume to 33%, play ringtone, set volume to 67%, play ringtone, set volume to 100%, play ringtone (no repeat)':
HKCU\ControlPanel\Sounds\RingTone0\Script = "ac33pc67pc100p" (REG_SZ string, no quotes)
The following are the full codes available to you. Please note that all the codes are executed simultaneously except after a ringtone play / wait code. E.g. 'v1p' will vibrate and play at the same time, while vibrating for 1 second. But 'pv1' will play the ringtone through all the way first, then start vibrating for 1 second.
a = activate device
cN = set volume to N in percentage max volume
fN = flash notification LED for N seconds
p = play ringtone. Note that this will play the ringtone all the way through before continuing with the next code.
r = repeat. Note that this should be the last code in your Script string, if used at all.
vN = vibrate for N seconds
wN = wait for N seconds. Note that the device will wait this long before continuing with the next code.
NOTE: I tried this on my 6800 and changed the v0 to v1 and now it doesn't have just one long vibrate. v0 sets it to vibrate always.
-----------------------------------------------------
19-FIX THE SLOW RINGER
To do this, you will need your MSL, which only Sprint (or your provider) can provide you. Open up the phone app and dial ##778# (PST). You will be asked to enter your MSL. Enter it, and you will be brought into the provisioning of your phone. From the top left, select Modem Settings. On this page, your Slot Cycle Index (SCI) is how often your phone polls the tower for incoming calls, etc. This value is 1.28 seconds multiplied by 2^value (i.e 0=1.28 secs, 1=2.56secs) with 0 fastest, 7 slowest. The default is 2, but lowering it to 1 hasn't noticeably affected my battery life, and roughly 2.5 second (SCI 1) response time is far more reasonable than roughly 5 seconds (SCI 2)
-----------------------------------------------------
20-Change scroll bar size
Navigate to HKey_LOCAL_MACHINE\SYSTEM\GWE\ and tweak the following values.
cyHScr : Horizontal Scrollbars Height in pixels (default is 13)
cxVScr : Vertical Scrollbars Width in pixels (default is 13)
-----------------------------------------------------
21-Save Attachments or the Whole Email on your SD Card
The Key in WM6 changed from WM5. In WM6 it is:
HKLM\System\Inbox\Settings
For Attachments add "AttachPath" value="\Storage Card\Inbox\Attachments" datatype="string"
For the rest of the email add "PropertyPath" value="\Storage Card\Inbox" datatype="string"
For the paths above to work, you need to have the Inbox folder and Attachments subfolder created already. You must reboot for them to take effect.
-------------------------------------------------------
22-add the AM/PM to your time in the title bar
To Add AM or PM
1) Open your 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
There has to be a space after the am or pm otherwise it will not display
Also
am=aM pm=pM
Am=AM Pm=PM
--------------------------------------------------------
23-Changing SoftKeys
Create the following keys and Strings in the registry:
HKEY_CURRENT_USER\Software\Microsoft\Today\Keys\11 2
HKEY_CURRENT_USER\Software\Microsoft\Today\Keys\11 3
112 is the left key and 113 is the right.
Set Default to what you want the key to read (ie. SMS)
Now for each key create a new string named Open and set the target path.
--------------------------------------------------------
24-This edit allows you to see the duration of your Vision connection along with a button to disconnect it.
You see it in the bubble that is displayed when you tap the Vision icon.
Click HKEY_LOCAL_MACHINE
Click ControlPanel
Click Phone
[at this point, the buttom grey status bar should read \HKLM\ControlPanel\Phone'
Click the bottom menu 'edit'
Select new dword value
Change the value name to "Flags2" (no quotes).
Select the 'hexidecimal' button.
Type 10
Click ok.
You should now see in the 'name/data' section:
Flags2 16 (0x00010)
When done, reset the device.
Tregrad said:
went over to geeks and got a PANT laod of them by doing a "search" in the Titan forum
You can download and install PHM Registry Editor on your phone to modify the registry.
http://www.phm.lu/Products/PocketPC/RegEdit/
Click to expand...
Click to collapse
Great hacks. Thanks for your contribution.
big list of em over here.
http://www.htcwiki.com/page/Tweaks+and+Hacks?t=anon
im usually not one to mess up my phone (ie im usually very cautious, dont play with what i shouldnt) but i wouldnt touch that ringtone modifying hack. i just tried it, hoping to set the ringtone more like it was on an old razr of mine (4vibes and a break) and it really messed up the phone application. like it wouldnt open. even after multiple restarts, everything. after i called my phone from another one, the phone app opened, thankfully, and then it started working but gave me quite a scare before that
EDIT- nope, that didnt fix it either. even after calling from another phone, once my 6800 is restarted, the phone app wont work again. god this will be the 4th hard reset this week. lame.
Duration of the rington
Has anyone an idea if it is possible to say the phone how long the ringtone should play till the phone hangs up and went into mailbox.
I mean is it possilbe to set the duration to eg. 30 sec or more till it hangs up.
I know there is a hack to stop ActiveSync from starting automatically but I can't find it. Searched here and PDAphonehome. Anyone have it?
Hey guys, I'm an active user on the Wing forums. I was wondering if there is such a reg edit to save SMS to the SD card instead of on the phone? Thanks for any details!
nuron said:
Hey guys, I'm an active user on the Wing forums. I was wondering if there is such a reg edit to save SMS to the SD card instead of on the phone? Thanks for any details!
Click to expand...
Click to collapse
Along those same lines -- I would like to move 'my docs' to my sd card.
HEY!!!!!!!! I GOT 6.1! but cant get to my IOTA!!!! HELP PLEASE!!!!!!!!!!!!!
djhollygrove said:
HEY!!!!!!!! I GOT 6.1! but cant get to my IOTA!!!! HELP PLEASE!!!!!!!!!!!!!
Click to expand...
Click to collapse
have you unlocked your extended ROM? Do that and rub the IOTA cab.
Saw the post before, couldnt relocate it.
How do I make it so when using WMP or HTC Audio Manager, when I press the power button the audio keep playing?
Here's what I'm trying to do.
I have the Jabra BT8010 (which I love btw) and I would like to use my phone at the gym to listen to music. The blue blinking Bluetooth indicator remains flashing when I press the power button to shut off the screen, so I know my headset is still joined, but the music stops playing. When I press the power button to turn the screen back on, the music resumes.
-Randy
dont press the off button
asign a button to toggle screen it will turn off the screen
it's the only thing which can be turned off while the pda
is still on enough to play music
I'm using dcd rom 2.1.0 and audio manager 1.02 build 614.712
My audio continues to play after pressing the power button.
rtownsend said:
I'm using dcd rom 2.1.0 and audio manager 1.02 build 614.712
My audio continues to play after pressing the power button.
Click to expand...
Click to collapse
Can you do me a favor? Use whatever registry editor you like, navigate to [HKLM\System\CurrentControlSet\Control\Power\State\ScreenOff]
There are 4 values in there:
blk1:
Default
Flags
upt1:
Can you tell me what the value is set to for each of the 4 items?
TIA! -Randy
Try putting the audio manager to REPEAT. This works for me...with repeat off the music stops when I power down the screen, but with repeat on the music continues right on through.
Here you go
default = 0
bkl1 = 4
flags = 1048576
upt1 = 1
rtownsend said:
Here you go
default = 0
bkl1 = 4
flags = 1048576
upt1 = 1
Click to expand...
Click to collapse
Okay... next step in the sequence lol.
How about the values in [HKLM\System\CurrentControlSet\Control\Power\State\Unattended]
blk:
Default
Flags
upt:
wav1:
That should be the last thing I need, I promise
default = 0
bkl1 = 4
flags = 4194304
gpd0 = 4
upt1 = 1
wav1 = 4
rtownsend said:
default = 0
bkl1 = 4
flags = 4194304
gpd0 = 4
upt1 = 1
wav1 = 4
Click to expand...
Click to collapse
whelp... mine doesn't have the gpd0 value, and my wav1 is set to 0 like colonel said to do. Sometimes it works, sometimes it doesn't. there doesn't seem to be a pattern to it. it has a mind of it's own. I've decided that I'm just gonna wait for the new ROM to be released by Verizon before I worry about problems that would effect my everyday usage of the phone. Thanks for the help though.
HTC Audio Manager has always worked for me with power button off, and here is the fix for WMP as found on ppcgeeks
[HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Power\State\Unattended]
"WAV1:"=dword:00000000
Okay, I need a ppc genius to explain this one to me! This is very weird. I've been doing some troubleshooting here...
If I do a soft reset, music will NOT play after pressing the power button, even with the above mentioned reg fix.
However, if I connect and disconnect the phone from my computer and Activesync starts, and is closed (completely closed on the phone through QMenu) music WILL play after pressing the power button.
It also plays if I manually open ActiveSync on the phone, and then close it. It does NOT work while ActiveSync is running for the first time after a soft reset, but if I open ActiveSync any number of times after it's been opened and closed once, music DOES play after pressing the power button.
Weird... This is killing me, I need an explanation!!!
(PS - I hope this thread is getting considerable attention and views. I cannot be the only one with this problem lol)
Not a problem for me
I am on the 3.16 leak but even with 2.17 I was able to play music with screen off. With or without S2U2 using the power settings. The screen sleeps the music goes on. I can turn it on again change songs and then hit the power button and the screen goes back to sleep music still playing.
This seems to be the general consensus, but not in my case, and I'm sure a few others.
Like I said, after a soft reset I can only get it to work properly with what I described about ActiveSync. Weird, can't figure it out...
I was having this exact same issue. I changed the wav1 value to 0 it worked right away. Didn't even need to soft reset.
shawn_ said:
I was having this exact same issue. I changed the wav1 value to 0 it worked right away. Didn't even need to soft reset.
Click to expand...
Click to collapse
Yep. That was it. Thanks!
Okay guys after hours and hours of searching and messing with my registry I found a SOLUTION for HTC Audio Manager to stay on after pressing the power button to turn off the screen/suspend........
It is sooooo simple I'm just shaking my head, no more using psshutxp or other screen toggles.
It keeps playing...yayyyyy
First open Reg editor and go to HKLM\Software\HTC\AudioManager\Config
Now create a new "DWord value" name it DisableSuspend and give it a value of 1
(You can also change the value of "enter suspend" to 0 but with my new key it should change it on reboot anyways)
This was done on a Sprint Touch
Double post
i changed the wav1 to 0 on my mogul and it worked fine, then i soft reset and its not working anymore. The value is still 0 as thats what regedit shows
primenall said:
Okay guys after hours and hours of searching and messing with my registry I found a SOLUTION for HTC Audio Manager to stay on after pressing the power button to turn off the screen/suspend........
It is sooooo simple I'm just shaking my head, no more using psshutxp or other screen toggles.
It keeps playing...yayyyyy
First open Reg editor and go to HKLM\Software\HTC\AudioManager\Config
Now create a new "DWord value" name it DisableSuspend and give it a value of 1
(You can also change the value of "enter suspend" to 0 but with my new key it should change it on reboot anyways)
This was done on a Sprint Touch
Click to expand...
Click to collapse
Don't working at HTC Polaris.
im just using slide 2 unlock and slide 2 play... LOVE EM...
play music and can shutoff without modifying registry...