2015-12-26, 15:32
(2015-12-26, 05:23)Livin Wrote:(2015-12-13, 17:44)Wanilton Wrote:
One small request (hope)... the above screen is what I use te most (it is the easiest to navigate a large library and to quickly see what the new episodes are (title, #, etc) - but the text size of the list is small - even on my 100" screen. Can you have an option for larger text version of this screen?
thx!
Open viewsrightlist.xml in an xml editor. Search for word fixedlist you should see code similiar to one below.
Code:
<control type="fixedlist" id="51">
<viewtype label="31822">list</viewtype>
<left>600</left>
<top>20</top>
<width>680</width>
<height>500</height>
<pagecontrol>80</pagecontrol>
<onleft>9900</onleft>
<onright>80</onright>
<focusposition>1</focusposition>
<orientation>vertical</orientation>
<scrolltime>450</scrolltime>
<preloaditems>2</preloaditems>
<animation effect="slide" start="0,0" end="600,0" time="600" easing="inout" tween="cubic" condition="Control.HasFocus(9915)">Conditional</animation>
<animation effect="slide" start="0,0" end="-30,0" time="200" easing="inout" tween="cubic" condition="Control.HasFocus(80)">Conditional</animation>
<animation effect="fade" start="100" end="20" time="200" condition="Window.IsVisible(6621)">Conditional</animation>
<itemlayout condition="Window.IsActive(25) | Window.IsActive(500) | Window.IsActive(501) | Window.IsActive(502)" height="30">
<control type="image">
<left>0</left>
<top>0</top>
<width>680</width>
<height>1</height>
<texture diffuse="shadow_mask_v.png">line.png</texture>
</control>
<control type="label">
<left>105</left>
<top>1</top>
<width>540</width>
<height>30</height>
<font>Font_20</font>
<align>right</align>
<aligny>center</aligny>
<include>listcolor</include>
<label>$INFO[ListItem.Label]</label>
</control>
Change the line
Code:
<font>Font_20</font>
to
Code:
<font>Font_24</font>
For the focused movie font do following. Search for word focusedlayout you should see code similiar to below.
Code:
<focusedlayout condition="IsEmpty(Control.GetLabel(5102)) | [Window.IsActive(25) + Skin.HasSetting(slimrightlistvideo) | [Window.IsActive(500) | Window.IsActive(501) | Window.IsActive(502)] + Skin.HasSetting(slimrightlistmusic)]" height="30">
<control type="image">
<left>50</left>
<top>0</top>
<width>630</width>
<height>30</height>
<texture diffuse="shadow_mask_v.png">settings_button_focus.png</texture>
</control>
<control type="label">
<left>105</left>
<top>2</top>
<width>540</width>
<height>30</height>
<font>Font_22</font>
<align>right</align>
<aligny>center</aligny>
<include>listcolorfocus</include>
<label>$INFO[ListItem.Label]</label>
</control>
Change font line
Code:
<font>Font_22</font>
Hope this helps