Quote:
Originally Posted by Sharkie405
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")