mirror of
https://github.com/overte-org/overte.git
synced 2025-04-05 19:22:16 +02:00
19 lines
557 B
JavaScript
19 lines
557 B
JavaScript
print("Launching web window");
|
|
|
|
var htmlUrl = Script.resolvePath("..//html/qmlWebTest.html")
|
|
webWindow = new OverlayWebWindow('Test Event Bridge', htmlUrl, 320, 240, false);
|
|
webWindow.webEventReceived.connect(function(data) {
|
|
print("JS Side event received: " + data);
|
|
});
|
|
|
|
Script.setInterval(function() {
|
|
var message = [ Math.random(), Math.random() ];
|
|
print("JS Side sending: " + message);
|
|
webWindow.emitScriptEvent(message);
|
|
}, 5 * 1000);
|
|
|
|
Script.scriptEnding.connect(function(){
|
|
webWindow.close();
|
|
webWindow.deleteLater();
|
|
});
|
|
|