Removing VirtualViewer Features Using HTML Parameters
Snowbound’s viewing applet, VirtualViewer, gives you the option of disabling or removing most features from the Graphical User Interface (GUI).
To remove a feature, insert the parameters described below into your HTML code, between the <applet> and </applet> tags:
Descriptions of Removable VirtualViewer Parameters
|
|||||||||||||||
The parameters to remove features from FlexSnap accept values as comma separated lists. For example:
<param name="removeMenuItem" value="Edit#Copy,Edit#Cut">
Removing Menus
To remove an entire menu, insert the following parameter into your HTML code, between the <applet> and </applet> tags:
<param name="removeMenu" value="File">
This will remove the File menu.
<param name="removeMenu" value="File,Orient">
This will remove the File menu and the Orient menu.
To remove a specific menu item, insert the following parameter into your HTML code, between the <applet> and </applet> tags:
<param name="removeMenuItem" value="File#Print">
This code will remove the Print menu item from the File menu. The name for any menu item is the menu name listed on the user interface.
Removing the Menu Bar
To remove an entire menu bar, insert the following parameter into your HTML code, between the <applet> and </applet> tags:
<param name="removeMenuBar" value="true">
Removing Buttons
To remove a button from the toolbar, insert the following parameter into your HTML code, between the <applet> and </applet> tags:
<param name="removeToolbarItem" value="Zoom In">
This will remove the Zoom In button from the standard toolbar.
Removing Thumbnails
To remove thumbnails from the FlexSnap screen, insert the following parameter into your HTML code, between the <applet> and </applet> tags.
<param name="removeFromPanel" value="Thumbnails">
Removing Buttons from the Annotation Toolbar
To remove buttons from the Annotation Toolbar, use the following HTML code and button names:
<param name="removeAnnotationToolbarItem" value="Line">
This will remove the Line annotation button from the Annotation Toolbar.
<param name="removeAnnotationToolbarItem" value="Line,Arrow">
This will remove the Line and Arrow annotation buttons from the Annotation Toolbar.
Removing the Annotation Toolbar
To remove the Annotation Toolbar from FlexSnap, insert the following parameters into your HTML code, between the <applet> and </applet> tags:
<param name="removeFromPanel" value="Annotationtoolbar">
Removing Panels
To remove a panel, insert the following parameters into your HTML code, between the <applet> and </applet> tags:
<param name="removeFromPanel" value="Statusbar">
This will remove the Status Bar and the Thumbnail Panel from the FlexSnap window.