2019-08-31, 09:06
(2019-07-29, 11:14)beatmasterrs Wrote:Hi.(2019-07-28, 19:43)marpemim Wrote: Hello again, i want erase or replace the fanart background in pvr channel list, it is possible?
Please open Includes_PVR.xml and look at the following code blocks:
line 119 - 123, shadow textureline 142 - 151, Background texturexml:<control type="image">
<width>100%</width>
<height>100%</height>
<texture border="10">common/nofocus-shadow10.png</texture>
</Control>line 173 - 179, lines around backgroundxml:<control type="image">
<left>10</left>
<top>10</top>
<right>10</right>
<bottom>10</bottom>
<aspectratio align="center" aligny="center" scalediffuse="false">scale</aspectratio>
<texture diffuse="diffuse/pvrinfo.png" background="true">pvr/background.jpg</texture>
<visible>!Player.HasVideo</visible>
<fadetime>150</fadetime>
</Control>Example, if you want to replace the background image with a grey background:xml:<control type="image">
<left>10</left>
<top>9</top>
<right>10</right>
<bottom>9</bottom>
<texture border="10" colordiffuse="Box2">common/box18.png</texture>
</Control>Change the "colordiffuse" value to your needs.xml:<control type="image">
<left>10</left>
<top>10</top>
<right>10</right>
<bottom>10</bottom>
<aspectratio align="center" aligny="center" scalediffuse="false">scale</aspectratio>
<texture colordiffuse="ff4f4f4f4" diffuse="diffuse/pvrinfo.png" background="true">common/white.png</texture>
<visible>!Player.HasVideo</visible>
<fadetime>150</fadetime>
</Control>
when you have made your changes, save everything, restart or reload your skin to make the changes take effect
What if I wanted to change the background to black? How would it be?
Example:
<texture colordiffuse="ff4f4f4f4" diffuse="diffuse/pvrinfo.png" background="true">ff000000</texture>