How to turn off Servoy Menu Bar At Top Of Screen

Hi,

I am new to Servoy. I am trying to convert my FM7 application to Servoy. I needs help on the following items :

a) on how to turn off the Servoy Menu Bar at the top of the screen
when not in design mode so that I can use the whole screen with
only first line title bar.

b) How to compile or bulid the solutions into executable file without
loading Servoy program first and seleting the solution.

Thanks in advance for the help

a) on how to turn off the Servoy Menu Bar at the top of the screen
when not in design mode so that I can use the whole screen with
only first line title bar.

What is it you really want to do? Run in kiosk mode (available in 3.0) or remove the button bar which can be done via the menu.

b) How to compile or bulid the solutions into executable file without
loading Servoy program first and seleting the solution.

You can not create an executable of Servoy. When you want a single user solution you can do that with the runtime version, for that you need to install (and buy) the runtime plugin (an option when you install Servoy). Or you can deeplink into the repository with the following link: ‘http://localhost:8080/servoy-client/servoy_client.jnlp?solution=mysolution’.

http://localhost:8080/servoy-client/servoy_client.jnlp?solution=mysolution’.

Just a small correction, that’s the old way of doing deeplinking. This is the new way of deeplinking:

http://localhost:8080/servoy-client/servoy_client_mysolution.jnlp
Than the icon & icontext is set right for every solution.

:)

This method is handy to have in your developer toolkit. It toggles the toolbars (at least the ones I keep visible for developing with!):

if (globals.STATUS_toolbar == 1)	{
	application.setToolbarVisible('text',false);
	application.setToolbarVisible('design',false);
	application.setToolbarVisible('draw',false);
	application.setToolbarVisible('edit',false);
	
	globals.STATUS_toolbar = 0;
}
else {
	application.setToolbarVisible('text',true);
	application.setToolbarVisible('design',true);
	application.setToolbarVisible('draw',true);
	application.setToolbarVisible('edit',true);
	
	globals.STATUS_toolbar = 1;
}