length
書式
colorsObject
.length
説明
lengthプロパティにはカラーの総数が格納されています。lengthはcount()と同じ値になります。
?
1
2
var
c=app.activeDocument.colors;
alert(c.length);
目次に戻る