Hi All,
I am trying to find a way to iterate over all of the elements of a MovieClip. Is there a property similar to all[ ] in JavaScript in which you can reference each of the child elements of a MovieClip ?
eg.
for (var i=0; i < _root._all.length; i++) {
if (_root._all instanceof MovieClip) {
_root._all.stop();
}
}
dachyon
I am trying to find a way to iterate over all of the elements of a MovieClip. Is there a property similar to all[ ] in JavaScript in which you can reference each of the child elements of a MovieClip ?
eg.
for (var i=0; i < _root._all.length; i++) {
if (_root._all instanceof MovieClip) {
_root._all.stop();
}
}
dachyon