(In the wake of solution from this discussion: https://forums.winamp.com/forum/skin...ndowshade-mode)
I am using this
to see on my left where I am in a piece of music being played in a given moment. And it works A-OK
But I wish to know precisely where I am - by seeing two counters instead of just one: first with a negative value [i.e. time remaining] and second with positive value [i.e. time passed]. And so I tried adding such second one by simply repeating it but also moving it to the right a little, i.e. using
And it worked. But unfortunate when I click one of them, the second after something like a second follows this change of its state. And thus I always end up with two counters with positive or negative values [or to be precise: with the exact value being updated as a file plays along]
My question then is: is it possible to double this ID entitled SongTime - but with adding a dichotomy to them?
Maybe there is a way to somehow clone / add to my Bento utilizing Winamp 5.666 or newer [not tested yet by me] 5.9.1 of something like SongTime-2 - so that I could left click on it without entangling this click with original SongTime element?
I am using this
PHP Code:
<-- INFO:
Time passed / remaining [when playing] -->
<text id="SongTime"
x="52" y="7" h="5" w="40" relatw="0" timeroffstyle="1" timecolonwidth="6"
display="time" align="left" font="player.bitmapfont.songinfo"
/>
But I wish to know precisely where I am - by seeing two counters instead of just one: first with a negative value [i.e. time remaining] and second with positive value [i.e. time passed]. And so I tried adding such second one by simply repeating it but also moving it to the right a little, i.e. using
PHP Code:
<-- INFO:
Time remaining [when playing] -->
<text id="SongTime"
x="50" y="7" h="5" w="40" relatw="0" timeroffstyle="1" timecolonwidth="6"
display="time" align="left" font="player.bitmapfont.songinfo"
/>
<-- INFO:
Time passed [when playing] -->
<text id="SongTime"
x="100" y="7" h="5" w="40" relatw="0" timeroffstyle="1" timecolonwidth="6"
display="time" align="left" font="player.bitmapfont.songinfo"
/>
My question then is: is it possible to double this ID entitled SongTime - but with adding a dichotomy to them?
Maybe there is a way to somehow clone / add to my Bento utilizing Winamp 5.666 or newer [not tested yet by me] 5.9.1 of something like SongTime-2 - so that I could left click on it without entangling this click with original SongTime element?
Comment