clear()
書式
actionListObject
.clear(
)
説明
ActionListのアクションをすべてクリア(消去)します。アクションパネルにあるアクション(リスト)がすべて消去されるわけではありません。
?
1
2
3
4
5
6
var
aList=
new
ActionList();
var
aList2=
new
ActionList();
aList.putList(aList2);
alert(aList.count);
aList.clear();
alert(aList.count);
目次に戻る