VistaStyleBuilder

Tips and Visual Styles => Tips and Tricks => Topic started by: Danilo on August 20, 2015, 06:22:25 pm



Title: How do I delete CLASS?
Post by: Danilo on August 20, 2015, 06:22:25 pm
How do I delete CLASS? clear if this is possible


Title: Re: How do I delete CLASS?
Post by: 3am on August 20, 2015, 08:59:12 pm
You can't unless you remove it from the correct classmap.xml so you don't see it anymore.

Why would you want to do this?


Title: Re: How do I delete CLASS?
Post by: Panda X on August 20, 2015, 11:11:00 pm
If you manually remove it from the CMAP WSB will remove the properties on compile. Editing the CMAP requires hex editing though.


Title: Re: How do I delete CLASS?
Post by: Danilo on August 21, 2015, 07:36:17 am
Because I would remove these class:
(http://s13.postimg.org/rmfnz9yuf/image.png)


Title: Re: How do I delete CLASS?
Post by: Panda X on August 21, 2015, 02:02:56 pm
Actually you should be able to do so with a StyleScript:

Code:
<stylescript>
<remove>
<class class="SIB_StartPanelPriv"/>
<class class="SIB_StartPanelComposited::StartPanelPriv"/>
</remove>
</stylescript>

Save that as SIBClassRemove.xml in your WSB\Data\StyleScripts folder and then hold Shift and click Import Stylehack and select SIBClassRemove then click Apply StyleScript.


Title: Re: How do I delete CLASS?
Post by: Danilo on August 21, 2015, 02:40:20 pm
Thanks