reduceProject()

記述

app.project.reduceProject(array_of_items)

概要

指定されたアイテムを除いた全てのアイテムをプロジェクトから削除します。After Effectsのファイルメニューから「プロジェクトの整理」を実行するのと同様です。

引数

array_of_items

削除をしないItem objectsの配列。

戻り値

Integer(整数) - 削除されたアイテムの数。

サンプル

var theItems = new Array();

theItems[theItems.length] = app.project.item(1);

theItems[theItems.length] = app.project.item(3);

app.project.reduceProject(theItems);

ノート

ファイルメニューから「プロジェクトの整理」の実行時に、削除しないプロジェクトを選択して実行しますが、このとき選択しているアイテムが引数の「array_of_items」に相当します。