Question
app.activeDocument.copy(true) in photoshop javascript returns error
I am trying to copy the active document to a new document with the layers merged
photoshop cc 2020 javascript
here is what I have tried:
var docRef = app.activeDocument;
docRef.selection.copy(true);
the photoshop message I get is:
I am undoubtedly missing something.