Jmol JavaScript Object/Info
Documentation of parameters of the Info variable
This page explains the parameters of the Info
variable, an essential part of the Jmol JavaScript Object.
Info is an associative array (a set of key/value pairs) indicating all the desired characteristics of the Jmol / JSmol applet or surrogate. For a full, up-to-date description of all of the options, see JmolApi.js. It is recommended that any page developer interested in utilizing Jmol extensively takes a look at this file.
The value shown between angle brackets is the default.
General
- Info.addSelectionOptions <
false
> Set this value totrue
if you want to display, below the applet, a menu with options for loading structures from public databases. - Info.color <
white
> The background color of the applet, in any JmolScript-supported format: color name, decimal triplet[r,g,b]
or hexadecimal[xRRGGBB]
. Note that default is now white, in contrast to black in the classic Jmol.js method. - Info.debug <
false
> Set this value totrue
if you are having problems getting your page to show the applet or buttons. - Info.defaultModel <empty> A model to be retrieved from a public database and displayed when the applet is loaded.
- Info.disableInitialConsole <
false
> If settrue
, avoids the display of messages ('console') in the Jmol panel while the Jmol object is being built initially. - Info.disableJ2SLoadMonitor <
false
> If settrue
, avoids the display of messages in a single line, colored, at bottom-left of the page while code loads (both initially and every time a new module is requested by a running script). - Info.height <
300
> The size of the applet (or surrogate) in pixels or expressed as percent of its container height as a string in quotes: "100%". Note that for a percent to work, all surrounding HTML elements (includingbody
andhtml
) must explicitly implement the CSS attributestyle=height:...
. - Info.isSigned <
false
> Make sure to change this totrue
if the file indicated for Info.jarFile is the signed applet. - Info.jarFile <
JmolApplet0.jar
> The file used, usually eitherJmolApplet0.jar
(for faster incremental loading) orJmolApplet.jar
(a single 2.5+ MB download), or the signed versionsJmolAppletSigned0.jar
andJmolAppletSigned.jar
. The setting here should match that of Info.isSigned. - Info.jarPath <
.
> The path to the applet files. Note that if the unsigned applet is used and the page is tested locally, then all model files must be in or under the folder indicated by this value, to satisfy Java security policy. - Info.memoryLimit <
512
> The maximum amount of memory allowed for the applet, in MB. - Info.readyFunction <empty> The name of a JavaScript function to call when the applet has been created and is ready to receive commands (and also called when the applet is destroyed e.g. when the page is closed).
- For example, with
Info.readyFunction: jmolIsReady
any of the following JavaScript function definitions could be used: jmolIsReady = function(theJmol) { document.title = theJmol._id + " is ready"; }
jmolIsReady = function() { alert('Welcome to Jmol!'); }
function jmolIsReady() { alert('Welcome to Jmol!'); }
- For example, with
- Info.script <empty> A script to run when the applet has loaded. Note that indicating a script here is not necessary; with Jmol-JSO, unlike with Jmol.js, you can start making script calls to the applet as soon as the applet wrapper object has been created in JavaScript; there is no need to wait for Java applet initialization to have completed.
- Info.serverURL <
http://chemapps.stolaf.edu/jmol/jsmol/jsmol.php
> The URL of the server to be used for getting file data into non-JmolApplet options. This can be left as default, since that is a public site accessible to cross-domain AJAX calls, but it can perhaps better be installed on the user's host for better performance. - Info.src Same as Info.script, only included because it is the syntax commonly used for images.
- Info.use <
Java noWebGL noHTML5 noImage
> This string determines the various options to be tried (applet and surrogates) and the order in which to try them.- The default setting is the same as just
Java
by itself and indicates to just use Java (and display a message if Java is not enabled). - The value
HTML5
forces use of JSmol. - A value of
Java Image
would allow PNGJ files to be displayed as images or simple file loading to be delivered as an image from a server if Java is not available. - The value
Java HTML5
would test for Java and then, if that is not available, use JSmol or maybe GLmol or HTML5-only ChemDoodle (whichever is made available). - The value
Java WebGL HTML5 Image
allows at least some model on all standard platforms.
- The default setting is the same as just
- Note that Jmol-JSO cannot detect if the user has intentionally disabled Java in some browsers (at least Microsoft Internet Explorer). Thus, users intentionally disabling Java may only get the Java option, and a message will be displayed that Java is not available.
- Info.width <
300
> The width of the applet in pixels or expressed as percent of its container width as a string in quotes: "100%". Note that for a percent to work, all surrounding HTML elements must explicitly implement the CSS attributestyle=width:...
.
Callbacks
There are several parameters that in Jmol.js could be set using the jmolSetParameter()
or jmolSetCallback()
functions. These are discussed in sets:
- Info.animframecallback
- Info.appletreadycallback
- Info.atommovedcallback
- Info.echocallback
- Info.evalcallback
- Info.hovercallback
- Info.loadstructcallback
- Info.messagecallback
- Info.pickcallback
- Info.measurecallback
- Info.minimizationcallback
- Info.resizecallback
- Info.scriptcallback
- Info.synccallback
These callbacks allow the page designer to get information about what is happening within the applet. The name of a JavaScript function, in single- or double-quotes should be given here if desired. Do not use function() {....}
syntax.
Misc.
- Info.language
This setting can be used to specify a language to be used in the JmolApplet interface (primarily for testing; the default language used in the applet is automatically detected from the system settings of the user's browser). Please note that language (localization) is not currently implemented in non-Java surrogates (including JSmol).
- Info.usecommandthread
The signed Jmol applet generally runs commands by passing them to a command thread that is established when the applet is created, while the unsigned applet does not. You can change this behavior if you are observing Java security issues. Otherwise, it should not be adjusted.
- Info.boxbgcolor
- Info.boxfgcolor
- Info.boxmessage
- Info.progressbar
- Info.progresscolor
These five values generally should not be adjusted.