[MOD]Plot and more on pause and info screen
#31
Sure. Replace the section between <!----Plot & Cast Info ----> in your 'DialogFullScreenInfo.xml' and 'DialogSeekBar.xml' with this new content

new 'DialogSeekBar.xml'
Code:
         <!----Plot & Cast Info ---->
         <control type="group">
            <visible>Skin.HasSetting(Show_Info_Paused)</visible>
            <visible>Player.Paused</visible>
            <visible>VideoPlayer.Content(episodes) | VideoPlayer.Content(movies)</visible>
            <include>Animation_CommonFade</include>
            <control type="label">
                <left>600</left>
                <top>700</top>
                <width>600</width>
                <height>50</height>
                <align>left</align>
                <font>Font_Bold28</font>
                <textcolor>FF017196</textcolor>
                <label>Director</label>
            </control>
            <control type="textbox">
                <description>Director</description>
                <left>600</left>
                <top>740</top>
                <width>600</width>
                <height>50</height>
                <font>Font_Reg28_2</font>
                <textcolor>FFE5E5E5</textcolor>
                <align>justify</align>
                <label fallback="31203">$INFO[VideoPlayer.Director]</label>
                <wrapmultiline>true</wrapmultiline>
                <autoscroll delay="20000" time="4000" repeat="15000">true</autoscroll>
            </control>
            
            <control type="label">
                <left>600</left>
                <top>810</top>
                <width>600</width>
                <height>50</height>
                <align>left</align>
                <font>Font_Bold28</font>
                <textcolor>FF017196</textcolor>
                <label>Writer</label>
            </control>
            
            <control type="textbox">
                <description>Writer</description>
                <left>600</left>
                <top>850</top>
                <width>600</width>
                <height>100</height>
                <font>Font_Reg28_2</font>
                <textcolor>FFE5E5E5</textcolor>
                <align>justify</align>
                <label fallback="31203">$INFO[VideoPlayer.Writer]</label>
                <wrapmultiline>true</wrapmultiline>
                <autoscroll delay="20000" time="4000" repeat="15000">true</autoscroll>
            </control>
            
            <control type="label">
                <left>380</left>
                <top>250</top>
                <width>300</width>
                <height>25</height>
                <align>left</align>
                <font>Font_Bold28</font>
                <textcolor>FF017196</textcolor>
                <label>PLOT</label>
            </control>
            <control type="textbox">
                <description>Plot</description>
                <left>380</left>
                <top>290</top>
                <width>950</width>
                <height>355</height>
                <font>Font_Reg28_2</font>
                <textcolor>FFE5E5E5</textcolor>
                <align>justify</align>
                <label fallback="31203">$INFO[VideoPlayer.Plot]</label>
                <wrapmultiline>true</wrapmultiline>
                <autoscroll delay="20000" time="4000" repeat="15000">true</autoscroll>
            </control>
            
            <control type="label">
                <left>1370</left>
                <top>250</top>
                <width>300</width>
                <height>25</height>
                <align>left</align>
                <font>Font_Bold28</font>
                <textcolor>FF017196</textcolor>
                <label>CAST & ROLE</label>
            </control>
            <control type="textbox">
                <description>Cast</description>
                <left>1370</left>
                <top>290</top>
                <width>525</width>
                <height>355</height>
                <font>Font_Reg28_2</font>
                <textcolor>FFE5E5E5</textcolor>
                <align>left</align>
                <label fallback="31203">$INFO[VideoPlayer.CastandRole]</label>
                <wrapmultiline>true</wrapmultiline>
                <autoscroll delay="20000" time="4000" repeat="15000">true</autoscroll>
            </control>
         </control>
         <!----Plot & Cast Info ---->

new 'DialogfullScreen.xml'
Code:
        <!----Plot & Cast Info ---->
            <control type="group">
             <visible>VideoPlayer.Content(episodes) | VideoPlayer.Content(movies)</visible>
            <include>Animation_CommonFade</include>
            <control type="label">
                <left>600</left>
                <top>700</top>
                <width>600</width>
                <height>50</height>
                <align>left</align>
                <font>Font_Bold28</font>
                <textcolor>FF017196</textcolor>
                <label>Director</label>
            </control>
            <control type="textbox">
                <description>Director</description>
                <left>600</left>
                <top>740</top>
                <width>600</width>
                <height>50</height>
                <font>Font_Reg28_2</font>
                <textcolor>FFE5E5E5</textcolor>
                <align>justify</align>
                <label fallback="31203">$INFO[VideoPlayer.Director]</label>
                <wrapmultiline>true</wrapmultiline>
                <autoscroll delay="20000" time="4000" repeat="15000">true</autoscroll>
            </control>
            
            <control type="label">
                <left>600</left>
                <top>810</top>
                <width>600</width>
                <height>50</height>
                <align>left</align>
                <font>Font_Bold28</font>
                <textcolor>FF017196</textcolor>
                <label>Writer</label>
            </control>
            
            <control type="textbox">
                <description>Writer</description>
                <left>600</left>
                <top>850</top>
                <width>600</width>
                <height>100</height>
                <font>Font_Reg28_2</font>
                <textcolor>FFE5E5E5</textcolor>
                <align>justify</align>
                <label fallback="31203">$INFO[VideoPlayer.Writer]</label>
                <wrapmultiline>true</wrapmultiline>
                <autoscroll delay="20000" time="4000" repeat="15000">true</autoscroll>
            </control>
            <control type="label">
                <left>380</left>
                <top>250</top>
                <width>300</width>
                <height>25</height>
                <align>left</align>
                <font>Font_Bold28</font>
                <textcolor>FF017196</textcolor>
                <label>PLOT</label>
            </control>
            <control type="textbox">
                <description>Plot</description>
                <left>380</left>
                <top>290</top>
                <width>950</width>
                <height>355</height>
                <font>Font_Reg28_2</font>
                <textcolor>FFE5E5E5</textcolor>
                <align>justify</align>
                <label fallback="31203">$INFO[VideoPlayer.Plot]</label>
                <wrapmultiline>true</wrapmultiline>
                <autoscroll delay="20000" time="4000" repeat="15000">true</autoscroll>
            </control>
            <control type="label">
                <left>1370</left>
                <top>250</top>
                <width>300</width>
                <height>25</height>
                <align>left</align>
                <font>Font_Bold28</font>
                <textcolor>FF017196</textcolor>
                <label>CAST & ROLE</label>
            </control>
            <control type="textbox">
                <description>Cast</description>
                <left>1370</left>
                <top>290</top>
                <width>525</width>
                <height>355</height>
                <font>Font_Reg28_2</font>
                <textcolor>FFE5E5E5</textcolor>
                <align>left</align>
                <label fallback="31203">$INFO[VideoPlayer.CastandRole]</label>
                <wrapmultiline>true</wrapmultiline>
                <autoscroll delay="20000" time="4000" repeat="15000">true</autoscroll>
            </control>
            </control>
            
            <!----Plot & Cast Info ---->
Reply
#32
Is there away to make the background darker so I can read the info more clearly? It's hard to read the info when the movie is brighter.
Reply
#33
I made a new zip file with the new mod. Third link in the first post.

In the settings of the skin you can switch off/on a darker background.
Reply
#34
Thanks
Reply
#35
(2014-09-20, 19:35)_Andy_ Wrote: I made a new zip file with the new mod. Third link in the first post.

In the settings of the skin you can switch off/on a darker background.

Does this also include the original mod you made for AN5?
ASUS Chromebox M004U (LibreELEC 8.2/Aeon Nox SiLVO)--->HDMI--->Onkyo TX-NR646--->HDMI--->Panasonic P65VT30
Reply
#36
@wgstarks

I made the same mod for Aeon Nox 5.1.4. I updated the first post.

You can configure the mod in the skin settings/extra settings.
Reply
#37
(2014-09-21, 19:20)_Andy_ Wrote: @wgstarks

I made the same mod for Aeon Nox 5.1.4. I updated the first post.

You can configure the mod in the skin settings/extra settings.

Thanks. Perhaps you can tell me how to preserve these mods every time the skin gets updated? Seems to be happening a lot lately.
ASUS Chromebox M004U (LibreELEC 8.2/Aeon Nox SiLVO)--->HDMI--->Onkyo TX-NR646--->HDMI--->Panasonic P65VT30
Reply
#38
Since the mods are not integrated in the official releases, i guess where is no way to preserve.

I changed the skin id and name (addon.xml in the skin root) to get no updated for the skin.
Or you can disable auto update. You will informed if a new update is available but you have to update manually.

I noticed in Aeon Nox 5.1.5 the pause sign in pause screen is not positioned correctly so i rolled back to 5.1.4 and made my mod.
Reply
#39
(2014-09-21, 20:28)_Andy_ Wrote: Since the mods are not integrated in the official releases, i guess where is no way to preserve.

I changed the skin id and name (addon.xml in the skin root) to get no updated for the skin.
Or you can disable auto update. You will informed if a new update is available but you have to update manually.

I noticed in Aeon Nox 5.1.5 the pause sign in pause screen is not positioned correctly so i rolled back to 5.1.4 and made my mod.

Huh

This is a shot from AN 5.1.5. Pause sign looks good to me.

Image


Also:FYI: Your subject line is too long. Throws an error when replying on this thread.

Thanks for the update. Darker background is a big improvement.
ASUS Chromebox M004U (LibreELEC 8.2/Aeon Nox SiLVO)--->HDMI--->Onkyo TX-NR646--->HDMI--->Panasonic P65VT30
Reply
#40
Hello.

Just wondering how to make it so both the pause screen and the info screen are the same.

When you pause it you get the full info (it has the studio/channel & TV/movie classification)

Image
Image

But if you push "i" for info it is missing those parts.

Image
Image

Thanks
Mathew
Reply
#41
Hello

Sorry for the late reply.
I updated the mod. Now both screens should display the same info labels.

Use this link for Aeon Nox 4.9.9.9 https://dl.dropboxusercontent.com/u/2116...102014.zip
or use the updated link in the first post.

If you have more suggestions feel free to ask.
Reply
#42
Hey

I downloaded the newest version with screen change but it isn't showing up when i pause or push i. I downgraded to previous version and it shows when I pause or push info.
Reply
#43
Did you copy the custom_1118_VideoOSD.xml to the skin/1080i folder too?

During playback you have to press 'm' and in the settings you need to switch on/off darker background and show plot at info and pause screen once.
With the new mod you can enable or disable both info screens.
Reply
#44
ok so i have moved the files correctly and enabled the dark background in the skin settings but nothing happens when i hit pause or info button when playing movie is just pauses and brings up no info at all im missing something but no idea what,

im running aeon nox 5.1.5 i have tried to enable some kind of menu so its shows info etc when playing movie but there is just no option there in the setting when playing movie to show any info

hopefully someone can point out to me what im doing wrong lol as im stumped
Reply
#45
Could you do a screenshot of your settings where you enabled the darken background please?
Reply

Logout Mark Read Team Forum Stats Members Help
[MOD]Plot and more on pause and info screen0