How to access active sequence settings?

Hi,

How can I retrieve all the settings for an active sequence?

When I run the following code, it returns that there are no settings for the active sequence.
Why is that?

const project = await ppro.Project.getActiveProject();
console.log("Project:", project);

const activeSequence = await project.getActiveSequence();
console.log("Active sequence:", activeSequence);

if (activeSequence) {
    const settings = await activeSequence.getSettings();

    if (settings) {
        console.log("Active sequence settings:", settings);
    } else {
        console.log("No settings found for the active sequence.");
    }
} else {
    console.log("No active sequence found.");
}

Many thanks in advance!

Joan

Hi Joan,
Thanks for joining the discussion. The short answer to your question is; not yet, and we’re working on that.
Our goal to have parity between what was available in CEP, and what is available in UXP this year.
Keep your eyes on this space.
Dan

1 Like