overte/scripts/developer/tests/qmlTest.js
2018-01-13 10:27:43 +13: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);