|
|
document.documentHasData()
AvailabilityFlash
MX 2004.
Usagedocument.documentHasData(name)
Parameters- name
- A string that specifies the name of the data to check.
ReturnsA Boolean
value: true if the document has persistent data; false otherwise.
DescriptionMethod;
checks the document for persistent data with the specified name.
ExampleThe
following example checks the document for persistent data with the name "myData":
var hasData = fl.getDocumentDOM().documentHasData("myData");
|