2021-10-13, 05:46
2021-11-04, 07:58
Just managed to do it, I had to comment out every blocks of text that contain " Label2 " from control to control, using <!-- and -->
With notepad++ using the search feature i was able to find all blocks that contain " Label2 " and turn them from this:
To this:
With notepad++ using the search feature i was able to find all blocks that contain " Label2 " and turn them from this:
Quote:<control type="label">
<left>220</left>
<top>0</top>
<width>400</width>
<height>40</height>
<font>font12</font>
<textcolor>grey2</textcolor>
<selectedcolor>selected</selectedcolor>
<align>right</align>
<aligny>center</aligny>
<label>$INFO[ListItem.Label2]</label>
<visible>Window.IsVisible(Videos)</visible>
<animation effect="slide" start="0,0" end="40,0" delay="0" time="0" condition="![Container.Content(Movies) |
Container.Content(Episodes) | Container.Content(MusicVideos)]">conditional</animation>
</control>
To this:
Quote:<!--
<control type="label">
<left>220</left>
<top>0</top>
<width>400</width>
<height>40</height>
<font>font12</font>
<textcolor>grey2</textcolor>
<selectedcolor>selected</selectedcolor>
<align>right</align>
<aligny>center</aligny>
<label>$INFO[ListItem.Label2]</label>
<visible>Window.IsVisible(Videos)</visible>
<animation effect="slide" start="0,0" end="40,0" delay="0" time="0" condition="![Container.Content(Movies) |
Container.Content(Episodes) | Container.Content(MusicVideos)]">conditional</animation>
</control>
-->