2
Engaged
,
/t5/photoshop-ecosystem-discussions/running-an-action-via-scripting-with-options/td-p/14341816
Jan 08, 2024
Jan 08, 2024
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??
TOPICS
Actions and scripting
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
1 Correct answer
Community Expert
,
Jan 08, 2024
Jan 08, 2024
A String is not directly a File, please try
var theFiles = [File("D:\\temp\\jp.jpg")];
Explore related tutorials & articles
Community Expert
,
/t5/photoshop-ecosystem-discussions/running-an-action-via-scripting-with-options/m-p/14341902#M774177
Jan 08, 2024
Jan 08, 2024
Copy link to clipboard
Copied
A String is not directly a File, please try
var theFiles = [File("D:\\temp\\jp.jpg")];
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Ghoul Fool
AUTHOR
Engaged
,
/t5/photoshop-ecosystem-discussions/running-an-action-via-scripting-with-options/m-p/14342035#M774189
Jan 08, 2024
Jan 08, 2024
Copy link to clipboard
Copied
D'oh! Thank, man.
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Community Expert
,
LATEST
/t5/photoshop-ecosystem-discussions/running-an-action-via-scripting-with-options/m-p/14342854#M774250
Jan 08, 2024
Jan 08, 2024
Copy link to clipboard
Copied
I have seen this in the documentation, however, I don't recall seeing any scripts using Batch before!
EDIT:
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

