XML.loaded

Availability

Flash Player 5.

Usage

my_xml.loaded

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.

Example

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

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