Video will fall back at the start

Is it possible, that the Video will fall back at the start if I close the video widget?

Thank you for the question. :slight_smile: We will add “seek(position)” action to the next release.
For now, you can use follow User Script:
import QtQuick 2.2

Item {
    function init() { }
    
    Connections {
        target: block
        onEventUnExpandedBlock: { block.subItem.member_player.seek(0); } // The key line. Zero is the required playback position in milliseconds.
    }
}

If you need to combine it with other script, just copy/paste the key line "

onEventUnExpandedBlock: { block.subItem.member_player.seek(0); }

" to Connections section of other script content, or send us the details of needed behavior of the block and we will provide the code for your special case.

Feel free to ask any question. We need them to improve the application.


Back to Flipabit >
Copyright © 2018. Flipabit Team. All rights reserved.