How to create delay function in QML?
As suggested in the comments to your question, the Timer component is a good solution to this. function Timer() { return Qt.createQmlObject(“import QtQuick 2.0; Timer {}”, root); } timer = new Timer(); timer.interval = 1000; timer.repeat = true; timer.triggered.connect(function () { print(“I’m triggered once every second”); }) timer.start(); The above would be how I’m currently … Read more