Help with a fixedlist
#1
So i'm trying to pull content from another addon but i'm running into a issue! So there is two things that i need help on, One is that i have it pulling the plot for the movie its focused on but need it outside of the <focusedlayout height="320" width="320"> field. The other issue is that i'm trying to get it to pull the fanart from the content and put it in the background but can't seem to get it to work right as it hides some of the stuff that i want shown. Maybe i'm going about this all wrong but any help would be great thanks


Code:
<control type="fixedlist" id="702">
                <description>Primewire Featured</description>
                <left>-125</left>
                <top>310</top>
                <width>4000</width>
                <height>4000</height>
                <onleft>901</onleft>
                <onright>800</onright>
                <ondown>703</ondown>
                <onup>700</onup>
                <visible>true</visible>
                <pagecontrol>-</pagecontrol>
                <scrolltime>300</scrolltime>
                <focusposition>1</focusposition>
                <movement>1</movement>
                <orientation>horizontal</orientation>
                <content>plugin://plugin.video.1channel/?sort=featured&section=movie&mode=GetFilteredResults</content>
                <itemlayout height="320" width="320">
                    <control type="image">
                        <left>150</left>
                        <top>0</top>
                        <width>300</width>
                        <height>200</height>
                        <texture>$INFO[ListItem.Art(fanart)]</texture>
                    </control>
                </itemlayout>
                <focusedlayout height="320" width="320">
                    <control type="image">
                        <left>150</left>
                        <top>0</top>
                        <width>300</width>
                        <height>200</height>
                        <texture>$INFO[ListItem.Art(fanart)]</texture>
                    </control>
                    <control type="image">
                        <left>140</left>
                        <top>-10</top>
                        <width>320</width>
                        <height>220</height>
                        <texture>white_border.png</texture>
                    </control>
                    <control type="textbox">
                        <left>300</left>
                        <top>-500</top>
                        <width>205</width>
                        <height>80</height>
                        <font>font10_title</font>
                        <textcolor>white</textcolor>
                        <visible>Control.HasFocus(702)</visible>
                        <align>left</align>
                        <aligny>left</aligny>
                        <autoscroll delay="3000" time="1000" repeat="10000">Control.HasFocus(702)</autoscroll>
                        <label>$INFO[ListItem.Plot]</label>
                    </control>
                    <control type="label">
                        <left>165</left>
                        <top>195</top>
                        <width>275</width>
                        <height>30</height>
                        <font>font10_title</font>
                        <textcolor>white</textcolor>
                        <visible>Control.HasFocus(702)</visible>
                        <shadowcolor>FF000000</shadowcolor>
                        <align>center</align>
                        <aligny>center</aligny>
                        <label>$INFO[ListItem.Label]</label>
                    </control>
                </focusedlayout>
            </control>
Reply
#2
It all depends on what details addon provides but to display plot outside the list use -

Code:
Container(702).ListItem.Plot
Reply
#3
I should of thought of that lol thank you so much that worked great
Reply

Logout Mark Read Team Forum Stats Members Help
Help with a fixedlist0