Author Topic: Edit "Artist view"  (Read 10038 times)

lynott

  • Guest
I'm having a difficult time removing th "Up Next" part from "artist picture view".  The info at bottom, far right.
Can anyone help with what I have to edit out from the xml?

Thanks in advance :)

redwing

  • Guest
Remove the following part.

Code
<element type="Text" xAnchor="Panel.Right" x="-260" yAnchor="Panel.Bottom" y="-64" width="250" font="Arial" style="Regular" size="9" fg="230,230,230" onClick="OpenNowPlayingAssistant" >Up next...</element>
<element type="Field" id="Tracks[1]" xAnchor="Panel.Right" x="-260" yAnchor="Panel.Bottom" y="-47" width="250" font="Arial" style="Regular" size="9" fg="250,250,250" >
    <child id="Title" ></child>
    <child fg="220,220,220" > by </child>
    <child id="Artist"></child>
</element>

lynott

  • Guest
Thanks a lot. That worked.

Is there a way to also remove th "up next" text and the red background?

redwing

  • Guest
Thanks a lot. That worked.

Is there a way to also remove th "up next" text and the red background?

I believe "up next" text was already gone.

For red background, if you want to change the color
 
search
Code
bg="253,79,24,22"

and replace 79,24,22 with another color.

If you want to remove the red block, delete the following part.

Code
<element name="#NextInfo" type="Block" xAnchor="Panel.Right" x="-280" yAnchor="Panel.Bottom" y="-74" width="280" height="53" bg="253,79,24,22" onDoubleClick="OpenNowPlayingAssistant"></element>
<element type="Line" xAnchor="Panel.Right" x="-280" yAnchor="Panel.Bottom" y="-75" width="280" height="1" bg="253,0,0,0"></element>

<element type="Line" xAnchor="Panel.Right" x="-280" yAnchor="Panel.Bottom" y="-21" width="280" height="1" bg="253,0,0,0"></element>

and search
Code
widthDock="X:#NextInfo.Left" width="0"

replace it with
Code
widthDock="X:Panel.Right" width="-280"