overte-HifiExperiments/scripts/simplifiedUI/developer/tests/qmlTest.js
2019-06-20 16:52:46 -07:00

12 lines
263 B
JavaScript

print("Launching web window");
qmlWindow = new OverlayWindow({
title: 'Test Qml',
source: "qrc:///qml/OverlayWindowTest.qml",
height: 240,
width: 320,
visible: true
});
Script.setInterval(function() {
qmlWindow.raise();
}, 2 * 1000);