clear()

書式

actionListObject.clear()

説明

ActionListのアクションをすべてクリア(消去)します。アクションパネルにあるアクション(リスト)がすべて消去されるわけではありません。
var aList=new ActionList();
var aList2=new ActionList();
aList.putList(aList2);
alert(aList.count);
aList.clear();
alert(aList.count);

目次に戻る