So the webremote you get if you enter the ip into your browser is also unable to send a correct keycode for the info button, too?
The second is a vague idea. It depends on the possibility to find a way to include a qml file into my ui in a crash protected way. At the moment the whole app crashes if there is a error in a included qml file. I would prefer a error message instead. But my inquiries about this topic were about 30 minutes... perhaps I will continue next month to search a solution. Or have you already a good idea how to implement something like this?
function createObject(sourceFile, parentObject) { var component = Qt.createComponent(sourceFile); if (component.status == Component.Ready) { var guiObject = component.createObject(parentObject); if (guiObject == null) { console.log("Error creating object"); } else { return guiObject } } else { console.log(component.errorString()); } }