HTML5 Client: Comment maximiser la fenêtre du navigateur
Aperçu
El protocolo RDP no permite cambiar el tamaño mientras está conectado sin una reconexión.
Please note that you will get the best experience possible from TSplus HTML5 client by connecting with a maximiser le navigateur .
However, if you want to force the browser window to be as big as possible, you can try to “force” the HTML5 window to open with the maximum size (but not as a “maximized” window, due to internet browsers security limitations).
Maximiser la fenêtre du navigateur
You will have to modify the file “Clients\www\software\common.js” located in your TSplus directory. We advise you to use a text editor such as Notepad++ (do no use Word).
Para tener una ventana del navegador que utilice toda la pantalla, deberá modificar la(s) línea(s) que contengan "window.open" y agregar el siguiente texto:
screenX=0,screenY=0,left=0,top=0,fullscreen=yes,width=”+(screen.availWidth-5)+“,height=”+(screen.availHeight-(55))
Esto permite que IE/Chrome/Firefox/Safari abra la ventana con un tamaño de pantalla (menos la barra de Windows). Desafortunadamente, no es posible forzar a un navegador web a "maximizar" la ventana en un tipo de Windows "pantalla completa".
Open the file and search “window.open(”
Then add the new at the end before the brackets, for example:
window.open(hostGateway + jwtsclickLinkBefore(getside(), p), window.opforfalse);
se convertirá en:
window.open(hostGateway + jwtsclickLinkBefore(getside(), p), window.opforfalse, "screenX=0,screenY=0,left=0,top=0,fullscreen=yes,width="+(screen.availWidth-5)+",height="+(screen.availHeight-(55)));
Und wieder:
tmpwin = window.open(p, '_blank'); //Chrome necesita _blank
se convertirá en:
tmpwin = window.open(p, ‘_blank’, “screenX=0,screenY=0,left=0,top=0,fullscreen=yes,width=”+(screen.availWidth-5)+“,height=”+(screen.availHeight-(55))); //Chrome needs _blank
Und wieder:
success = window.open(p, k);
se convertirá en:
success = window.open(p, k, "screenX=0,screenY=0,left=0,top=0,fullscreen=yes,width="+(screen.availWidth-5)+",height="+(screen.availHeight-(55)));
Et enfin :
cpwin = window.open("about:blank", n);
se convertirá en:
cpwin = window.open(“about:blank”, n, “screenX=0,screenY=0,left=0,top=0,fullscreen=yes,width=”+(screen.availWidth-5)+“,height=”+(screen.availHeight-(55)));