Tips For Success

Having the best tools for document imaging is only half of the equation. Our Tech Tips are designed to provide you with valuable information to help you succeed by achieving faster results with our RasterMaster Imaging and Conversion SDKs or VirtualViewer high-speed document and image viewers. New time-saving tips are added monthly - you can receive them through Imaging News or our Tech Tips RSS feed.

Tech Tip: Enabling, Disabling, and Reordering Buttons in VirtualViewer: HTML

Snowbound Software’s VirtualViewer: HTML product lets you enable, disable, and reorder the buttons available in the Graphical User Interface (GUI).

To enable, disable, or reorder the buttons in VirtualViewer: HTML, do the following:

  • Edit the navigator.jsp file at APPROOT/navigator.jsp.
  • Place the tags in the order that you want the buttons to appear in VirtualViewer: HTML. The order of the buttons that appear in VirtualViewer: HTML is defined by the order of the tags.
  • To remove a button, either delete a tag, or comment it out as shown in the first tag in the example below.

Below is an example of the tags that you would edit in the navigator.jsp file:

Example



<jsp:getProperty name="navigator" property="zoomToHeight"/>
<jsp:getProperty name="navigator" property="zoomToFrame"/>
<jsp:getProperty name="navigator" property="zoomIn"/>
<jsp:getProperty name="navigator" property="zoomOut"/>

 


<jsp:getProperty name="navigator" property="saveDocument"/>
<jsp:getProperty name="navigator" property="saveAsPDF"/>
<jsp:getProperty name="navigator" property="saveAsTif"/>

 


<jsp:getProperty name="navigator" property="zoomToPrint"/>

 


<jsp:getProperty name="navigator" property="flipX"/>
<jsp:getProperty name="navigator" property="flipY"/>
<jsp:getProperty name="navigator" property="rotateBackward"/>
<jsp:getProperty name="navigator" property="rotateForward"/>
<jsp:getProperty name="navigator" property="invert"/>

 


<jsp:getProperty name="navigator" property="contrastUp"/>
<jsp:getProperty name="navigator" property="contrastDown"/>
<jsp:getProperty name="navigator" property="brightnessUp"/>
<jsp:getProperty name="navigator" property="brightnessDown"/>
<jsp:getProperty name="navigator" property="gammaUp"/>
<jsp:getProperty name="navigator" property="gammaDown"/>

 


<jsp:getProperty name="navigator" property="pagePrevious"/>
<jsp:getProperty name="navigator" property="pageNext"/>
<jsp:getProperty name="navigator" property="helpButton"/>