v20 Player.HasPerformedSeek($VAR[SeekTime]) possible?
#1
Trying to pass variable $VAR[SeekTime] to this new Boolean Player.HasPerformedSeek() where
xml:
<variable name="SeekTime">
<value condition="Skin.HasSetting(seek_time_1)">1</value>
etc
</variable>

so I can vary the time seekbar shows.  So far no luck.

scott s.
.
Reply
#2
Maybe just expand it without a variable like so:-

Code:
[Skin.HasSetting(seek_time_1) + Player.HasPerformedSeek(1)] | [Skin.HasSetting(seek_time_2) + Player.HasPerformedSeek(2)] | 
[Skin.HasSetting(seek_time_3) + Player.HasPerformedSeek(3)] | etc....
Reply
#3
Ya, was hoping not to need to do that, but probably the best ATM

scott s.
.
Reply
#4
Are skin variables supposed to work with other infolabels?
Reply
#5
(2023-01-06, 23:41)enen92 Wrote: Are skin variables supposed to work with other infolabels?

I don't think so, for instance you can't do:-

Code:
$INFO[Container($VAR[foo]).ListItem.Label]

<variable name="foo">
  <value>9000</value>
</variable>
Reply

Logout Mark Read Team Forum Stats Members Help
Player.HasPerformedSeek($VAR[SeekTime]) possible?0