|
|
document.canTestScene()
AvailabilityFlash
MX 2004.
Usagedocument.canTestScene()
ReturnsA Boolean
value: true if you can use the document.testScene() method
successfully; false otherwise.
ExampleThe
following example first tests whether fl.getDocumentDOM().testScene() can
be used successfully. If so, it calls the method.
if(fl.getDocumentDOM().canTestScene()){
fl.getDocumentDOM().testScene();
}
|