Customizing TV View BannerPlex
#1
I've been editing the TV view BannerPlex to be more to my liking, but I'm having some trouble locating the file or line segment to edit for two parts. I've changed around View_601_BannerPlex.xml to get the current below state.

I want to shrink the bottom background cover (the blueish fading one with the brighter line across the top); and then also move the title and genres to the right of the TV show poster and remove the year/rating/votes

Image

Thanks!
Reply
#2
in Includes_Backgrounds.xml

Code:

<animation effect="slide" end="0,-35" time="0" tween="cubic" easing="out" condition="Control.IsVisible(56) | Control.IsVisible(499) | Control.IsVisible(601)">Conditional</animation>

you can delete it
Code:

| Control.IsVisible (601)

and add visible in the floor image 

Code:
<visible>!Control.IsVisible(601)</visible>

something like that

Code:

<control type="image">
    <top>800</top>
    <left>-25</left>
    <width>110%</width>
    <height>266</height>
    <texture border="40" colordiffuse="$VAR[ThemePanelColor]">floor.png</texture>
</control>

and make your own in views 601

infos is more complicated , you can find it in , MyVideoNav.xml

Code:

<visible>Control.IsVisible(57) | [Control.IsVisible(58) + Skin.HasSetting(Disable.BannerWallInfo)] | Control.IsVisible(499) | Control.IsVisible(500) | Control.IsVisible(601)</visible>

Good luck
Reply
#3
(2021-05-18, 03:04)Atamans Wrote: in Includes_Backgrounds.xml

Code:

<animation effect="slide" end="0,-35" time="0" tween="cubic" easing="out" condition="Control.IsVisible(56) | Control.IsVisible(499) | Control.IsVisible(601)">Conditional</animation>

you can delete it
Code:

| Control.IsVisible (601)

and add visible in the floor image 

Code:
<visible>!Control.IsVisible(601)</visible>

something like that

Code:

<control type="image">
    <top>800</top>
    <left>-25</left>
    <width>110%</width>
    <height>266</height>
    <texture border="40" colordiffuse="$VAR[ThemePanelColor]">floor.png</texture>
</control>

and make your own in views 601

infos is more complicated , you can find it in , MyVideoNav.xml

Code:

<visible>Control.IsVisible(57) | [Control.IsVisible(58) + Skin.HasSetting(Disable.BannerWallInfo)] | Control.IsVisible(499) | Control.IsVisible(500) | Control.IsVisible(601)</visible>

Good luck
Awesome, thanks! Half way there Cool . Now to figure out the infos.

Image
Reply
#4
try to add in MyVideoNav.xml

Code:

<animation effect="slide" end="190,70" condition="Control.IsVisible(601) + [Container.Content(movies) | Container.Content(sets) | Container.Content(tvshows) | Container.Content(seasons) | Container.Content(musicvideos)]">Conditional</animation>


Above

Code:

<animation effect="slide" end="-40,20" condition="Control.IsVisible(57) + ![Container.Content(movies) | Container.Content(sets) | Container.Content(tvshows) | Container.Content(seasons) | Container.Content(musicvideos)]">Conditional</animation>

where
effect="slide" end="190,70"

190 = top/down
70 = left/right/

don't forgett add line with disabled your modification  "!"

Code:

<animation effect="slide" end="190,70" condition="!Control.IsVisible(601) + ![Container.Content(movies) | Container.Content(sets) | Container.Content(tvshows) | Container.Content(seasons) | Container.Content(musicvideos)]">Conditional</animation>
Reply
#5
(2021-05-18, 11:28)Atamans Wrote: try to add in MyVideoNav.xml

Code:

<animation effect="slide" end="190,70" condition="Control.IsVisible(601) + [Container.Content(movies) | Container.Content(sets) | Container.Content(tvshows) | Container.Content(seasons) | Container.Content(musicvideos)]">Conditional</animation>


Above

Code:

<animation effect="slide" end="-40,20" condition="Control.IsVisible(57) + ![Container.Content(movies) | Container.Content(sets) | Container.Content(tvshows) | Container.Content(seasons) | Container.Content(musicvideos)]">Conditional</animation>

where
effect="slide" end="190,70"

190 = top/down
70 = left/right/

don't forgett add line with disabled your modification  "!"

Code:

<animation effect="slide" end="190,70" condition="!Control.IsVisible(601) + ![Container.Content(movies) | Container.Content(sets) | Container.Content(tvshows) | Container.Content(seasons) | Container.Content(musicvideos)]">Conditional</animation>
Success! Thank you so much for your help Atamans!

I had to also comment out group starting at line 452 to remove the year/ratings line
Code:
                            <!-- control type="label">
                                <width>1800</width>
                                <height>30</height>
                                <font>font13_bold</font>
                                <label>$VAR[FloorSubLabelVar]</label>
                                <textoffsetx>30</textoffsetx>
                                <visible>!ListItem.IsCollection</visible>
                            </control-- >


and add the top definition to the show title to move it down.
Code:
                        <control type="label">
                            <width>1800</width>
                            <top>40</top>
                            <height>42</height>
                            <aligny>top</aligny>
                            <font>font16_title_bold</font>
                            <scroll>true</scroll>
                            <label>$INFO[ListItem.Label]</label>
                            <textoffsety>-2</textoffsety>
                            <textoffsetx>30</textoffsetx>
                        </control>

Image
Reply

Logout Mark Read Team Forum Stats Members Help
Customizing TV View BannerPlex0