Screen off aplication - Touch Diamond, MDA Compact IV Themes and Apps

Is there an application to shut down the screen? I mean a program (cab) or an exe file that just turns off the screen instead of using the Power key?
It could be cool to re-map one of the soft keys (using Advanced config) and create a soft key that shuts down the screen instead of having to go touch the unconfortable Power key.
Thank you.

you may want to take a look at POCKETSHIELD

umm...so i have some what of a similar request.
is it possible to use the windows default lock without enabling the password. that is when the screen turns off it auto locks (similar to S2U, however using the windows 6.5 lock screen)?

dont think the default windows lock autolocks..

hgrimberg said:
Is there an application to shut down the screen? I mean a program (cab) or an exe file that just turns off the screen instead of using the Power key?
It could be cool to re-map one of the soft keys (using Advanced config) and create a soft key that shuts down the screen instead of having to go touch the unconfortable Power key.
Thank you.
Click to expand...
Click to collapse
You can map out a motion to shut of screen with .....this APP (G-Trigger)

If you want to lock it using the WM feature, use the Advanced Config program and set it up so that it auto locks the screen after a few seconds of not using it.
Pocketshield is not what I was looking for. I am looking for a small application that only turns off the screen. (instead of using and stressing the power key)
Is there an .exe file in Windows that makes the screen turn off?

hgrimberg said:
If you want to lock it using the WM feature, use the Advanced Config program and set it up so that it auto locks the screen after a few seconds of not using it.
Pocketshield is not what I was looking for. I am looking for a small application that only turns off the screen. (instead of using and stressing the power key)
Is there an .exe file in Windows that makes the screen turn off?
Click to expand...
Click to collapse
I don't think windows contains one of those.
It's not hard to write, so I can whip up a little exe for you.
Do you want it to have the same effect as the power button, or to just turn the screen off but leave everything running as though the screen were on?

Something that may be off use:
http://vijay555.com/?Releases:VJDeviceLock

l3v5y said:
I don't think windows contains one of those.
It's not hard to write, so I can whip up a little exe for you.
Do you want it to have the same effect as the power button, or to just turn the screen off but leave everything running as though the screen were on?
Click to expand...
Click to collapse
Thank you! It could be nice to have a small exe file that just makes the screen goes off and keep everything else running.
My idea is to then re-map one of the soft keys and be able to turn off the screen by simply clicking on it instead of pressing the power key. It's simpler, faster (your fingers are near the screen, you dont have to move your hand and touch that weird power key on top), and you dont stress a key that could some day not work anymore because of heavy usage.
I tried with a program called Screen Toggle but it takes some seconds to turn the screen off. I think an exe file can be faster.
Thank you a lot!

hgrimberg said:
Thank you! It could be nice to have a small exe file that just makes the screen goes off and keep everything else running.
My idea is to then re-map one of the soft keys and be able to turn off the screen by simply clicking on it instead of pressing the power key. It's simpler, faster (your fingers are near the screen, you dont have to move your hand and touch that weird power key on top), and you dont stress a key that could some day not work anymore because of heavy usage.
I tried with a program called Screen Toggle but it takes some seconds to turn the screen off. I think an exe file can be faster.
Thank you a lot!
Click to expand...
Click to collapse
Three little exes for you.
Names should be fairly self explanatory.
QuickReset performs a soft reset.
QuickScreenOff turns off the screen, nothing else
QuickPowerOff should emulate the power button

Thank you so much l3v5y! You are a genious!
Do you know if the Power off saves more battery than the screen off?
I am trying your programs now on my phone.

hgrimberg said:
Thank you so much l3v5y! You are a genious!
Do you know if the Power off saves more battery than the screen off?
I am trying your programs now on my phone.
Click to expand...
Click to collapse
Power off will save more battery as it'll stop things running.
Screen off will leave everything running, so if you press a button the device will react, but the screen will be off.

l3v5y said:
Three little exes for you.
Names should be fairly self explanatory.
QuickReset performs a soft reset.
QuickScreenOff turns off the screen, nothing else
QuickPowerOff should emulate the power button
Click to expand...
Click to collapse
Screen off is working great and it is super fast!
Thank you again!

hgrimberg said:
Screen off is working great and it is super fast!
Thank you again!
Click to expand...
Click to collapse
It's fast because the code is:
Code:
// QuickScreenOff.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <pm.h>
int _tmain(int argc, _TCHAR* argv[])
{
SetSystemPowerState(NULL, POWER_STATE_SUSPEND, POWER_FORCE);
return 0;
}
If it were slow, I'd be very worried!
Glad it's working for you

pls. delete. posted on wrong thread.

I find lockandoff to work well as it locks and turns off your screen. Just map soft key to the program and your set.

VJEschaton and mortscript can do the screen off/on thing and registry for the lock.
l3v5y said:
Power off will save more battery as it'll stop things running.
Screen off will leave everything running, so if you press a button the device will react, but the screen will be off.
Click to expand...
Click to collapse
It's a bit more grey than that, just add a small 'run on wake' prog to the notification queue such as a mortscript vibrate script or something that writes to a log file, you'll hear/see a lot happening when the power is off. Anything in the notification queue will wake it up but leave screen off and buttons locked. The backlight is the biggest drain on power.

bbobeckyj said:
VJEschaton and mortscript can do the screen off/on thing and registry for the lock.
It's a bit more grey than that, just add a small 'run on wake' prog to the notification queue such as a mortscript vibrate script or something that writes to a log file, you'll hear/see a lot happening when the power is off. Anything in the notification queue will wake it up but leave screen off and buttons locked. The backlight is the biggest drain on power.
Click to expand...
Click to collapse
Most processes are stopped when the power button is hit.
Some service, some processes and the notification system and RIL etc are left running, but most applications are stopped.
Powering off will save more power (some devices do underclock when the power is off...), just it won't be that much more than saved by just turning the screen off.

Selective key lock
payner96 said:
I find lockandoff to work well as it locks and turns off your screen. Just map soft key to the program and your set.
Click to expand...
Click to collapse
This is an awesome application! And it is fast as well. Thank you.
I wonder if there is some tweak or program that does a selective key lock... Under "settings" there is just the option of locking all keys but I wonder if it could be possible to lock all keys except the round center enter key for example. (this way you can turn on the phone by just clicking this more accessible key on the Diamond)

payner96 said:
I find lockandoff to work well as it locks and turns off your screen. Just map soft key to the program and your set.
Click to expand...
Click to collapse
Great little app!! It's been tested and works with WM 6.5.....

Related

Jas-Jar Light Button

Any ideas on how to get the light button working on a jas-jar. Mine has not been working since the start and I've tried everything. The button Im talking about is the first from the right close to the infrared port on the outside of the device. It is supposed to turn on the flashlight but when I press it nothing happens and it doesnt even show up in the buttons applet in WM5.
Actually that button doesn't turn on the flashlight, though some here have tried to come up with a hack so that it would. I don't know if they were ever successful with that.
That button turns on the screen backlight when it has timed out but your device is still turned on. It's not the most useful button, which is why folks were trying to come up with a hack to make it more useful, for instance to turn on the flashlight like you wanted to.
Maybe if someone has had success, they will chime in here.
Change the button
Attached is a cab file allowing you to make use out of the light button to anything else :lol:
When yuo say anything else, does that include controlling the flashlight? Either way, thanks for the file.
Would be nice if one could assign it to turn on the keyboard backlight.
There is no option to adjust the sensitivite of the light sensor for the keyboard, and i think that it kicks in way to late.
Find my self holding the finger over the sensor and hitting a button to make it light up.
Any one aware og a possible Reg Hack to make this option appear in the Assing Button list?
Melty said:
When yuo say anything else, does that include controlling the flashlight? Either way, thanks for the file.
Click to expand...
Click to collapse
I meant anything else with use, flushlight & the keyboard light do not have exe files in the buttons map menu :wink:
taiseer999 said:
& the keyboard light do not have exe files in the buttons map menu :wink:
Click to expand...
Click to collapse
Nope i know that :wink: thats why i'm asking if anybody knows of a hack or the whereabouts of such an exe file..... Any ideas??
why dont u just change the option in the settings\buttons\backlight and take the tick off the box, and it works like a charm. everytime u press a key it lights up, sorted, and it doesnt affect the battery at all really
@Elmo
Well i didn't use that choise because i don't have any car charger yet. (Waiting for the Brodit kit)
I want to preserve as much battery as possible.........as you already know, this baby can eat your battery pretty fast............
Re: Change the button
taiseer999 said:
Attached is a cab file allowing you to make use out of the light button to anything else :lol:
Click to expand...
Click to collapse
Is this the same as changing it manually on the registry?
Yes, it's my CAB file I posted a little while back that adds a registry entry so that you see it listed as "Button 5" in the Buttons setting applet.
elmo said:
why dont u just change the option in the settings\buttons\backlight and take the tick off the box, and it works like a charm. everytime u press a key it lights up, sorted, and it doesnt affect the battery at all really
Click to expand...
Click to collapse
God, didn't know it was that easy... cheers!
Anyone any idea how badly this affects battery life?
Re: Change the button
taiseer999 said:
Attached is a cab file allowing you to make use out of the light button to anything else :lol:
Click to expand...
Click to collapse
Isn'it available for the Wizard too ? ...
I wrote a very simple script that turn on the camera and press the flash button.
I use the flash key and ms voice command to start it
you need to have MortScript installed. (include with this package)
A very simple question from a new owner -- where are the buttons defined that are assigned in Settings - Buttons? I don't see them labeled as "Button 1", etc in the User Manual.
davidinnz said:
A very simple question from a new owner -- where are the buttons defined that are assigned in Settings - Buttons? I don't see them labeled as "Button 1", etc in the User Manual.
Click to expand...
Click to collapse
On your HTC Universal, go to:
Start>Settings>Buttons
From there you can change the assignments of the buttons.
Ok. I have found the 2 keyboard keys that are buttons 1 and 2, and the 2 external buttons that are buttons 3 and 4.
I must say that button 1 is not very useful for voice command, when the device is closed. I guess I could assign it to button 4 or button 5 with the registry hack.
On the supplied "headset", there is a microphone with a button on it.
- What does that button do?
- Is it possible to use it for Voice Command?
(I guess for that to happen, it first needs to be recognised as an assignable button in WM5).
The backlight button cab file is working. Now I can reassign that useless button becomes the OK button. Very useful when use it in the tablet mode. But I need two more buttons to use for the softkey. I have use the record button for the left softkey and have no more button for the right softkey. Any suggestion?
One more thing, the script for enabling the flash light does not work. It turns on the camera, but the flash light remains off.

REQUEST: For a power manager.

Hey all you guys at XDA Developers! There's an awful lot of you that have created some awsome apps! I have usued alots of them, and really enjoyed them. I was hoping that someone would want to take on this project. I'm hoping someone could create an app to have a dual purpose button to take the place of the start button icon in to top left corner. I'd like to be able to push the button once to put the device into sleep mode. The second would be to hold the button down for a second or so for soft reset. I thought on the soft reset a small screen could pop up saying "Do you want to soft reset yes or no?" Also, the button could have a couple of color choices to go with peoples themes. Like "sunny127" made the ariel battery to replace that symbol and not the complete start menu. It would also be nice if both options were on all screens. So if your listening to radio or playing music, you could turn the screen off or if the screen freezes on you, you can soft reset. This is somewhat similar to http://www.freewarepocketpc.net/ppc-download-pocket-device-power-manager-v1-0.html this app. But it does not always go with everyones themes. And really not quite in the right place. Thanks for looking. I hope some one might be up for the task. Thanks for all that you guys have done. T M Z.
No one Maybe
I will pay? Some one to make this app. for me please...
bump...bump...
Not a bad idea, personally what I'd like to see the most would be the restart functionality added to the power button.
Now if you're talking about a button on the screen which can put the system to sleep or implement a restart well, I'm not interested. I've got enough taking up my screen real estate. I do believe I've seen a small app for the sleep side of it though... might google it.
Thanks for the input.
No one at all.
I believe wisbar advance 3 by lakeridgesoftware.com does this. I have my clock mapped to soft reset, ect.
klomp10 said:
I believe wisbar advance 3 by lakeridgesoftware.com does this. I have my clock mapped to soft reset, ect.
Click to expand...
Click to collapse
Thanks so much .Ill take a look. T M Z
You can use the new FTouchFlo, it enables "corner" buttons. When tapped you can launch a program or do a system command, such as rotate screen, turn off, or whatever you want.
TheChampJT said:
You can use the new FTouchFlo, it enables "corner" buttons. When tapped you can launch a program or do a system command, such as rotate screen, turn off, or whatever you want.
Click to expand...
Click to collapse
Do you have a link?
It's now called FTouchSL, it's not free, but it's totally worth it. You can also open apps (or do a command) with a simple swipe. Not to mention you can add smooth finger scrolling to any app with the flick-and-scroll feat.
Thanks. Ill take a look.
get the softreset executable from the PHM tools package (search), place it win \windows and assign it to the PTT key as hold. I prefer to use this for a sleep function, such as when listening to mediaplayer.
tmknight said:
get the softreset executable from the PHM tools package (search), place it win \windows and assign it to the PTT key as hold. I prefer to use this for a sleep function, such as when listening to mediaplayer.
Click to expand...
Click to collapse
I what to use the touch screen.Not a hard button?
Take the place of the start button icon in to top left corner. I'd like to be able to push the button once to put the device into sleep mode. The second would be to hold the button down for a second or so for soft reset.

Shortcut to completely turn off Wizard

I figured out a way to turn off the device without holding down the power on/off button on top. Tapping on the shortcut wil cause the same warning message to pop up asking if you want to turn off the device... say "YES", and the device will turn off. Not just the display, but the whole device. No lights anywhere!
hotdog53 said:
I figured out a way to turn off the device without holding down the power on/off button on top. Tapping on the shortcut wil cause the same warning message to pop up asking if you want to turn off the device... say "YES", and the device will turn off. Not just the display, but the whole device. No lights anywhere!
Click to expand...
Click to collapse
Screen shots.
WHAT DID U FIGURE OUT ? Shortcut ?
Post it here
You could use any one of a half dozen programs to create a button that sits on your Today screen. Or if you use Wisbar, you could put a custom button in the taskbar to do this.
\Windows\PowerOffWarning.exe
Myrddin Wyllt said:
You could use any one of a half dozen programs to create a button that sits on your Today screen. Or if you use Wisbar, you could put a custom button in the taskbar to do this.
\Windows\PowerOffWarning.exe
Click to expand...
Click to collapse
I've tried these programs in the past, and none of them turned the device OFF! still had a blinking light. Why waste precious memory on unnecessary programs????
sivankls said:
WHAT DID U FIGURE OUT ? Shortcut ?
Post it here
Click to expand...
Click to collapse
Read my thread again this forum. Turn off deviice without holding down the power button.

Suspend the HD

Hi All,
Is there any small application, which can simulate I press the power button?
Because the power button is hard to press, I wish to add a shortcut to this application, and tap the screen instead.
I found some which is to turn off the screen only, but I want to put the machine in suspend mode just like press the power button.
Thanks.
stm2008 said:
Because the power button is hard to press, I wish to add a shortcut to this application, and tap the screen instead.
Click to expand...
Click to collapse
Thats not true, you are pressing the button in the wrong way .
Read this.
If you really want a application that can suspend your device look for psShutXp or iLauncher. I think there are really many applications able to do that.
sure there are tons of applications for pocketpc which when started turn off the pda
http://www.google.dk/search?source=...off+program&btnG=Google-søgning&meta=lr=&aq=f
used a few of them myself works just fine
Haa......I also read this post before, I knew how to press the power button correctly......
To be more precise, I don't want to press the power button frequently in order to protect it from damage.
johnpatcher said:
Thats not true, you are pressing the button in the wrong way .
Read this.
If you really want a application that can suspend your device look for psShutXp or iLauncher. I think there are really many applications able to do that.
Click to expand...
Click to collapse
use this, rename ,zip to .exe then change right softkey to this exe, very handy
marcelvanblankers said:
use this, rename ,zip to .exe then change right softkey to this exe, very handy
Click to expand...
Click to collapse
Hi,
How do you change the soft key to this exe.
And can this exe be used to wake up the device by tapping on the screen.
Thanks
You can modify it by changing registry
\HKLM\Software\HTM\Manila\HomeLSK* and HomeRSK* values.
I think a hardware trigger is needed if you want to wake up the device.
To wake up by tapping on the screen, the device cannot be in suspend mode then, just the screen is off.
AGPPC said:
Hi,
How do you change the soft key to this exe.
And can this exe be used to wake up the device by tapping on the screen.
Thanks
Click to expand...
Click to collapse
Thanks, using it now. It works great.......
marcelvanblankers said:
use this, rename ,zip to .exe then change right softkey to this exe, very handy
Click to expand...
Click to collapse
stm2008 said:
Thanks, using it now. It works great.......
Click to expand...
Click to collapse
you're welcome

[APP]psShutXP Diamond - Replaces Long-Press Power Key

First I would like to state that none of the graphics in this cab file are my work. I don't know who made them but it wasn't me. Also, I am not the developer of psShutXP.
What I did was fix psShutXP so that it replaces the Long-Press Power Key. Instead of having a lame, white "Do you want to shut down" window that pops up when you hold the power button, you will have a nicely skinned psShutXP window that gives you the options to turn off the display, power off the device, reboot the device, hard reset the device, and even gives you the options to set reboot schedules.
Note that ALL functions are working in this cab that I put together including Shut Down.
Screenshot:
is the application running in the background or is it triggered upon long press of the end key?
Giannis86 said:
is the application running in the background or is it triggered upon long press of the end key?
Click to expand...
Click to collapse
It's triggered when you hold the power key for about 3 seconds. It does not run in the background and is not set to the end key.
i meant the power button my bad
installing right now
dharvey4651 said:
First I would like to state that none of the graphics in this cab file are my work. I don't know who made them but it wasn't me. Also, I am not the developer of psShutXP.
What I did was fix psShutXP so that it replaces the Long-Press Power Key. Instead of having a lame, white "Do you want to shut down" window that pops up when you hold the power button, you will have a nicely skinned psShutXP window that gives you the options to turn off the display, power off the device, reboot the device, hard reset the device, and even gives you the options to set reboot schedules.
Note that ALL functions are working in this cab that I put together including Shut Down.
Screenshot:
Click to expand...
Click to collapse
If you guys overwrite PowerOffWarning.exe, you'll no longer can turn your phone off completely (Exp when you wanna turn device off at night )
dharvey4651 works nice.
Thanx
Nice app. man , thanks!
I want to know, I always see apps that schedule reboots for the diamond, why is it so hard to schedule a simple shutdown? Or isn't it so simple? I mean, ok with the reboot but who needs it anyway? I don't....but I realy need the power off, isn't there something that can be done?
i tried uninstalling the application but it doesnt revert to the original..how can this be solved?
Cloudyfa said:
If you guys overwrite PowerOffWarning.exe, you'll no longer can turn your phone off completely (Exp when you wanna turn device off at night )
Click to expand...
Click to collapse
this does not break the power off function. try it you wont be disappointed.
Giannis86 said:
i tried uninstalling the application but it doesnt revert to the original..how can this be solved?
Click to expand...
Click to collapse
soft reset and it should revert back to normal.
Adv Config
Adv config allows you to map the long press power button to whatever you want. I just used that to do exactly this and a few other indispensable tweaks.
uniqueboy said:
Adv config allows you to map the long press power button to whatever you want. I just used that to do exactly this and a few other indispensable tweaks.
Click to expand...
Click to collapse
Can u please share where one would do this tweak in Advan. Config. 3.3? I will continue looking.
Harvey, you're quite the h4x0r!
I've been following your work in the XBmod Manila HD thread and have been hoping for a working version of this program for a long time!
Quick question, does clicking the gear in the top right allow for a hard reset using the clear storage method? (or does it open the clear storage settings menu?)
This hard reset option really messed things up on the old version of this software, to the point where I needed to flash a new rom.
FYI, I'm using a CDMA Telus diamond in Canada, eh.
I can confirm that soft reset, shut down, and screen off all work on a CDMA diamond, 20764 sys (from the leaked new sprint rom). The scheduling function also works great. I still wasn't brave enough to try the hard reset function though.
thanx for tweaking this app, it has now saved me a space in my start menu.
dharvey- thanks.
does anyone know where the setting is for the amount of time we need to hold the power key down before the psshutxp opens? i'd like to make mine come up faster.
uniqueboy said:
Adv config allows you to map the long press power button to whatever you want. I just used that to do exactly this and a few other indispensable tweaks.
Click to expand...
Click to collapse
Good idea (i prefer the end key long press for this) but for an inexplicable reason it's not working on my Diamond and Advanced Config 3.3. It seems to take the setting but when i press the end key it "choose" the action which is defined by Start - Settings - End key Long Press.
arasarn said:
Harvey, you're quite the h4x0r!
I've been following your work in the XBmod Manila HD thread and have been hoping for a working version of this program for a long time!
Quick question, does clicking the gear in the top right allow for a hard reset using the clear storage method? (or does it open the clear storage settings menu?)
This hard reset option really messed things up on the old version of this software, to the point where I needed to flash a new rom.
FYI, I'm using a CDMA Telus diamond in Canada, eh.
I can confirm that soft reset, shut down, and screen off all work on a CDMA diamond, 20764 sys (from the leaked new sprint rom). The scheduling function also works great. I still wasn't brave enough to try the hard reset function though.
Click to expand...
Click to collapse
Not sure if the hard reset function works or not. I too am too chicken to try it.
ajm144k said:
dharvey- thanks.
does anyone know where the setting is for the amount of time we need to hold the power key down before the psshutxp opens? i'd like to make mine come up faster.
Click to expand...
Click to collapse
Your welcome. I don't know if there is a setting to change that. It's the standard long-press-power-key function with a nicer, more functional interface.
dharvey4651 said:
this does not break the power off function. try it you wont be disappointed.
Click to expand...
Click to collapse
It does PsShutXP has 3 functions:
- Display Off : Turn off your screen backlight (keep programs running)
- Power Off : The same when you press your Power button (differrent from when you do long-press Power button and chose YES)
- Soft Reset : Reset the device
About hard reset: don't worry, it just does a soft reset!
Simple Example: When you wanna change your SIM, usually you turn your device off completely, then remove battery, change the SIM. Now, you can't turn it off completely.
Btw, this is a good soft, but i don't think replace the PowerOfWarning.exe is a good choice!
If you guys don't care about the true "Power Off", forget my post and enjoy
i uninstalled it and soft reset however its still worki
ng.the only difference is that it does not appear in the uninstall list..
i love its looks but i somewhat disliked some behavior at the moment..
i found that after running it once it and after clickin on cancel it will run in the background (not such an issue as you are more likely to reset than power off the screen )
the problem in my case was that it somehow crashed this one time and a long press on the power button would not trigger it anymore..so i had to remove the battery to reboot.. it does work now again but i dont know what caused it..
wow.. thanks this is great stuff
however, anyway of making it into an actual APP, like the original psshutxp which is only triggered if u run the prog?
i dont really want it to be mapped to my power button...

Categories

Resources