Copy link to clipboard
Copied
Hi. Out of interest I'm trying to set some options when running an action via a script, specifically suppressing the action dialog via script. - Not displayDialogs = DialogModes.NO
var theFiles = ["D:\\temp\\jp.jpg"];
// MAIN SCRIPT CODE TO DO STUFF...
var act = "make_layer"
var actset = "my_action_set";
var batchOptions = new BatchOptions();
batchOptions.overrideOpen = false;
batchOptions.overrideSave = false;
// app.doAction(act, actset);
app.batch (theFiles, act, actset, batchOptions)
I get the error illegal argument on app.batch (theFiles, act, actset, batchOptions); - not very helpful. Not sure where I'm going wrong as
app.doAction(act, actset);
works fine.
Any ideas??
A String is not directly a File, please try
var theFiles = [File("D:\\temp\\jp.jpg")];
Copy link to clipboard
Copied
A String is not directly a File, please try
var theFiles = [File("D:\\temp\\jp.jpg")];
Copy link to clipboard
Copied
D'oh! Thank, man.
Copy link to clipboard
Copied
I have seen this in the documentation, however, I don't recall seeing any scripts using Batch before!
EDIT: