SO の他の場所で提案されたこのスニペットを試しました:
var timer = new QTimer();
timer.interval = 100; // set the time in milliseconds
timer.singleShot = true; // in-case if setTimout and false in-case of setInterval
timer.timeout.connect(this, function(){console("in setTimout")});
timer.start();
結果:
ReferenceError: Can't find variable: QTimer
タイマーを機能させるために設定する必要があるものはありますか?