mirror of
https://github.com/overte-org/overte.git
synced 2025-04-26 06:56:32 +02:00
13 lines
310 B
JavaScript
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);
|