install
Installs one or more XPI files on the local machine.
Method of
Syntax
int install(array XPIlist [, function callBackFunc ] )Parameters
The
installmethod has the following parameters:
XPIlist An array of files to be installed (see example below). callBackFuncAn optional callback function invoked when the installation is complete (see example below). Returns
installreturns True if the function succeeded and False if it did not, but these values are not always reliable as a determinant of the success of the operation. To surface detail about the status of the installation, use the optional callback function and its status paramter, as in the example below.Description
In the example below, a special JavaScript object constructor is used to create an object that can be passed to the
install()method. The{ }constructor takes a comma-delimited set of label/value pairs. For installations, these pairs are the XPInstall confirm dialog display name and the path of the XPI, respectively. In the example below, a single installation object is created, but you can use this approach to create multiple installations to pass to a singleinstall.As with the older startSoftwareUpdate method, XPIs installed with this method must have their own install.js files in which the full installation is defined. In contrast to startSoftwareUpdate,
installallows you to do multiple installs with the same trigger and provides a unified user experience for the multiple installs..Example
function xpinstallCallback(url, status) { if (status == 0) msg = "XPInstall Test: PASSED\n"; else msg = "XPInstall Test: FAILED\n"; dump(msg); alert(msg); } xpi={'XPInstall Pre-Checkin Test':'pre_checkin.xpi'}; InstallTrigger.install(xpi,xpinstallCallback);
| Netscape Communications devedge.netscape.com |