Skip to main content

⚠️ Please note that this topic or post has been archived. The information contained here may no longer be accurate or up-to-date. ⚠️

Saving Layers Structure

Comments

6 comments

  • Kassur

    I use a little AppleScript for that:

    ---------------------------------------------------------

    --  Add Layer Structure

     

    tell application "Capture One 21"

    tell layers of primary variant

    -- create a new layers named Cor and Struct

    set corLayer to make new layer with properties {name:"Cor", kind:adjustment} at end

     

    set structLayer to make new layer with properties {name:"Struct", kind:adjustment} at end

     

    tell structLayer

    fill mask

    end tell

     

    tell corLayer

    fill mask

    end tell

    end tell

    end tell

    ------------------------------------------------

    You can assign a shortcut to that script, but not at import.

    1
  • Ian Wilson
    Moderator
    Top Commenter

    I think that you could do what you want if you create a style. So get an image with the layers you want. If you want no adjustments on them, set them back to zero. Then save as a style. Not a thing I much do, so rather than me trying to explain how, you could google it. Or try this video from Paul Reiffer.

    https://www.youtube.com/watch?v=RJR5MCXwxPA 

    But then once you have got your style you can have it applied to images on Import. In the import dialog box, there is an option to apply a style (see my screenshot).

    Ian

    0
  • Michael Clemens

    Thank you Ian.  But that's not quite what I'm looking to do.  I want to be able to save layers and have them applied at import to set up my way of working.  But thank you!

    0
  • Michael Clemens

    Phenomenal. .. thank you for the info Kassur!

     

    0
  • Kassur

    You are Wellcome!

    0
  • Thijs Remie

    Same need here. I built a collection/structure of layers that each combines a number of different frequently-used adjustments. Using the opacity sliders I create the right look for each photo. Right now, I need to copy the layers from a previous session each time I get started. It would be great to be able to save an entire layer structure so I can easily load it when I need it.

    0

Post is closed for comments.