• 1
  • 34
  • 35
  • 36(current)
  • 37
  • 38
  • 405
Arctic: Zephyr - Reloaded
(2019-07-29, 11:14)beatmasterrs Wrote:
(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 texture
xml:
<control type="image">
   <width>100%</width>
   <height>100%</height>
   <texture border="10">common/nofocus-shadow10.png</texture>
</Control>
line 142 - 151, Background texture
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 diffuse="diffuse/pvrinfo.png" background="true">pvr/background.jpg</texture>
   <visible>!Player.HasVideo</visible>
   <fadetime>150</fadetime>
</Control>
line 173 - 179, lines around 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>
Example, if you want to replace the background image with a grey background:
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>
Change the "colordiffuse" value to your needs.

when you have made your changes, save everything, restart or reload your skin to make the changes take effect Smile 
Hi.

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>
Reply
(2019-08-31, 09:06)aceqott Wrote:
(2019-07-29, 11:14)beatmasterrs Wrote:
(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 texture
xml:
<control type="image">
   <width>100%</width>
   <height>100%</height>
   <texture border="10">common/nofocus-shadow10.png</texture>
</Control>
line 142 - 151, Background texture
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 diffuse="diffuse/pvrinfo.png" background="true">pvr/background.jpg</texture>
   <visible>!Player.HasVideo</visible>
   <fadetime>150</fadetime>
</Control>
line 173 - 179, lines around 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>
Example, if you want to replace the background image with a grey background:
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>
Change the "colordiffuse" value to your needs.

when you have made your changes, save everything, restart or reload your skin to make the changes take effect Smile  
Hi.

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>

<texture colordiffuse="ff4f4f4f4" diffuse="diffuse/pvrinfo.png" background="true">common/white.png</texture>

ff4f4f4f4       grey color

only replace for your favourite color bro hahahaha 
Reply
(2019-08-30, 21:13)loznic89 Wrote:
(2019-08-30, 10:47)beatmasterrs Wrote:
(2019-08-29, 23:55)loznic89 Wrote:  
PVR section in az-leia mod has no stars. It's already on my todo list, I haven't forgotten. will be added a s soon as possible Smile

ok, thank you 

https://drive.google.com/file/d/1dWqgWgd...sp=sharing

With this font appear starrating in pvr, Can you implement the stars in the default skin font?

and, I can't find the xml to modify shutdown menu and I can't find how to modify it from the skin.

thanks again nice skin and good support
Reply
(2019-08-30, 21:13)loznic89 Wrote:
(2019-08-30, 10:47)beatmasterrs Wrote:
(2019-08-29, 23:55)loznic89 Wrote:  
PVR section in az-leia mod has no stars. It's already on my todo list, I haven't forgotten. will be added a s soon as possible Smile

ok, thank you 

using other arial font appear starrating in pvr, Can you implement the stars in the default skin font?

and, I can't find the xml to modify shutdown menu and I can't find how to modify it from the skin.

thanks again nice skin and good support
Reply
(2019-08-30, 21:13)loznic89 Wrote:
(2019-08-30, 10:47)beatmasterrs Wrote:
(2019-08-29, 23:55)loznic89 Wrote:  
PVR section in az-leia mod has no stars. It's already on my todo list, I haven't forgotten. will be added a s soon as possible Smile

ok, thank you 

using other arial font appear starrating in pvr, Can you implement the stars in the default skin font?

and, I can't find the xml to modify shutdown menu and I can't find how to modify it from the skin.

thanks again nice skin and good support
Reply
(2019-08-31, 14:09)loznic89 Wrote:
(2019-08-31, 09:06)aceqott Wrote:
(2019-07-29, 11:14)beatmasterrs Wrote: Please open Includes_PVR.xml and look at the following code blocks:

line 119 - 123, shadow texture
xml:
<control type="image">
   <width>100%</width>
   <height>100%</height>
   <texture border="10">common/nofocus-shadow10.png</texture>
</Control>
line 142 - 151, Background texture
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 diffuse="diffuse/pvrinfo.png" background="true">pvr/background.jpg</texture>
   <visible>!Player.HasVideo</visible>
   <fadetime>150</fadetime>
</Control>
line 173 - 179, lines around 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>
Example, if you want to replace the background image with a grey background:
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>
Change the "colordiffuse" value to your needs.

when you have made your changes, save everything, restart or reload your skin to make the changes take effect Smile  
Hi.

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>

<texture colordiffuse="ff4f4f4f4" diffuse="diffuse/pvrinfo.png" background="true">common/white.png</texture>

ff4f4f4f4       grey color

only replace for your favourite color bro hahahaha 

The solution was in front of my nose and I didn't realize it. Nathan Hahahaha 

Thans bro.

"beatmasterrs" Sorry @beatmasterrs
Reply
Love this skin!

What info should appear where it says: night verfügbar?Image
Reply
Sorry, nicht verfügbar

Not sure how to edit post ;o)
Reply
(2019-09-01, 20:11)sniktaw Wrote: Sorry, nicht verfügbar

Not sure how to edit post ;o)

Will be fixed with next update. "not available" that should be Smile
Reply
(2019-09-01, 23:26)beatmasterrs Wrote:
(2019-09-01, 20:11)sniktaw Wrote: Sorry, nicht verfügbar

Not sure how to edit post ;o)

Will be fixed with next update. "not available" that should be Smile
After fix will it be removed or will it say: not available? If the latter, what information is 'not available' so I can populate it? Thanks ;o)
Reply
Image
Reply
Please would it be possible further that the next version?
Reply
(2019-09-04, 02:31)MARAND_BR20 Wrote: Image

the Option with showing the banner looks really good Smile i will think about it and see, what I can do Smile
Reply
Just out of curiosity, is it possible to re-order/hide media flags? Currently, the flags shown for me are:
RESOLUTION | STAR RATING | VIDEO CODEC | ASPECT RATIO | AUDIO CODEC | AUDIO CHANNELS | [HDR, if applicable] | MPAA RATING | SOURCE | [IMDB TOP 250, if applicable]

I's really love to condense this a bit to make it more readable for others, ideally to this:
[HDR] | RESOLUTION | AUDIO CODEC | AUDIO CHANNELS (*unless Atmos/DTS:X, then this should hide) | MPAA RATING | VIDEO CODEC

Is there a way to customize these on the user side? Or are they hardcoded into the skin?
Reply
(2019-09-02, 08:14)sniktaw Wrote:
(2019-09-01, 23:26)beatmasterrs Wrote:
(2019-09-01, 20:11)sniktaw Wrote: Sorry, nicht verfügbar

Not sure how to edit post ;o)

Will be fixed with next update. "not available" that should be Smile 
After fix will it be removed or will it say: not available? If the latter, what information is 'not available' so I can populate it? Thanks ;o) 

@beatmasterrs ?
Reply
  • 1
  • 34
  • 35
  • 36(current)
  • 37
  • 38
  • 405

Logout Mark Read Team Forum Stats Members Help
Arctic: Zephyr - Reloaded11