Hi, I can't manage to display the vizualisation over the entire screen during runtime. Can anybody help me please?
Hi, I had the same problem with my first QuickHMI project and found something in the documentation that helped me under this link: https://www.indi-an.com/help_quickhmi/actual/online/en/project_settings.html In the paragraph Runtime | Zoom & pan you will find the settings.
Yes, the settings worked for me too. But it wasn't quite optimal. I then hidden the footer. Now it's good.
Also hiding the footer is a good hint. But how can I do that?
This is not so difficult. Here is the code snippet I received from technical supportteam.
Events.onPageLoaded.push(function() {
//Fußleiste ausblenden
$("#playerFooter").css("height", "0px");
resizeContent();
projectManager.ZoomController.InitZoom();
});
Thanks for your help. Now the display is perfect.


