Applies to:
WebVue versions supplied with PcVue version 11.2 and earlier. |
||
|
||
Summary:
When the mimic size is too big to fit in the Web browser the user has to use the Virtual Workspace tool to navigate in the mimic. This is not really useful. |
||
|
||
Details:
The best way is to have scrollbars in the Web browser. For example the PcVue project is designed in a computer having the resolution 1280 * 1024 with the workspace is in full screen mode. But the user is using a Web browser on a computer having the resolution 1024 * 768. When mimics are displayed they will be cropped. To add scrollbars in the Web browser you have to edit the file <Project Path>\Web\Index.html. This page is the one displayed in the Web browser when a user connects to Webvue. This is a basic html page inserting only the Webvue Java Applet. The code to insert this applet starts by this line: document.write(“<EMBED width=100% height=100% align=baseline\n” Note that this instruction will embed the Java Applet using 100% of the Web browser dimensions. But you can force the Web browser to embed the Java Applet with strict dimensions. So, in our case you have only to change this line to: document.write(“<EMBED width=1280px height=1024px align=baseline\n” Don’t forget that this line is written for IE and for other Web browser. So, you have to modify both. |
||
|
||
|
Created on: 23 Dec 2010 Last update: 04 Sep 2024