1

I have MovieClip, created with CS5. Is there a way to hide (set visible = false) all it's children (objects which lie on movie clip) within AS3 code?

Slaus
  • 2,086
  • 4
  • 26
  • 41

1 Answers1

3
for (var i:int = clip.numChildren - 1; i >= 0; i--) {
    clip.getChildAt(i).visible = false;
}
alxx
  • 9,897
  • 4
  • 26
  • 41