How to add "Now playing" indication for current music track in list view
#1
Question 
I'd like to indicate the currently playing track in a list view in Aeon Auriga (I know this appears in the bottom right, but you still have to look down the list to find it, especially if you've left the music section then returned). The simplest way I can think of to do this is to invert the color of the currently playing list item (I guess I'd like to put a "speaker" icon (a la iTunes) in there too, but lets start with the basics!).

I've hacked about with the xml a bit to make a few minor changes, so I'm not afraid to have a go myself. But I'm at a bit of a loss where to start. I was hoping one of the guru's here could point me to the right file and possibly a few tips on the code I'd need to add (I'm guessing I'd need to change the color of the label based on whether the player is playing the track with a specified label?).

Any help is much appreciated!
Reply
#2
Open up your Includes.xml and find this
Code:
<include name="subcolornofocus">
    <textcolor>ff969696</textcolor>
    <selectedcolor>ff969696</selectedcolor>
</include>

<include name="listcolornofocus">
    <textcolor>dcffffff</textcolor>
    <selectedcolor>dcffffff</selectedcolor>
</include>
and change the <selectedcolor></selectedcolor> to whatever colour you want.

I use this in my mod
Code:
    <include name="subcolornofocus">
        <textcolor>ff969696</textcolor>
        <selectedcolor>9b3cd2fd</selectedcolor>
    </include>
    <include name="listcolornofocus">
        <textcolor>dcffffff</textcolor>
        <selectedcolor>9b3cd2fd</selectedcolor>
    </include>
Reply
#3
Done! Thanks very much! I never would have thought of looking there... Big Grin

Funnily enough my next job is to download Aeon Hitched Cool
Reply

Logout Mark Read Team Forum Stats Members Help
How to add "Now playing" indication for current music track in list view0