ActionScript 2.0 Components Language Reference |
|
|
|
| Collection interface > Collection.clear() | |||
Flash Player 7.
Flash MX Professional 2004.
collection.clear()
Nothing.
Method; removes all of the elements from the collection.
The following example calls clear():
on (click) {
var myColl:mx.utils.Collection;
myColl = _parent.thisShelf.MyCompactDiscs;
myColl.clear();
}
|
|
|
|