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

New session : escape "warning" window, go to Capture folder

Comments

2 comments

  • Benjamin Liddle
    If you launch Capture One with the alt key pressed, it will bypass the previously closed document, if that helps.

    With regards to the second issue, be sure that you're telling the document to browse to the capture path and not the application.
    0
  • PhilippePierre
    Thanks a lot Ben_US for your quick help and fine guess : you were right, I was addressing the wrong handler when calling/browsing for the Capture folder.
    Your suggestion as raw diamond, here a modest finally shining stone :

    set newSession to "MySession"
    set newSession_path to POSIX path of (path to desktop as text)
    tell application "Capture One 10" -- or "Capture One" (v.8), or "Capture One 9"
    activate
    set this_newSession to make new document with properties {name:newSession, path:newSession_path}
    tell this_newSession
    browse to path (newSession_path & newSession & "/Capture") as text
    end tell
    return
    end tell

    But concerning the first issue, pressing Option key (Alt key on Mac, isn't ?) nothing changes (C. O. versions 8 to 10), I still get the opening of sessions choice window. Even if new session making behind is finely processed...
    Never mind, spasmodic bouncing C.O. icon in the dock won't deny that huge firm step done tonight.
    Thank you.
    0

Post is closed for comments.