All movie clips stored

fl.getDocumentDOM().selectAll();

var theSelectionArray = fl.getDocumentDOM().selection;
length = theSelectionArray.length;
for( i=0;i<length;i++){
if (theSelectionArray[i].symbolType == "movie clip"||theSelectionArray[i].symbolType == "graphic"){
element = theSelectionArray[i];
break;
}
}

Guess you like

Origin www.cnblogs.com/dt1991/p/12447243.html