Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
0

Is it possible to create multiple sequences with ExtendScript?

Engaged ,
Nov 20, 2023 Nov 20, 2023

Hello

1) Is it possible to code thourgh ES or other, to add a sequence or even mutiple ones? What would be the name/type of variable for a sequence?

2) How to select a particular sequence from 3 sequences you have in your project to add to it a clip (and avoid adding it to the wrong sequence)?

Let's say I want to add clip012 to sequence 012 and clip 023 to sequence 023..

Bed30321077z973_0-1700545966823.pngexpand image

 

3) When creating/adding a sequence, anything else to consider through coding, such as making sure the length is matching. (I got some alert about that when creating one manually)

 

Anything else I should know about. Thanks

TOPICS
SDK
158
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Adobe Employee , Nov 21, 2023 Nov 21, 2023

Hi there,

Yes, there is a published API that will allow you to automate most features in Premiere Pro. 

We have a sample panel which demonstrates what is possible.  Note: you'll need some JavaScript skill.

Here is the repo:

https://github.com/Adobe-CEP/Samples/tree/master/PProPanel

 

 

I think what you might be looking for is:

    insertOrAppend : fu
...
Translate
Adobe Employee ,
Nov 21, 2023 Nov 21, 2023
LATEST

Hi there,

Yes, there is a published API that will allow you to automate most features in Premiere Pro. 

We have a sample panel which demonstrates what is possible.  Note: you'll need some JavaScript skill.

Here is the repo:

https://github.com/Adobe-CEP/Samples/tree/master/PProPanel

 

 

I think what you might be looking for is:

    insertOrAppend : function () {


 
    closeAllSequences : function () {
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines