Textbox color and wrapmultiline problem
#1
Hi,

I recently made a color theme builder but I have an issue.
Everything id working fine excepted 1 thing.I have a panel view for episodes that shows the title on multi lines like this :

Image

I'm using a textbox but when I set a textcolor with a string, it doesn't show (selected item on picture).
When using a fixed color it works (unselected item on picture) :

Doesn't work :

Code:
<control type="textbox">
    <left>12</left>
    <posy>183</posy>
    <width>178</width>
    <height>100</height>
    <align>left</align>
    <font>FontSmall</font>

    <textcolor>$INFO[Skin.String(Color.B1Txt2NF)]</textcolor>

    <label>$VAR[InfoTitle]</label>
</control>

Works :

Code:
<control type="textbox">
    <left>12</left>
    <posy>183</posy>
    <width>178</width>
    <height>100</height>
    <align>left</align>
    <font>FontSmall</font>

    <textcolor>FF666666</textcolor>

    <label>$VAR[InfoTitle]</label>
</control>

What's weird is that I use it outside containers too and works fine. Inside a container it doesn't.

I tried this too :

Code:
<control type="label">
    <left>12</left>
    <posy>183</posy>
    <width>178</width>
    <height>100</height>
    <align>left</align>
    <font>FontSmall</font>

    <textcolor>$INFO[Skin.String(Color.B1Txt2NF)]</textcolor>
    <wrapmultiline>true</wrapmultiline>

    <label>$VAR[InfoTitle]</label>
</control>

Since labels take the strings fine but wrapmultiline neither works.

Any idea if this is a bug or is there an alternative to get the label multi lines ?

Thanks.
[Skin] KOver - V1.1.0 Stable (Repo version)
[WIP] ReKOver - Skinning tool project

If I've been helpful or you like my work, hit "THANK USER" button ;) ...
Reply
#2
Just found some posts that confirms that wrapmultiline doesn't work in containers.
Any chance to get the textcolor fixed for textboxes ?

Thanks
[Skin] KOver - V1.1.0 Stable (Repo version)
[WIP] ReKOver - Skinning tool project

If I've been helpful or you like my work, hit "THANK USER" button ;) ...
Reply
#3
http://mirrors.kodi.tv/test-builds/win32...tcolor.exe should be on the mirrors in a few minutes. Note, this is just a shot in the dark and I've not tested this Wink Let's see what happens ..
Always read the online manual (wiki), FAQ (wiki) and search the forum before posting.
Do not PM or e-mail Team-Kodi members directly asking for support. Read/follow the forum rules (wiki).
Please read the pages on troubleshooting (wiki) and bug reporting (wiki) before reporting issues.
Reply
#4
(2015-05-30, 11:25)mkortstiege Wrote: http://mirrors.kodi.tv/test-builds/win32...tcolor.exe should be on the mirrors in a few minutes. Note, this is just a shot in the dark and I've not tested this Wink Let's see what happens ..

Then it was a precise shot Wink Works prefectly.
Many thanks for this. Nod
[Skin] KOver - V1.1.0 Stable (Repo version)
[WIP] ReKOver - Skinning tool project

If I've been helpful or you like my work, hit "THANK USER" button ;) ...
Reply
#5
Great. Are there any regressions you noticed yet?
Always read the online manual (wiki), FAQ (wiki) and search the forum before posting.
Do not PM or e-mail Team-Kodi members directly asking for support. Read/follow the forum rules (wiki).
Please read the pages on troubleshooting (wiki) and bug reporting (wiki) before reporting issues.
Reply
#6
I have to make more tests to confirm but right now everything's fine. Have you something in mind ?
[Skin] KOver - V1.1.0 Stable (Repo version)
[WIP] ReKOver - Skinning tool project

If I've been helpful or you like my work, hit "THANK USER" button ;) ...
Reply
#7
(2015-05-30, 11:57)Jayz2K Wrote: I have to make more tests to confirm but right now everything's fine. Have you something in mind ?

Nope, nothing special. Will PR the small fix later today.
Always read the online manual (wiki), FAQ (wiki) and search the forum before posting.
Do not PM or e-mail Team-Kodi members directly asking for support. Read/follow the forum rules (wiki).
Please read the pages on troubleshooting (wiki) and bug reporting (wiki) before reporting issues.
Reply
#8
I imported some schemes I made, tested sizing the texboxes, scrolling, outside / inside containers. Everything responds perfectly fine.
[Skin] KOver - V1.1.0 Stable (Repo version)
[WIP] ReKOver - Skinning tool project

If I've been helpful or you like my work, hit "THANK USER" button ;) ...
Reply
#9
Could you please test if using color names (from skins .xml) still works?
Always read the online manual (wiki), FAQ (wiki) and search the forum before posting.
Do not PM or e-mail Team-Kodi members directly asking for support. Read/follow the forum rules (wiki).
Please read the pages on troubleshooting (wiki) and bug reporting (wiki) before reporting issues.
Reply
#10
Yes it does. Colors from Skin color folder too.
[Skin] KOver - V1.1.0 Stable (Repo version)
[WIP] ReKOver - Skinning tool project

If I've been helpful or you like my work, hit "THANK USER" button ;) ...
Reply
#11
Awesome, thanks for testing!

EDIT: https://github.com/xbmc/xbmc/pull/7205
Always read the online manual (wiki), FAQ (wiki) and search the forum before posting.
Do not PM or e-mail Team-Kodi members directly asking for support. Read/follow the forum rules (wiki).
Please read the pages on troubleshooting (wiki) and bug reporting (wiki) before reporting issues.
Reply
#12
(2015-05-30, 12:32)mkortstiege Wrote: Awesome, thanks for testing!

EDIT: https://github.com/xbmc/xbmc/pull/7205

That was the least I could do Wink
[Skin] KOver - V1.1.0 Stable (Repo version)
[WIP] ReKOver - Skinning tool project

If I've been helpful or you like my work, hit "THANK USER" button ;) ...
Reply

Logout Mark Read Team Forum Stats Members Help
Textbox color and wrapmultiline problem0