Open a Solution Without Browser Bars

I need to open the solution in webclient without the browser bars. What I´m doing is call an HTML file in the server that opens it, but I would like to know if this can be done from Servoy because the way I´m doing it shows a message about Popups.

This is the code I use in the HTML file I have in the server:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html> 
 <head> 
  <script language="JavaScript"> 

   function openMySolution(){ 
    window.open('http://myserver/servoy-webclient/ss/s/GSDespachos', 'principal', 'location=no,menubar=no,status=no,toolbar=no');
   } 

   </script> 
 </head> 
 <body onload="openMySolution()"> 
 </body> 
</html>

showurl can also be used like that i believe, we do pretty much the same then as far as i know
I also don’t get why you don’t get a popup warning when you do that in html
You are then also just showing a popup…

why not let that be the start point of your solution then?
So place that html in the webapps/ROOT/ folder and point your users to that.

Hi Johan. That is the point I get a popup warning and I would like to know if I could solve that warning from Servoy.

no i don’t think so, because you are showing a popup thats not allowed anymore in many browsers