PPCGeeks Forums HTC Arrive HTC HD2 HTC Thunderbolt HTC Touch Pro 2 HTC Evo 4G HTC Evo 3D Samsung Galaxy S II Motorola Droid X Apple iPhone Blackberry
Go Back   PPCGeeks > Windows Mobile > WM HTC Devices > HTC Touch Pro 2
Register Community Search

Notices


Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 12-18-2009, 11:02 AM
bartveld's Avatar
Lurker
Offline
Pocket PC: GTC HD2
Carrier: KPN
 
Join Date: Dec 2009
Posts: 2
Reputation: 0
bartveld is a n00b
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: Program to disable TF3D?

I don't get it: I've installed the SPB MS-Sense switcher. Now I should have an icon somewhere to activate the switch, right? Can't find it anywhere.
I start out with MS and have Sense de-activated.
HTC HD2
SPB MS 2.5.2
ROM 1.48
Reply With Quote
  #2 (permalink)  
Old 12-18-2009, 11:26 AM
Darkness231's Avatar
mmmm Freebirds
Offline
Pocket PC: HTC EVO (X2)
Carrier: Sprint
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)
Re: Program to disable TF3D?

Quote:
Originally Posted by bartveld View Post
I don't get it: I've installed the SPB MS-Sense switcher. Now I should have an icon somewhere to activate the switch, right? Can't find it anywhere.
I start out with MS and have Sense de-activated.
HTC HD2
SPB MS 2.5.2
ROM 1.48
The icon should be in the start menu under programs. Just tested it on mine and it shows up and works just fine
__________________

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
Reply With Quote
  #3 (permalink)  
Old 12-18-2009, 12:11 PM
bartveld's Avatar
Lurker
Offline
Pocket PC: GTC HD2
Carrier: KPN
 
Join Date: Dec 2009
Posts: 2
Reputation: 0
bartveld is a n00b
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: Program to disable TF3D?

Quote:
Originally Posted by Darkness231 View Post
The icon should be in the start menu under programs. Just tested it on mine and it shows up and works just fine
Installed it once more, but no, nothing there that could be it, unless I'm very very dimwitted. It's not in the WM native list either, where it should be at the bottom since it was last installed. What's it called (after all, the progs are listed alphabetically in MS Programs)?

Edit: I've got it! I have a Dutch ROM and you put the link in Start Menu -> Programs, while mine needs Start Menu -> Programma's. It had created a new dir and subdir under Windows dir.

Last edited by bartveld; 12-18-2009 at 12:18 PM.
Reply With Quote
  #4 (permalink)  
Old 12-18-2009, 11:24 AM
william_fold's Avatar
Regular 'Geeker
Offline
Pocket PC: Touch Pro 2
Carrier: sprint
Location: NE Ohio
 
Join Date: Oct 2008
Posts: 314
Reputation: 1775
william_fold is halfway to VIP status based on repwilliam_fold is halfway to VIP status based on repwilliam_fold is halfway to VIP status based on repwilliam_fold is halfway to VIP status based on repwilliam_fold is halfway to VIP status based on repwilliam_fold is halfway to VIP status based on repwilliam_fold is halfway to VIP status based on repwilliam_fold is halfway to VIP status based on repwilliam_fold is halfway to VIP status based on repwilliam_fold is halfway to VIP status based on repwilliam_fold is halfway to VIP status based on rep
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
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.
Reply With Quote
  #5 (permalink)  
Old 12-18-2009, 11:38 AM
Darkness231's Avatar
mmmm Freebirds
Offline
Pocket PC: HTC EVO (X2)
Carrier: Sprint
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)
Re: Program to disable TF3D?

Quote:
Originally Posted by william_fold View Post
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
Yeah I had a problem with the fact that windows default had quotation marks around it. This is what worked for me

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.
Reply With Quote
This post has been thanked 2 times.
  #6 (permalink)  
Old 12-18-2009, 11:44 AM
william_fold's Avatar
Regular 'Geeker
Offline
Pocket PC: Touch Pro 2
Carrier: sprint
Location: NE Ohio
 
Join Date: Oct 2008
Posts: 314
Reputation: 1775
william_fold is halfway to VIP status based on repwilliam_fold is halfway to VIP status based on repwilliam_fold is halfway to VIP status based on repwilliam_fold is halfway to VIP status based on repwilliam_fold is halfway to VIP status based on repwilliam_fold is halfway to VIP status based on repwilliam_fold is halfway to VIP status based on repwilliam_fold is halfway to VIP status based on repwilliam_fold is halfway to VIP status based on repwilliam_fold is halfway to VIP status based on repwilliam_fold is halfway to VIP status based on rep
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: Program to disable TF3D?

Damn double quotes lol thx again!
Reply With Quote
  #7 (permalink)  
Old 12-18-2009, 11:48 AM
Omegakai's Avatar
PPCGeeks Regular
Offline
Pocket PC: Im on That Evo 3D Level Now lol
Carrier: Sprint Evolution
Location: Saint Petersburg FL
 
Join Date: Aug 2008
Posts: 83
Reputation: 15
Omegakai is a n00b
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
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 ?
Reply With Quote
  #8 (permalink)  
Old 12-18-2009, 11:51 AM
Darkness231's Avatar
mmmm Freebirds
Offline
Pocket PC: HTC EVO (X2)
Carrier: Sprint
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)
Re: Program to disable TF3D?

Quote:
Originally Posted by Omegakai View Post
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 ?

It should. All of the mobile shells should have the same file names (mobileshell.exe)
Reply With Quote
This post has been thanked 1 times.
  #9 (permalink)  
Old 12-18-2009, 06:43 PM
Darkness231's Avatar
mmmm Freebirds
Offline
Pocket PC: HTC EVO (X2)
Carrier: Sprint
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)
Re: Program to disable TF3D?

Just for fun. I threw together a cab that will give you the option of which today item that you want to use
Mobile Shell
TF3D
Titanium
None

EDIT: made more finger friendly



Last edited by Darkness231; 01-01-2010 at 09:51 AM.
Reply With Quote
This post has been thanked 13 times.
  #10 (permalink)  
Old 12-21-2009, 06:51 AM
Frogger's Avatar
Lurker
Offline
Pocket PC: HTC
Carrier: T-Mobile
 
Join Date: Jul 2009
Posts: 19
Reputation: 5
Frogger is a n00b
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: Program to disable TF3D?

Quote:
Originally Posted by Darkness231 View Post
Just for fun. I threw together a cab that will give you the option of which today item that you want to use
Mobile Shell
TF3D
Titanium
None
WOW! Even better!

Very useful, thank you.

How about one where we could add other progs like Androkkid, PointUI and other today screen replacements?
Reply With Quote
Reply

  PPCGeeks > Windows Mobile > WM HTC Devices > HTC Touch Pro 2


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


All times are GMT -4. The time now is 04:50 AM.


Powered by vBulletin® ©2000 - 2025, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.6.0
©2012 - PPCGeeks.com