Is it possible to have a function like - going to the first page of presentation after 5 minutes of no activity ? This presentation that I work on will be on a touchscreen at the expo - and it would be good to have such functionality - so the new user always see the first page of the presentation.
Add this code on the Presentation tab https://docs.promultitouch.com/reference/inspector/presentation_inspector.html#interaction
import QtQuick 2.1
Item {
property bool pageChanging: magazine.isPageChanging
onPageChangingChanged: timer.restart()
Timer {
id: timer
interval: 1000*10
onTriggered: controller.currentPageNumber = 0
}
}