Author Topic: Skin: some errors  (Read 6360 times)

0 Members and 1 Guest are viewing this topic.

Offline Zacca

  • User
  • ***
  • Posts: 117
    • View Profile
Skin: some errors
« on: March 10, 2010, 07:51:29 pm »
This is a list of errors i v found when i make skin:

orname ..........Don't take "labelfont" settings.
field-tagline............Don't take "fieldfont" colors.
field-description.....Don't take "fieldfont" colors.
field-comment.....Don't take "fieldfont" colors.
field-features......Don't take "fieldfont" colors.
"field + tag" the halign center work fine but with only "tag" seems not work.
label-caption without any other tag or field don't show nothing.

I think is logically to add a "call" to change the color of the internal link like..genre,category,country.......

For now is all
Thanks

Offline nostra

  • Administrator
  • *****
  • Posts: 2852
    • View Profile
    • Personal Video Database
Re: Skin: some errors
« Reply #1 on: March 10, 2010, 08:31:28 pm »
Thx for the info. I will try to improve the skin system asap.
Gentlemen, you can’t fight in here! This is the War Room!

Offline nostra

  • Administrator
  • *****
  • Posts: 2852
    • View Profile
    • Personal Video Database
Re: Skin: some errors
« Reply #2 on: March 22, 2010, 01:51:02 am »
Quote
orname ..........Don't take "labelfont" settings.

orname is considered to be a field as it is changeable...

Quote
"field + tag" the halign center work fine but with only "tag" seems not work.
label-caption without any other tag or field don't show nothing.

I think is logically to add a "call" to change the color of the internal link like..genre,category,country.......

Could you explain a bit more precisely?
Gentlemen, you can’t fight in here! This is the War Room!

Offline Zacca

  • User
  • ***
  • Posts: 117
    • View Profile
Re: Skin: some errors
« Reply #3 on: March 29, 2010, 12:03:37 pm »
Quote
"field + tag" the halign center work fine but with only "tag" seems not work.
Sorry but i don't remember the problem, if i find it again i'll tell you  :)



Quote
label-caption without any other tag or field don't show nothing.
Code: [Select]
<row>
<column halign="center">
<title autosize="true">
<font>
 <name>Comic Sans MS</name>
 <bold/>
 <size>24</size>
 <color>$0f0f0f</color>
 </font>
 </title>
<label>
<font>
 <name>Georgia</name>
 <size>22</size>
 <bold/>
 </font>
 <caption>SHOWME</caption>
 </label>
 </column>
 </row>
= Title+SHOWME

Code: [Select]
<row>
<column halign="center">
<label>
<font>
 <name>Georgia</name>
 <size>22</size>
 <bold/>
 </font>
 <caption>SHOW ME</caption>
 </label>
 </column>
 </row>
=nothing



Quote
I think is logically to add a "call" to change the color of the internal link like..genre,category,country.......

Code: [Select]
<linkdefs>
 <linkcolor1>$00ff00</linkcolor1>
 <linkcolor2>$ff00ff</linkcolor2>
 </linkdefs>
<linkIDONTKNOW>
 <linkcolor1>$00ff00</linkcolor1>
 <linkcolor2>$ff00ff</linkcolor2>
 </linkIDONTKNOW>
linkIDONTKNOW=change the color of the internal link like..genre,category,country.......

Offline nostra

  • Administrator
  • *****
  • Posts: 2852
    • View Profile
    • Personal Video Database
Re: Skin: some errors
« Reply #4 on: March 29, 2010, 05:43:07 pm »
If you want to make smth always visible then use permanent attribute like this:
Code: [Select]
  <row>
<column halign="center">
<label permanent="true">
<font>
 <name>Georgia</name>
 <size>22</size>
 <bold/>
 </font>
 <caption>SHOW ME</caption>
 </label>
 </column>
 </row>

Quote
linkIDONTKNOW=change the color of the internal link like..genre,category,country.......

Do you mean this (already there)
Code: [Select]
<category linkcolor1="$FF0400" linkcolor2="$FFFF00"/>
Gentlemen, you can’t fight in here! This is the War Room!

Offline Zacca

  • User
  • ***
  • Posts: 117
    • View Profile
Re: Skin: some errors
« Reply #5 on: March 29, 2010, 08:51:57 pm »
If you want to make smth always visible then use permanent attribute like this:
Code: [Select]
  <row>
<column halign="center">
<label permanent="true">
<font>
 <name>Georgia</name>
 <size>22</size>
 <bold/>
 </font>
 <caption>SHOW ME</caption>
 </label>
 </column>
 </row>

Quote
linkIDONTKNOW=change the color of the internal link like..genre,category,country.......

Do you mean this (already there)
Code: [Select]
<category linkcolor1="$FF0400" linkcolor2="$FFFF00"/>

Permanent work fine  ;D tnk

For the other i mean something to change all that links in 1 command like linkdefs but for all the filterlink

 

anything