<splashScreen> Element

This element has been deprecated.

The configuration information contained within this element determines whether the Ephox EditLive! for Java splash screen will appear when the program commences execution.

Element Tree Structure

<editLiveForJava>
    <splashScreen>

<editLiveForJava>
     ...
     <splashScreen ... />
     ...
</editLiveForJava>

Optional Attributes

Attribute Description
shown Setting this attribute to true results in the splash screen being shown, setting it to false prevents the splash screen from being shown.  If left blank the default value will be used.
Note:  This attribute is a boolean and can only be true or false
Default Value:  true

Example

The following example demonstrates how to prevent the splash screen from appearing when EditLive! for Java commences execution.

    <editLiveForJava>
        ...
        <splashScreen shown="false" />
        ...
    </editLiveForJava>

Remarks

The <splashScreen> element can appear only once within the <editLiveForJava> element.

The <splashScreen> element must be a complete tag, it cannot contain a tag body.  Therefore the tag must be closed in the same line.  See the example below:

    <splashScreen shown="true" />

See Also