ActionScript 2, list of nested movieclips
Posted
by vyger
on Stack Overflow
See other posts from Stack Overflow
or by vyger
Published on 2009-01-30T19:34:14Z
Indexed on
2010/03/29
12:13 UTC
Read the original article
Hit count: 100
Hello,
has anyone ever tried to get the list of all the movieclips (even the nested ones) that are on Stage at a specified stopped (and current) frame in Flash 8, AS 2?
I did the following:
for(i in _root){
if(typeof(_root[i])=="movieclip"){
trace(_root[i]);}
}
But this is good for a first level search: that is, if inside the movieclips you have other movieclips, you can't reach them. Furthermore, inside a movieclip there can be more then one movieclip.
Has anyone ever tried to do what I'm trying to do?
Bye!
© Stack Overflow or respective owner