X-Z > XML.loaded

XML.loaded

Syntax

myXML.loaded;

Arguments

None.

Description

Property (read-only); determines whether the document loading process initiated by the XML.load call has completed. If the process completes successfully, the method returns true; otherwise, it returns false.

Player

Flash 5 or later.

Example

The following example uses XML.loaded in a simple script.

if (doc.loaded) {
	gotoAndPlay(4)
}