fast forward image
#1
I'm having issue trying to get the fast forward image to display when someone is pressing the fast forward button while movie is playing. If it gets press press twice I want it to display a fastforward with a x2 next to it. and the same for when they press it 3 times but with a x3 etc.
Reply
#2
No problem with the Player.Forwarding%ix bool.

Example with images:
Code:
                        <control id="2" type="image">
                            <left>20</left>
                            <top>18</top>
                            <width>115</width>
                            <height>33</height>
                            <texture>$VAR[FastForwardRewind]</texture>
                            <visible>Player.Forwarding | Player.Rewinding</visible>
                        </control>

The variable

Code:
    <variable name="FastForwardRewind">
        <value condition="Player.Forwarding2x">osd/ffx2.png</value>
        <value condition="Player.Forwarding4x">osd/ffx4.png</value>
        <value condition="Player.Forwarding8x">osd/ffx8.png</value>
        <value condition="Player.Forwarding16x">osd/ffx16.png</value>
        <value condition="Player.Forwarding32x">osd/ffx32.png</value>
        <value condition="Player.Rewinding2x">osd/fwx2.png</value>
        <value condition="Player.Rewinding4x">osd/fwx4.png</value>
        <value condition="Player.Rewinding8x">osd/fwx8.png</value>
        <value condition="Player.Rewinding16x">osd/ffw16.png</value>
        <value condition="Player.Rewinding32x">osd/ffw32.png</value>
    </variable>
Main: Lancool II Mesh  - Ryzen 9 5900x - MSI x570 Unify - Zotac RTX 3080 AMP HOLO - 32GB Trident Z Neo 3600 CL16 -  EVO 960 M.2 250GB / EVO 940 250GB / MX100 512GB /  Crucial P1 2TB / WD Blue 3D Nand 2TB 
Sound: Saxx AS30 DSP - Beyer Dynamic Custom One Pro 
TV: Nvidia Shield 2019 Pro- Adalight 114x LEDs - Sony 65XG9505 - Kodi / Emby - Yamaha RX-V683 - Heco Victa 700/101/251a + Dynavoice Magic FX-4
Server: i3 Skylake - 8GB - OMV4 - 22TB Storage
Reply
#3
thank you
Reply

Logout Mark Read Team Forum Stats Members Help
fast forward image0