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

Looking for a way to get the active project details through scripting

New Here ,
Jul 09, 2021 Jul 09, 2021

Copy link to clipboard

Copied

In Photoshop, there is Javascript support to get the values like brush size, opacity, active tool, hardness, active tool, zoom level, etc. 
In Premiere pro is there any similar way to get the values of the active project like the active tool, frame, marker, edit-point, zoom level, etc.

 

Moreover, the Photoshop has clear documentation, Unfortunately, I couldn't find any such thing for Premiere Pro

TOPICS
How to , User interface or workspaces

Views

160

Translate

Translate

Report

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
Community Beginner ,
Jul 09, 2021 Jul 09, 2021

Copy link to clipboard

Copied

LATEST

Hi @Sridhar5C75  

you can do all of that through extendscript it's the adobe version of javascript with some more or less methods 

 

if you are using extendscript editor from adobe 

you can simply run scripts by making the target adobe premier pro and write

// get the project 

var project = app.project ; 

// get the active selected sequance 

 var seq = project.activeSequance ;

// now you got the sequance you can get any thing 

alert (Seq.name);

get the name 

 

For the rest of atteibutes and methods visit 

https://ppro-scripting.docsforadobe.dev/

Also have a look on cep panel that's the way to build (html + css + javascript )adobe extension for all

adobe products 

 


@Sridhar5C75 wrote:

In Photoshop, there is Javascript support to get the values like brush size, opacity, active tool, hardness, active tool, zoom level, etc. 
In Premiere pro is there any similar way to get the values of the active project like the active tool, frame, marker, edit-point, zoom level, etc.

 

Moreover, the Photoshop has clear documentation, Unfortunately, I couldn't find any such thing for Premiere Pro



@Sridhar5C75 wrote:

In Photoshop, there is Javascript support to get the values like brush size, opacity, active tool, hardness, active tool, zoom level, etc. 
In Premiere pro is there any similar way to get the values of the active project like the active tool, frame, marker, edit-point, zoom level, etc.

 

Moreover, the Photoshop has clear documentation, Unfortunately, I couldn't find any such thing for Premiere Pro



@Sridhar5C75 wrote:

In Photoshop, there is Javascript support to get the values like brush size, opacity, active tool, hardness, active tool, zoom level, etc. 
In Premiere pro is there any similar way to get the values of the active project like the active tool, frame, marker, edit-point, zoom level, etc.

 

Moreover, the Photoshop has clear documentation, Unfortunately, I couldn't find any such thing for Premiere Pro


 

Votes

Translate

Translate

Report

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