Delete a single layer with applescript
Hello
For those who manage development flows with hundreds of images it is essential to have the possibility of correcting some passages quickly on all the processed images, I have always suffered from the impossibility of eliminating certain levels from a series of photos if not with a manual intervention on every single image.
Working hundreds of photos is not easy and capture one does not facilitate this type of flow.
In any case...
Below is a simple applescript to clear individual levels at your convenience. I hope it helps, I'm a photographer born without computers and I've tried and tested but it works!
Replace the quoted name with the name of the layer to be deleted
tell application "Capture One 23"
repeat with thisVariant in (get selected variants)
set thelayer to layer named "Esposizione" of thisVariant
tell thelayer
delete
end tell
end repeat
end tell
0
Please sign in to leave a comment.
Comments
0 comments