レイヤーセットの総数を求める

■プログラム説明
 レイヤーセットの総数はlayerSets.lengthで求めることができます。

■ソースコード
n = activeDocument.layerSets.length;
alert("レイヤーセットの総数:"+n);

■ポイント
 なし