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

Capture One Progress Bar Issues

Comments

7 comments

  • scriptura
    [Mac High Sierra Capture One Pro 12.0.2 Build 12.0.2.17]

    Similar issue.

    The following (jxa) does not display a progress bar (just a spinning beachball):


    app = Application.currentApplication();
    app.includeStandardAdditions = true;
    app.progressTotalUnits = 10;
    app.progressCompletedUnits = 0;
    app.progressText = "Processing Images";
    app.progressAdditionalText = "Preparing to process ...";
    for (var i = 1; i <= 10; i++) {
    app.progressAdditionalText = "Processing image " + i;
    app.progressCompletedUnits = i;
    delay(1);
    }


    If the for loop is commented out the progress bar will appear.
    0
  • Eric Valk
    Interesting that you're using JavaScript. I've been thinking this might the be the future.

    What's a good reference and development environment for writing Javascripts on OSX?
    0
  • Rick Allen
    I started to look at ASobjC more seriously have you tried?
    0
  • scriptura
    [quote="What's a good reference and development environment for writing Javascripts on OSX?[/quote] wrote:


    Good reference:


    For scripting:
    0
  • Jim_DK
    Running JXA scripts from the script menu can be problematic in builds prior to 12.1.

    Please try with the current 12.1.1. and see if the issues persist.
    0
  • scriptura
    [quote="Please try with the current 12.1.1. and see if the issues persist.[/quote] wrote:


    No issues. Expected behaviour when running the test script (above). Many thanks.

    [Mac Pro (Late 2013), OS X 10.14.6, Capture One Pro 12.1.1]
    0
  • Eric Valk
    It will be a while before I can try the Progress Bar again; I will update here when I do.
    0

Post is closed for comments.