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. ⚠️

Select Background Layer all variants?

Comments

5 comments

  • www.shootmachine.co

    Yeah, totally possible. 

    0
  • Joseph Clark

    Thanks Jim. Looks like I need to dive in to Applescript

    0
  • Zdeněk Macháček

    something like this:

    tell application "Capture One 22"
    set selVarCount to count of selected variants
    set selVarList to selected variants
    if selVarCount ≥ 1 then
    repeat with v from 1 to selVarCount
    set workingVariant to get (item v of selVarList)
    tell workingVariant
    set current layer to first layer
    end tell
    end repeat
    end if
    end tell
    1
  • Joseph Clark

    Zdeněk, this is officially amazing. Thank you.

    Got busy for a few days, but I've just tried this out and got it mapped to crtl+B. It does exactly what I wanted.

    I'm going to share this to another post on the forum from 4 years ago where someone was asking this exact same thing

    0
  • Zdeněk Macháček

    Hi, you are welcome. In fact this is really easy script. Any way enjoy.

    0

Please sign in to leave a comment.