U-X > XML.loaded |
![]() ![]() ![]() |
XML.loaded
Availability
Flash Player 5.
Usage
myXML
.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); }
![]() ![]() ![]() |