Photoshopで次のことを行うJSスクリプトを作成しようとしています。
var textarray = array("Hello World", "Good morrow", "top of the morning");
配列内の各単語について
- 新しいドキュメントを開く
- 単語をレイヤーに書き込む
- フォトショップアクションを実行する
- 保存して閉じます
これはこれまでの私のコードです。
var textarray = [ "Hello World", "Good morrow", "top of the morning" ];
for (x=0; x < textarray.length(); x++) {
#target photoshop
app.bringToFront();
var strtRulerUnits = app.preferences.rulerUnits;
var strtTypeUnits = app.preferences.typeUnits;
app.preferences.rulerUnits = Units.INCHES;
app.preferences.typeUnits = TypeUnits.POINTS;
var docRef = app.documents.add(7, 5, 72);
// suppress all dialogs
app.displayDialogs = DialogModes.NO;
var textColor = new SolidColor;
textColor.rgb.red = 255;
textColor.rgb.green = 0;
textColor.rgb.blue = 0;
var newTextLayer = docRef.artLayers.add();
newTextLayer.kind = LayerKind.TEXT;
newTextLayer.textItem.contents = textarray[x];
newTextLayer.textItem.position = Array(0.75, 0.75);
newTextLayer.textItem.size = 36;
newTextLayer.textItem.color = textColor;
app.preferences.rulerUnits = strtRulerUnits;
app.preferences.typeUnits = strtTypeUnits;
docRef = null;
textColor = null;
newTextLayer = null;
// DO ACTION HERE
//CLOSE AND SAVE
}
何らかの理由で機能していないのは配列部分です。エラー24:textarray.lengthは関数ではありません