Notifications
Clear all

Full screen display of the vizualisation in runtime

6 Posts
3 Users
1 Reactions
2,247 Views
(@Anonymous 57865)
Posts: 6
Guest
Topic starter
 

Hi, I can't manage to display the vizualisation over the entire screen during runtime. Can anybody help me please?


 
Posted : 17/08/2023 1:43 p.m. CET
hinaho6374 reacted
(@hess-n)
Posts: 3
Member
 

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.


 
Posted : 22/08/2023 7:05 a.m. CET
(@murphy-peter120378)
Posts: 6
Member
 

Yes, the settings worked for me too. But it wasn't quite optimal. I then hidden the footer. Now it's good.


 
Posted : 23/08/2023 9:33 a.m. CET
(@Anonymous 57865)
Posts: 6
Guest
Topic starter
 

Also hiding the footer is a good hint. But how can I do that?


 
Posted : 23/08/2023 12:19 p.m. CET
(@murphy-peter120378)
Posts: 6
Member
 

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();
});

 
Posted : 24/08/2023 9:44 a.m. CET
(@Anonymous 57865)
Posts: 6
Guest
Topic starter
 

Thanks for your help. Now the display is perfect.


 
Posted : 24/08/2023 1:14 p.m. CET