我正在尝试创建一个在 Photoshop 中执行以下操作的 JS 脚本:
var textarray = array("Hello World", "Good morrow", "top of the morning");
对于数组中的每个单词
- 打开新文档
- 将单词写到图层上
- 运行 Photoshop 动作
- 保存并关闭
这是我到目前为止的代码..
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 不是函数