[MOD] MultiPlex Plot Outline for 'Thumb' and 'Art' Layout Mod
#1
Firstly some screen shots.

Image

Image

As you can see using the Plot Outline means you only get one or two sentences that sum up the movie a lot better than some of the terrible Plots on IMDB. It also means there's virtually no scrolling of text on screen either.

You will have shortened text for Runtime if your NFO's contain more than one timing - I personally edit any NFO that does with the correct runtime for the version I have and I've also requested that MIP uses the source video length for that field so it's perfectly accurate.

You'll also have shortened text for the Rating if you use US/MPAA style ones - I'm from the UK so I use the BBFC ones.


Here's both the dark and the new lite texture plus the xml file (that's up-to-date as of today) all rarred up ready to extract and drop into the Aeon folder.

Aeon Mod

Here's the code in case of updates to Aeon.


Open up your Viewtype_Multiplex.xml and find both entries of this code -
Code:
multiplex_full_infobigthumb.png
and replace with this -
Code:
multiplex_full_infobigthumb2.png

Secondly find this code -
Code:
            <control type="group">
                <posx>60</posx>
                <posy>0</posy>
                <control type="group">
                    <posy>22</posy>
                    <control type="label">
                        <include>MultiplexInfoLabel</include>
                        <label>$LOCALIZE[31402]:</label>
                    </control>
                    
                    <control type="label">
                        <include>MultiplexInfoValue</include>                
                        <label fallback="31425">$INFO[Container(52).ListItem.Director]</label>
                    </control>            
                </control>
and insert
Code:
                <visible>![Skin.HasSetting(multiplexfanart) | Skin.HasSetting(multiplexbigthumb)]</visible>
below
Code:
<posy>0</posy>
Then at the end of that control group where you see this code -
Code:
                <control type="group">
                    <posy>322</posy>
                    <control type="label">
                        <include>MultiplexInfoLabel</include>
                        <label>$LOCALIZE[31408]:</label>
                    </control>
                    
                    <control type="label">
                        <include>MultiplexInfoValue</include>                
                        <label fallback="31425">$INFO[Container(52).ListItem.RatingAndVotes]</label>
                    </control>            
                </control>
            </control>
insert this group -
Code:
            <control type="group">
                <posx>60</posx>
                <posy>0</posy>
                <visible>Skin.HasSetting(multiplexfanart) | Skin.HasSetting(multiplexbigthumb)</visible>
                <control type="group">
                    <posy>22</posy>
                    <control type="label">
                        <include>MultiplexInfoLabel</include>
                        <label>$LOCALIZE[31402]:</label>
                    </control>
                    
                    <control type="label">
                        <include>MultiplexInfoValue</include>                
                        <label fallback="31425">$INFO[Container(52).ListItem.Director]</label>
                    </control>            
                </control>
                
                <control type="group">
                    <posy>72</posy>
                    <control type="label">
                        <include>MultiplexInfoLabel</include>
                        <label>$LOCALIZE[31401]:</label>
                    </control>
                    
                    <control type="label">
                        <include>MultiplexInfoValue</include>                
                        <label fallback="31425">$INFO[Container(52).ListItem.Writer]</label>
                    </control>            
                </control>
                
                <control type="group">
                    <posy>122</posy>
                    <control type="label">
                        <include>MultiplexInfoLabel</include>
                        <label>$LOCALIZE[31438]:</label>
                    </control>
                    
                    <control type="label">
                        <include>MultiplexInfoValue</include>                
                        <label fallback="31425">$INFO[Container(52).ListItem.Genre]</label>
                    </control>            
                </control>
                
                <control type="group">
                    <posy>172</posy>
                    <control type="label">
                        <include>MultiplexInfoLabel</include>
                        <label>$LOCALIZE[31408]:</label>
                    </control>
                    
                    <control type="label">
                        <include>MultiplexInfoValue</include>                
                        <label fallback="31425">$INFO[Container(52).ListItem.RatingAndVotes]</label>
                    </control>            
                </control>

                <control type="group">
                    <posy>222</posy>
                    <control type="label">
                        <include>MultiplexInfoLabel</include>
                        <label>$LOCALIZE[31436]:</label>
                    </control>
                    
                    <control type="label">
                        <include>MultiplexInfoValue</include>                
                        <label fallback="31425">$INFO[Container(52).ListItem.Year]</label>
                    </control>            
                </control>

                <control type="group">
                    <posx>160</posx>
                    <posy>222</posy>
                    <control type="label">
                        <include>MultiplexInfoLabel</include>
                        <label>$LOCALIZE[31709]:</label>
                    </control>
                    
                    <control type="label">
                        <posx>0</posx>    
                        <posy>17</posy>
                        <width>160</width>
                        <height>13</height>
                        <font>Font_MultiplexInfoValue</font>
                        <textcolor>FFFFFFFF</textcolor>                        
                        <label fallback="31425">$INFO[Container(52).ListItem.Duration]</label>
                    </control>            
                </control>
                
                <control type="group">
                    <posx>360</posx>
                    <posy>222</posy>
                    <control type="label">
                        <include>MultiplexInfoLabel</include>
                        <label>$LOCALIZE[31417]:</label>
                    </control>
                    
                    <control type="label">
                        <posx>0</posx>    
                        <posy>17</posy>
                        <width>160</width>
                        <height>13</height>
                        <font>Font_MultiplexInfoValue</font>
                        <textcolor>FFFFFFFF</textcolor>                
                        <label fallback="31425">$INFO[Container(52).ListItem.MPAA]</label>
                    </control>
            
                </control>

                <control type="textbox">
                    <posx>0</posx>
                    <posy>272</posy>
                    <width>500</width>
                    <height>100</height>
                    <font>Font_MultiplexPlot</font>
                    <info>Container(52).ListItem.PlotOutline</info>
                    <textcolor>d0FFFFFF</textcolor>
                    <autoscroll delay="10000" time="2000" repeat="8000">Skin.HasSetting(allowscroll)</autoscroll>    
                </control>
            </control>
#2
Wow, this is excellent. Is there any chance this could be included officially into Aeon?
#3
Can't get your file down i get this message
Quote:Invalid File. This error has been forwarded to MediaFire's development team.
I finally got the file but it's corrupt and was only 23kb?
XBMC Frodo 12 - Windows 7 - Asrock Ion 330HT - Aeon Nox
#4
Strange, worked for me.

Try this one for now -

http://rapidshare.com/files/227605405/mu...2.png.html
#5
I've uploaded it again, can you let me know if it works for you?
#6
Hitcher Wrote:I've uploaded it again, can you let me know if it works for you?
Worked for me..
1: Nvidia Shield TV (2017) 16GB - 2: Beelink MinixMXIII II - 3: Beelink MinixMXIII II - 4: Beelink MinixMXIII II
NAS: unRAID 6.3 Pro • Case (NZXT H440) • MB (MBD-X7SBE with SIM1U+) • CPU (Xeon X3360) • RAM (4x2GB DDR2) • SATA (6 On MB, 8 AOC-SAT2-MV8) • PSU (EVGA SUPERNOVA 650 G2) • HDD (2 x Toshiba 3TB parity, 6 x WD Red 3TB xfs, 1 x 512GB SSD cache)  • UPS (APC BR1000G)
#7
Cool Nice work, thanks for this Hitcher!
#8
Hitcher Wrote:Strange, worked for me.

Try this one for now -

http://rapidshare.com/files/227605405/mu...2.png.html
Thanks Hitcher will now go and try your nice modBig Grin
XBMC Frodo 12 - Windows 7 - Asrock Ion 330HT - Aeon Nox
#9
GinSoakedBoy Wrote:Is there any chance this could be included officially into Aeon?

Unlikely.
#10
Any chance you could just upload your multiplex.xml file?
#11
Love the short plot outli we, but is there any chance we could keep the 2 thumbnails and not the little fanart images?
#12
crowbar77 Wrote:Any chance you could just upload your multiplex.xml file?
Here ya go http://www.4shared.com/file/102747792/1b...iplex.html

Hitcher are you planning on doing this for the light theme? as that looks better to me than the dark colour thanks
XBMC Frodo 12 - Windows 7 - Asrock Ion 330HT - Aeon Nox
#13
crowbar77 Wrote:Any chance you could just upload your multiplex.xml file?

The reason I posted the code and not the xml is simply because things can get changed around with an update and you'd be lost.
#14
Hitcher Wrote:The reason I posted the code and not the xml is simply because things can get changed around with an update and you'd be lost.
Ah point taken that's what I get for trying to help. oops
XBMC Frodo 12 - Windows 7 - Asrock Ion 330HT - Aeon Nox
#15
Hitcher Wrote:The reason I posted the code and not the xml is simply because things can get changed around with an update and you'd be lost.
Yup, I got myself all screwed up between modding and pulling the newest files from git. I ended up just creating one folder that I do all the git pulls to and then a second folder with all my mods - then I copy over the new updates to that folder and re-do any modding if necessary. Oo

Logout Mark Read Team Forum Stats Members Help
[MOD] MultiPlex Plot Outline for 'Thumb' and 'Art' Layout Mod0