I have run across something I could use some help with, if anyone knows the answer.
I want to display some artist art while a song is playing, or paused. When the song is stopped, I want a second piece of art to display. Over the both of them, I want an overlay to be displayed.
The code below works for me well on all counts, playing, paused, and stopped.
My problem is that when the song is playing, and I just click once on a different song within the same album ( so that it will be the next song in line to be played), in the same playlist, my artist art stops being displayed, even tho that same song is still playing, and the NoArt.jpg is displayed.
Anyone have an idea about what I'm doing wrong here?
///////////ART DISPLAY//////////////////
$if(%isplaying%,
$imageabs2(265,235,0,0,,,284,255,$get(artistPath),nokeepaspect)
,
$imageabs2(265,245,0,0,,,284,245,/images\NoArt.jpg,nokeepaspect)
)
$drawrect(277,511,281,5,brushcolor-0-0-0 pencolor-NULL blur-5)
$imageabs2(281,281,0,0,,,279,230,/images\overlay.png,nokeepaspect)
////////////////////////////////////////////