setMinimumJREVersion Property

Description

This property specifies the minimum version of the Java Runtime Environment required to run EditLive! for Java.  It should be noted that EditLive! for Java should be used with JRE version 1.4.0 and above.

Syntax

JavaScript object.setMinimumJREVersion(strJREVersion)

Parameters

strJREVersion Required.  A string defining the version number of the minimum JRE version which EditLive! for Java is to run with.

This value defaults to 1.4.0. 

Example

The following sets the minimum JRE version to be 1.4.0

var editlivejava1;
editlivejava1 = new EditLiveJava("ELJApplet1","600","400");
editlivejava1.setMinimumJREVersion("1.4.0");

Remarks

Currently supported JRE versions are 1.4.0 and 1.4.1. The minimum JRE version should be set to one of these values.

Care should be taken when using this property in conjunction with the setJEDownloadURL property.  See the setJREDownloadURL property for more information.

See Also