CU LRC Lyric text color question
#1
Hi all,
is there a way to change the color of the active highlighted line only on the lyrics, as you know this script scrolls the lyrics with the song, I want to change the color of the text being played only
thanks
Reply
#2
got it to work Smile after some try and error

now here is how to

first u need to open c:\users\YOURUSERNAME\AppData\Roaming\XBMC\addons\skin.aeon.nox\1080i\script-XBMC_Lyrics-main.xml
now search for the following section (in my version of the skin it is starting at line 120)
Code:
<control type="label">
                        <posx>878</posx>
                        <width>1754</width>
                        <height>38</height>
                        <align>center</align>
                        <label fallback="--">$INFO[ListItem.Label]</label>
                        <font>Font_Reg32</font>
                        <textcolor>White</textcolor>
                        <visible>Control.HasFocus(110)</visible>
                        <animation type="Focus" reversible="false">
                            <effect type="fade" end="100" time="240" />
                        </animation>
                        <animation type="UnFocus" reversible="false">
                            <effect type="fade" start="100" end="0" time="160" />
                        </animation>
                    </control>

and change the <textcolor> to the color you want and save the file
Reply
#3
another change might be required, as the boundaries of the lyrics area sometimes overlap the artist fanart, you need to modify same file as follows :

find this code:

Code:
</control>
            <control type="image">
                <width>1920</width>
                <height>690</height>
                <texture flipy="true">views/lowlist_panelback.png</texture>
                <animation effect="slide" start="0,-489" end="0,0" time="400" tween="cubic" delay="160">windowopen</animation>
                <animation effect="fade" start="100" end="80" time="40" condition="true">Conditional</animation>
            </control>

and change the <height> to whatever suites you
Reply
#4
Somehow (with Aeon Nox) the text doesn't get affected with this change, but changing the height of the textbox helped.
Reply

Logout Mark Read Team Forum Stats Members Help
CU LRC Lyric text color question1