Thread: ReStart Sense
View Single Post
  #29 (permalink)  
Old 01-02-2011, 02:58 PM
ai6908's Avatar
ai6908
VIP Member
Offline
Location: Land of OZ
 
Join Date: Jun 2009
Posts: 844
Reputation: 3400
ai6908 is still contributing even after becoming a VIPai6908 is still contributing even after becoming a VIPai6908 is still contributing even after becoming a VIPai6908 is still contributing even after becoming a VIPai6908 is still contributing even after becoming a VIPai6908 is still contributing even after becoming a VIPai6908 is still contributing even after becoming a VIPai6908 is still contributing even after becoming a VIPai6908 is still contributing even after becoming a VIPai6908 is still contributing even after becoming a VIPai6908 is still contributing even after becoming a VIP
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Send a message via Yahoo to ai6908
Re: ReStart Sense

Quote:
Originally Posted by Sharkie405 View Post
That begs the question why do I have these two Sense keys in that string. I'll have to look into it. Thanks again for your help Santod.
Sense from OBOE (with RSSHub in home page) is code named "Sense" than the usual "HTC Sense".

You probably have a reg add somewhere in the kitchen that uses "HTC Sense" for today plugin. Hence you have two!

You can mod the mscr code to below, and it will work for both the item names. Credits to noonski...

Code:
If (RegKeyExists( "HKLM","\Software\Microsoft\Today\Items\HTC Sense" ))
    ManilaName = "HTC Sense"
Endif
If (RegKeyExists( "HKLM","\Software\Microsoft\Today\Items\TouchFlo 3D" ))
    ManilaName = "TouchFLO 3D"
Endif
If (RegKeyExists( "HKLM","\Software\Microsoft\Today\Items\Sense" ))
    ManilaName = "Sense"
Endif


RegWriteDword("HKLM","\Software\Microsoft\Today\Items\" & ManilaName ,"Enabled","0")
RedrawToday
Sleep("1500")

RegWriteDword("HKLM","\Software\Microsoft\Today\Items\" & ManilaName ,"Enabled","1")
RedrawToday
Sleep("1500")
Reply With Quote
This post has been thanked 1 times.