View Single Post
  #9 (permalink)  
Old 09-27-2007, 03:08 PM
Darkness231's Avatar
Darkness231
mmmm Freebirds
Offline
Location: Cedar Park, TX
 
Join Date: Mar 2007
Posts: 1,218
Reputation: 2543
Darkness231 is a VIPDarkness231 is a VIPDarkness231 is a VIPDarkness231 is a VIPDarkness231 is a VIPDarkness231 is a VIPDarkness231 is a VIPDarkness231 is a VIPDarkness231 is a VIPDarkness231 is a VIPDarkness231 is a VIP
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Does anybody else's screen turn off when using Live Search, Google Maps keeps the screen on, but not Windows Live Search.
Here is a script that will disable turning off the backlight and turning off the device until the program (live search) is exited, and then returning the setting to what they were prev. to running the program.
**This is assuming that Live Search was installed on the device, and not storage card**

Live Search Stay Alive.mscr

BattSuspendTimeout = RegRead ("HKLM", "System\CurrentControlSet\Control\Power\Timeouts", "BattSuspendTimeout")
ACSuspendTimeout = RegRead ("HKLM", "System\CurrentControlSet\Control\Power\Timeouts", "ACSuspendTimeout")
BatteryTimeout = RegRead ("HKCU", "ControlPanel\Backlight", "BatteryTimeoutUnchecked")
ACTimeout = RegRead ("HKCU", "ControlPanel\Backlight", "ACTimeoutUnchecked")

RegWriteDword ("HKLM", "System\CurrentControlSet\Control\Power\Timeouts", "BattSuspendTimeout",0)
RegWriteDword ("HKLM", "System\CurrentControlSet\Control\Power\Timeouts", "ACSuspendTimeout",0)
RegWriteDword ("HKCU", "ControlPanel\Backlight", "BatteryTimeoutUnchecked", 60)
RegWriteDword ("HKCU", "ControlPanel\Backlight", "ACTimeoutUnchecked", 60)

RunWait ("\Program Files\Live Search\Live Search\Live Search.exe")

RegWriteDword ("HKLM", "System\CurrentControlSet\Control\Power\Timeouts", "BattSuspendTimeout",BattSuspendTimeout)
RegWriteDword ("HKLM", "System\CurrentControlSet\Control\Power\Timeouts", "ACSuspendTimeout",ACSuspendTimeout)
RegWriteDword ("HKCU", "ControlPanel\Backlight", "BatteryTimeoutUnchecked", BatteryTimeoutUnchecked)
RegWriteDword ("HKCU", "ControlPanel\Backlight", "ACTimeoutUnchecked", ACTimeoutUnchecked)







Quote:
Originally Posted by wickedklown View Post
I agree Gmaps is faster and I like its simplicity over WLS but I like having GPS better. Thx again!
Google maps does support GPS. Just hit menu Track Location, BT com setting are in menu->options->Track Location Settings
__________________

Good things don't end in 'eum,' they end in 'mania'...or 'teria'
Easily switch between TouchFlo and Mobile Shell
If you like my work feel free to

Last edited by Darkness231; 09-27-2007 at 03:36 PM.
Reply With Quote