Returns
Nothing.
Description
Method; executes a Test Scene operation on the current scene of the document.
Example
The following example tests the current scene in the document:
fl.getDocumentDOM().testScene();
See also
document.canTestScene()
document.timelines
Availability
Flash MX 2004.
Usage
document.timelines
Description
Read-only property; an array of Timeline objects (see
Example
The following example gets the array of current timelines in the active document and displays
their names in the Output panel:
var i = 0;
var curTimelines = fl.getDocumentDOM().timelines;
while(i < fl.getDocumentDOM().timelines.length){
alert(curTimelines[i].name);
++i;
}
See also
document.currentTimeline
170
Objects
,
document.testMovie()
,
document.getTimeline()
Timeline
object).
Need help?
Do you have a question about the FLASH 8-EXTENDING FLASH and is the answer not in the manual?
Questions and answers