FlexLetsPlay

[PPSCRIPT] Create new Sequence

Mar 22nd, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #target premierepro
  2.  
  3. // This creates a new Sequence, and takes the Project file name (excluding ".prproj") as the Name
  4.  
  5. var fullName = app.project.name;
  6. var name = fullName.substr (0, fullName.length - 7)
  7. app.project.createNewSequence(name,0);
Advertisement
Add Comment
Please, Sign In to add comment