|
||||
|
Re: Program to disable TF3D?
Try these. Let me know if it doesn't work
EDIT: I have modified the scripts so that a single cab file works for both TF3D and HTC Sense
__________________
![]() 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; 12-18-2009 at 07:02 PM. |
| This post has been thanked 2 times. |
|
||||
|
Re: Program to disable TF3D?
Works perfectly Darkness! Thx! I tried a couple things with mortscript and couldnt get it to work! Thx again!
I see what I did wrong, i missed a " on the "Windows Default" in my script Last edited by william_fold; 12-18-2009 at 11:29 AM. |
|
||||
|
Re: Program to disable TF3D?
The icon should be in the start menu under programs. Just tested it on mine and it shows up and works just fine
|
|
||||
|
Re: Program to disable TF3D?
Quote:
Code:
TouchFLO3DEXIST =RegValueExists("HKLM", "SOFTWARE\Microsoft\Today\Items\TouchFLO 3D", "Enabled")
HTCSENSEEXIST = RegValueExists("HKLM", "SOFTWARE\Microsoft\Today\Items\HTC Sense", "Enabled")
Titanium = RegRead( "HKLM", "SOFTWARE\Microsoft\Today\Items\""Windows Default""", "Enabled")
If (Titanium = 1 )
RegWriteDWord("HKLM", "SOFTWARE\Microsoft\Today\Items\""Windows Default""", "Enabled","0")
If (TouchFLO3DEXIST)
RegWriteDWord("HKLM", "SOFTWARE\Microsoft\Today\Items\TouchFLO 3D", "Enabled","1")
Endif
If (HTCSENSEEXIST)
RegWriteDWord("HKLM", "SOFTWARE\Microsoft\Today\Items\HTC Sense", "Enabled","1")
EndIf
RedrawToday
Show ( "Desktop" )
Else
If (Titanium = 0 )
If (TouchFLO3DEXIST)
RegWriteDWord("HKLM", "SOFTWARE\Microsoft\Today\Items\TouchFLO 3D", "Enabled","0")
Endif
If (HTCSENSEEXIST)
RegWriteDWord("HKLM", "SOFTWARE\Microsoft\Today\Items\HTC Sense", "Enabled","0")
EndIf
RegWriteDWord("HKLM", "SOFTWARE\Microsoft\Today\Items\""Windows Default""", "Enabled","1")
RedrawToday
Show ( "Desktop" )
Endif
Last edited by Darkness231; 12-18-2009 at 06:22 PM. |
| This post has been thanked 2 times. |
|
||||
|
Re: Program to disable TF3D?
would any body know if this would work on the normal 3.5 SPB mobile shell that you would normally get for the SPB warehouse website ?
|
|
||||
|
Re: Program to disable TF3D?
Quote:
It should. All of the mobile shells should have the same file names (mobileshell.exe) |
| This post has been thanked 1 times. |
![]() |
|
|
|