Reply to thread

Small report.

For "videoOSD.xml" everything works almost perfectly:

[code]<define property="true" evaluateNow="true">#lenght:#(string.length(#currentremaining))</define>

<define property="true" evaluateNow="true">#end1:#(date.add('n',date.extract('n',cdate(#currentremaining)), date.add('h',date.extract('h',cdate(#currentremaining)),cdate(#time))))</define>

<define property="true" evaluateNow="true">#end2:#(date.add('n',date.extract('n',cdate(#currentremaining,'mm:ss')), date.add('h',date.extract('h',cdate(#currentremaining,'mm:ss')),cdate(#time))))</define>

<define property="true" evaluateNow="true">#end3:#(date.add('s',date.extract('s',cdate(#currentremaining,'m:ss')), date.add('n',date.extract('n',cdate(#currentremaining,'m:ss')), date.add('h',date.extract('h',cdate(#currentremaining,'m:ss')),cdate(#time)))))</define>[/code]


[code]    <control>

        <description>End1</description>

        <type>label</type>

        <id>0</id>

            <posX>1635</posX>

            <posY>1005</posY>

        <label>Закончится в #(string.ltrim(#end1,'1,2,3,4,5,6,7,8,9,0,.'))</label>

            <textcolor>e6e6e6</textcolor>

            <font>fontB10</font>

        <align>right</align>

        <visible>string.equals(#lenght,7)</visible>

    </control>


    <control>

        <description>End2</description>

        <type>label</type>

        <id>0</id>

            <posX>1635</posX>

            <posY>1005</posY>

        <label>Закончится в #(string.ltrim(#end2,'1,2,3,4,5,6,7,8,9,0,.'))</label>

            <textcolor>e6e6e6</textcolor>

            <font>fontB10</font>

        <align>right</align>

        <visible>string.equals(#lenght,5)</visible>

    </control>


    <control>

        <description>End3</description>

        <type>label</type>

        <id>0</id>

            <posX>1635</posX>

            <posY>1005</posY>

        <label>Закончится в #(string.ltrim(#end3,'1,2,3,4,5,6,7,8,9,0,.'))</label>

            <textcolor>e6e6e6</textcolor>

            <font>fontB10</font>

        <align>right</align>  

        <visible>string.equals(#lenght,4)</visible>

    </control>[/code]


End1 - #currentremaining more than one hour, End2 - #currentremaining less than one hour, more than 10 minutes, End3 - #currentremaining less than 10 minutes.

 

The "ctimespan" function could not be used - I got either an error or the current time (maybe I did not use it correctly or violated the syntax).

The above codes work only in "videoOSD.xml". In "videoFullScreen.xml" they do not work. For "videoFullScreen.xml" work:

[code]<define property="true" evaluateNow="true">#lenght:#(string.length(#currentremaining))</define>

...

    <control>

        <description>End1</description>

        <type>label</type>

        <id>0</id>

            <posX>1635</posX>

            <posY>1005</posY>

        <label>Закончится: #(date.add('n',date.extract('n',cdate(#currentremaining)), date.add('h',date.extract('h',cdate(#currentremaining)),cdate(#time))))</label>

            <textcolor>e6e6e6</textcolor>

            <font>fontB10</font>

        <align>right</align>

        <visible>[control.isVisible(111)|control.isVisible(10)|control.isVisible(11)|control.isVisible(12)] + string.equals(#lenght,7)</visible>

    </control>


    <control>

        <description>End2</description>

        <type>label</type>

        <id>0</id>

            <posX>1635</posX>

            <posY>1005</posY>

        <label>Закончится: #(date.add('n',date.extract('n',cdate(#currentremaining,'mm:ss')), date.add('h',date.extract('h',cdate(#currentremaining,'mm:ss')),cdate(#time))))</label>

            <textcolor>e6e6e6</textcolor>

            <font>fontB10</font>

        <align>right</align>

        <visible>[control.isVisible(111)|control.isVisible(10)|control.isVisible(11)|control.isVisible(12)] + string.equals(#lenght,5)</visible>

    </control>


    <control>

        <description>End3</description>

        <type>label</type>

        <id>0</id>

            <posX>1635</posX>

            <posY>1005</posY>

        <label>Закончится: #(date.add('s',date.extract('s',cdate(#currentremaining,'m:ss')), date.add('n',date.extract('n',cdate(#currentremaining,'m:ss')), date.add('h',date.extract('h',cdate(#currentremaining,'m:ss')),cdate(#time)))))</label>

            <textcolor>e6e6e6</textcolor>

            <font>fontB10</font>

        <align>right</align>  

        <visible>[control.isVisible(111)|control.isVisible(10)|control.isVisible(11)|control.isVisible(12)] + string.equals(#lenght,4)</visible>

    </control>[/code]


But in this case I can not use the function string.ltrim - getting error (0).

Well, something like this


Top Bottom