/ Published in: ActionScript 3
Expand |
Embed | Plain Text
public static function removeAllChildren($do:DisplayObjectContainer):void { while ($do.numChildren) { $do.removeChildAt(0); } }
You need to login to post a comment.
allnatural on 04/13/09
2 people have marked this snippet as a favorite
public static function removeAllChildren($do:DisplayObjectContainer):void { while ($do.numChildren) { $do.removeChildAt(0); } }
You need to login to post a comment.