overte/examples/tests/qmlTest.js

13 lines
310 B
JavaScript

print("Launching web window");
qmlWindow = new OverlayWindow({
title: 'Test Qml',
source: "https://s3.amazonaws.com/DreamingContent/qml/content.qml",
height: 240,
width: 320,
toolWindow: false,
visible: true
});
Script.setInterval(function() {
qmlWindow.raise();
}, 2 * 1000);